22 lines
721 B
C#
22 lines
721 B
C#
|
|
namespace DOAN.Model.System
|
|||
|
|
{
|
|||
|
|
[SugarTable("sys_post", "岗位表")]
|
|||
|
|
[Tenant("0")]
|
|||
|
|
public class SysPost : SysBase
|
|||
|
|
{
|
|||
|
|
/// <summary>
|
|||
|
|
/// 岗位Id
|
|||
|
|
/// </summary>
|
|||
|
|
[SugarColumn(IsPrimaryKey = true, IsIdentity = true)]
|
|||
|
|
public long PostId { get; set; }
|
|||
|
|
[SugarColumn(ExtendedAttribute = ProteryConstant.NOTNULL)]
|
|||
|
|
public string PostCode { get; set; }
|
|||
|
|
[SugarColumn(ExtendedAttribute = ProteryConstant.NOTNULL)]
|
|||
|
|
public string PostName { get; set; }
|
|||
|
|
[SugarColumn(ExtendedAttribute = ProteryConstant.NOTNULL)]
|
|||
|
|
public int PostSort { get; set; }
|
|||
|
|
[SugarColumn(Length = 1)]
|
|||
|
|
public string Status { get; set; }
|
|||
|
|
}
|
|||
|
|
}
|