Files
shgx_tz_mes_backend_sync/ZR.Model/System/SysPost.cs

22 lines
719 B
C#
Raw Normal View History

2024-06-07 11:04:26 +08:00
namespace ZR.Model.System
2021-08-23 16:57:25 +08:00
{
2023-06-07 22:28:06 +08:00
[SugarTable("sys_post", "岗位表")]
2021-11-27 09:43:04 +08:00
[Tenant("0")]
2021-12-04 13:15:57 +08:00
public class SysPost : SysBase
2021-08-23 16:57:25 +08:00
{
/// <summary>
/// 岗位Id
/// </summary>
2021-12-04 13:15:57 +08:00
[SugarColumn(IsPrimaryKey = true, IsIdentity = true)]
2021-08-23 16:57:25 +08:00
public long PostId { get; set; }
2023-06-07 22:28:06 +08:00
[SugarColumn(ExtendedAttribute = ProteryConstant.NOTNULL)]
2021-08-23 16:57:25 +08:00
public string PostCode { get; set; }
2023-06-07 22:28:06 +08:00
[SugarColumn(ExtendedAttribute = ProteryConstant.NOTNULL)]
2021-08-23 16:57:25 +08:00
public string PostName { get; set; }
2023-06-07 22:28:06 +08:00
[SugarColumn(ExtendedAttribute = ProteryConstant.NOTNULL)]
2021-08-23 16:57:25 +08:00
public int PostSort { get; set; }
2023-06-07 22:28:06 +08:00
[SugarColumn(Length = 1)]
2021-08-23 16:57:25 +08:00
public string Status { get; set; }
}
}