You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

38 lines
800 B

2 years ago
  1. using System;
  2. using System.Linq;
  3. using System.Text;
  4. using SqlSugar;
  5. namespace Entity.Sugar
  6. {
  7. ///<summary>
  8. ///
  9. ///</summary>
  10. [SugarTable("OVW_SYS_Rules")]
  11. public partial class OVW_SYS_Rules : ModelContext
  12. {
  13. public OVW_SYS_Rules()
  14. {
  15. }
  16. public string MemberName { get; set; }
  17. public string MemberIDs { get; set; }
  18. public string RuleID { get; set; }
  19. public string RuleName { get; set; }
  20. public string DelStatus { get; set; }
  21. public string Memo { get; set; }
  22. public string OrgID { get; set; }
  23. public string CreateDate { get; set; }
  24. public string CreateUser { get; set; }
  25. public string ModifyUser { get; set; }
  26. public string ModifyDate { get; set; }
  27. }
  28. }