63 lines
1.5 KiB
C#
63 lines
1.5 KiB
C#
|
|
|
|||
|
|
namespace DOAN.Model.MES.group
|
|||
|
|
{
|
|||
|
|
/// <summary>
|
|||
|
|
/// 岗位
|
|||
|
|
/// </summary>
|
|||
|
|
[SugarTable("group_post")]
|
|||
|
|
public class GroupPost
|
|||
|
|
{
|
|||
|
|
/// <summary>
|
|||
|
|
/// 雪花
|
|||
|
|
/// </summary>
|
|||
|
|
[SugarColumn(IsPrimaryKey = true, IsIdentity = false)]
|
|||
|
|
public string Id { get; set; }
|
|||
|
|
|
|||
|
|
/// <summary>
|
|||
|
|
/// 父id
|
|||
|
|
/// </summary>
|
|||
|
|
[SugarColumn(ColumnName = "parent_id")]
|
|||
|
|
public string ParentId { get; set; }
|
|||
|
|
|
|||
|
|
/// <summary>
|
|||
|
|
/// 岗位名称
|
|||
|
|
/// </summary>
|
|||
|
|
[SugarColumn(ColumnName = "post_name")]
|
|||
|
|
public string PostName { get; set; }
|
|||
|
|
|
|||
|
|
/// <summary>
|
|||
|
|
/// 1:启用 0:停用
|
|||
|
|
/// </summary>
|
|||
|
|
public int? Status { get; set; }
|
|||
|
|
|
|||
|
|
/// <summary>
|
|||
|
|
/// 备注
|
|||
|
|
/// </summary>
|
|||
|
|
public string Remark { get; set; }
|
|||
|
|
|
|||
|
|
/// <summary>
|
|||
|
|
/// 创建人
|
|||
|
|
/// </summary>
|
|||
|
|
[SugarColumn(ColumnName = "cREATED_BY")]
|
|||
|
|
public string CreatedBy { get; set; }
|
|||
|
|
|
|||
|
|
/// <summary>
|
|||
|
|
/// 创建时间
|
|||
|
|
/// </summary>
|
|||
|
|
[SugarColumn(ColumnName = "cREATED_TIME")]
|
|||
|
|
public DateTime? CreatedTime { get; set; }
|
|||
|
|
|
|||
|
|
/// <summary>
|
|||
|
|
/// 更新人
|
|||
|
|
/// </summary>
|
|||
|
|
[SugarColumn(ColumnName = "uPDATED_BY")]
|
|||
|
|
public string UpdatedBy { get; set; }
|
|||
|
|
|
|||
|
|
/// <summary>
|
|||
|
|
/// 更新时间
|
|||
|
|
/// </summary>
|
|||
|
|
[SugarColumn(ColumnName = "uPDATED_TIME")]
|
|||
|
|
public DateTime? UpdatedTime { get; set; }
|
|||
|
|
|
|||
|
|
}
|
|||
|
|
}
|