WCS_SYSSET.cs 642 B

123456789101112131415161718192021
  1. using SqlSugar;
  2. using System;
  3. using System.Collections.Generic;
  4. using System.Text;
  5. namespace WCS.Data.Models
  6. {
  7. public class WCS_SYSSET
  8. {
  9. [SugarColumn(IsPrimaryKey = true, IsIdentity = false)]
  10. public string SET_ID { get; set; }
  11. public string SET_NAME { get; set; }
  12. public string SET_VALUE { get; set; }
  13. public string SET_TYPE { get; set; }
  14. public string SET_MEMO { get; set; }
  15. public string SET_ADDUSERNO { get; set; }
  16. public string SET_ADDTIME { get; set; }
  17. public string SET_EDITUSERNO { get; set; }
  18. public string SET_EDITTIME { get; set; }
  19. }
  20. }