You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
44 lines
1.1 KiB
44 lines
1.1 KiB
2 years ago
|
using AX.FireTrainingSys.Models;
|
||
|
using System;
|
||
|
using System.Collections.Generic;
|
||
|
using System.Linq;
|
||
|
using System.Threading.Tasks;
|
||
|
|
||
|
namespace AX.FireTrainingSys.DTOs
|
||
|
{
|
||
|
/// <summary>
|
||
|
/// 课件查询条件。
|
||
|
/// </summary>
|
||
|
public class CoursewareQueryOptions : QueryOptions
|
||
|
{
|
||
|
/// <summary>
|
||
|
/// 名称。
|
||
|
/// </summary>
|
||
|
public string Name { get; set; }
|
||
|
/// <summary>
|
||
|
/// 单位类型编号。
|
||
|
/// </summary>
|
||
|
public int? BuildingType { get; set; }
|
||
|
/// <summary>
|
||
|
/// 单位名称。
|
||
|
/// </summary>
|
||
|
public string CompanyName { get; set; }
|
||
|
/// <summary>
|
||
|
/// 题目作者。
|
||
|
/// </summary>
|
||
|
public string Creator { get; set; }
|
||
|
/// <summary>
|
||
|
/// 是否公开。
|
||
|
/// </summary>
|
||
|
public bool? IsPublic { get; set; }
|
||
|
/// <summary>
|
||
|
/// 是否他人。
|
||
|
/// </summary>
|
||
|
public bool? Others { get; set; }
|
||
|
/// <summary>
|
||
|
/// 修改时间。
|
||
|
/// </summary>
|
||
|
public DateTimeOffset? ModifiedTime { get; set; }
|
||
|
}
|
||
|
}
|