平安校园
 
 
 
 
 
 

41 lines
1.1 KiB

  1. namespace SafeCampus.System;
  2. /// <summary>
  3. /// 职位表
  4. ///</summary>
  5. [SugarTable("sys_position", TableDescription = "职位表")]
  6. [Tenant(SqlSugarConst.DB_DEFAULT)]
  7. [CodeGen]
  8. public class SysPosition : DataEntityBase
  9. {
  10. /// <summary>
  11. /// 组织id
  12. ///</summary>
  13. [SugarColumn(ColumnName = "OrgId", ColumnDescription = "组织id")]
  14. public virtual long OrgId { get; set; }
  15. /// <summary>
  16. /// 名称
  17. ///</summary>
  18. [SugarColumn(ColumnName = "Name", ColumnDescription = "名称", Length = 200)]
  19. public virtual string Name { get; set; }
  20. /// <summary>
  21. /// 编码
  22. ///</summary>
  23. [SugarColumn(ColumnName = "Code", ColumnDescription = "编码", Length = 200)]
  24. public string Code { get; set; }
  25. /// <summary>
  26. /// 分类
  27. ///</summary>
  28. [SugarColumn(ColumnName = "Category", ColumnDescription = "分类", Length = 200)]
  29. public virtual string Category { get; set; }
  30. /// <summary>
  31. /// 排序码
  32. ///</summary>
  33. [SugarColumn(ColumnName = "SortCode", ColumnDescription = "排序码", IsNullable = true)]
  34. public int? SortCode { get; set; }
  35. }