84 lines
2.1 KiB
C#
84 lines
2.1 KiB
C#
using System;
|
||
using System.Collections.Generic;
|
||
using System.Linq;
|
||
using SqlSugar;
|
||
|
||
namespace LearningOfficer.OA.Core.Entities.OA.ManagerData
|
||
{
|
||
/// <summary>
|
||
/// 资料收集-主表
|
||
///</summary>
|
||
[SugarTable("manager_data_collection")]
|
||
public class ManagerDataCollection : BaseEntity
|
||
{
|
||
|
||
|
||
|
||
|
||
/// <summary>
|
||
/// 备 注:收集主题
|
||
/// 默认值:
|
||
///</summary>
|
||
[SugarColumn(ColumnName = "title" )]
|
||
public string Title { get; set; } = null!;
|
||
|
||
|
||
/// <summary>
|
||
/// 备 注:收集要求
|
||
/// 默认值:
|
||
///</summary>
|
||
[SugarColumn(ColumnName = "remark" )]
|
||
public string Remark { get; set; } = null!;
|
||
|
||
|
||
/// <summary>
|
||
/// 备 注:模板文件id
|
||
/// 默认值:
|
||
///</summary>
|
||
[SugarColumn(ColumnName = "file_id" )]
|
||
public long? FileId { get; set; }
|
||
|
||
|
||
/// <summary>
|
||
/// 备 注:提交时间
|
||
/// 默认值:
|
||
///</summary>
|
||
[SugarColumn(ColumnName = "endtime" )]
|
||
public DateTime Endtime { get; set; }
|
||
|
||
|
||
/// <summary>
|
||
/// 备 注:添加用户
|
||
/// 默认值:
|
||
///</summary>
|
||
[SugarColumn(ColumnName = "adduser" )]
|
||
public long Adduser { get; set; }
|
||
|
||
|
||
/// <summary>
|
||
/// 备 注:添加时间
|
||
/// 默认值:
|
||
///</summary>
|
||
[SugarColumn(ColumnName = "addtime" )]
|
||
public DateTime Addtime { get; set; }
|
||
|
||
|
||
/// <summary>
|
||
/// 备 注:收集对象个数
|
||
/// 默认值:
|
||
///</summary>
|
||
[SugarColumn(ColumnName = "file_count" )]
|
||
public int? FileCount { get; set; }
|
||
|
||
|
||
/// <summary>
|
||
/// 备 注:状态:1:已创建(未发布);2:进行中(已发布);3:已完成;4:已关闭
|
||
/// 默认值:
|
||
///</summary>
|
||
[SugarColumn(ColumnName = "status" )]
|
||
public int Status { get; set; }
|
||
|
||
|
||
}
|
||
|
||
} |