SysDictItem.cs 715 B

12345678910111213141516171819202122
  1. using System;
  2. using System.Collections.Generic;
  3. namespace MySystem.JavaModels
  4. {
  5. public partial class SysDictItem
  6. {
  7. public long Id { get; set; }
  8. public long DictId { get; set; }
  9. public string ItemValue { get; set; }
  10. public string Label { get; set; }
  11. public string DictType { get; set; }
  12. public string Description { get; set; }
  13. public int SortOrder { get; set; }
  14. public string CreateBy { get; set; }
  15. public string UpdateBy { get; set; }
  16. public DateTime? CreateTime { get; set; }
  17. public DateTime? UpdateTime { get; set; }
  18. public string Remarks { get; set; }
  19. public string DelFlag { get; set; }
  20. }
  21. }