WCS_DICTIONARY.cs 757 B

1234567891011121314151617181920212223
  1. using System;
  2. using System.Collections.Generic;
  3. using System.Text;
  4. using SqlSugar;
  5. namespace WCS.Data.Models
  6. {
  7. public class WCS_DICTIONARY
  8. {
  9. [SugarColumn(IsPrimaryKey = true, IsIdentity = false)]
  10. public string DIC_CODE { get; set; }
  11. public string DIC_NAME { get; set; }
  12. public string DIC_PARENT_CODE { get; set; }
  13. public int DIC_SORT { get; set; }
  14. public string DIC_REMARK { get; set; }
  15. public string DIC_ADDUSERNO { get; set; }
  16. public DateTime DIC_ADDDATETIME { get; set; }
  17. public string DIC_EDITUSERNO { get; set; }
  18. public DateTime DIC_EDITDATETIME { get; set; }
  19. public int DIC_STATUS { get; set; }
  20. public bool DIC_IS_DELETE { get; set; }
  21. }
  22. }