ALCTPOLICY.cs 817 B

1234567891011121314151617181920212223242526272829
  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 WMS.Core
  8. {
  9. [SugarTable("ALCTPOLICY")]
  10. public class ALCTPOLICY
  11. {
  12. public ALCTPOLICY()
  13. {
  14. }
  15. public string ID { get; set; }
  16. public string NAME { get; set; }
  17. public int ISEDIT { get; set; }
  18. public string ADDUSERNO { get; set; }
  19. public DateTime ADDDATETIME { get; set; }
  20. public string EDITUSERNO { get; set; }
  21. public DateTime EDITDATETIME { get; set; }
  22. public string DEFINE01 { get; set; }
  23. public string DEFINE02 { get; set; }
  24. public string DEFINE03 { get; set; }
  25. public string DEFINE04 { get; set; }
  26. public string DEFINE05 { get; set; }
  27. }
  28. }