ChatRoomForGpt/ARW-net/ARW.Model/System/SysPost.cs
2023-04-04 18:15:13 +08:00

23 lines
567 B
C#

using OfficeOpenXml.Attributes;
using SqlSugar;
namespace ARW.Model.System
{
[SugarTable("sys_post")]
[Tenant("0")]
public class SysPost : SysBase
{
/// <summary>
/// 岗位Id
/// </summary>
[SugarColumn(IsPrimaryKey = true, IsIdentity = true)]
public long PostId { get; set; }
public string PostCode { get; set; }
public string PostName { get; set; }
[EpplusIgnore]
public int PostSort { get; set; }
[EpplusIgnore]
public string Status { get; set; }
}
}