WCS_SYSSET.cs 693 B

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