平安校园
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

SysPosition.cs 1.1 KiB

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