ic_substitute.cs 992 B

1234567891011121314151617181920212223242526272829303132333435363738
  1. using Business.Core.Attributes;
  2. using Microsoft.EntityFrameworkCore;
  3. using System.ComponentModel.DataAnnotations;
  4. namespace Business.Domain
  5. {
  6. /// <summary>
  7. /// 替代群组
  8. /// </summary>
  9. [CollectionName("dopbase", "ic_substitute")]
  10. [Comment("替代群组")]
  11. public class ic_substitute : BaseEntity
  12. {
  13. /// <summary>
  14. /// 群组代码
  15. /// </summary>
  16. [StringLength(20)]
  17. [Comment("群组代码")]
  18. public string substitute_code { get; set; }
  19. /// <summary>
  20. /// 替代类型
  21. /// </summary>
  22. [Comment("替代类型")]
  23. public int? substitute_type { get; set; }
  24. /// <summary>
  25. /// 替代策略
  26. /// </summary>
  27. [Comment("替代策略")]
  28. public int? substitute_strategy { get; set; }
  29. /// <summary>
  30. /// 替代方式
  31. /// </summary>
  32. [Comment("替代方式")]
  33. public int? substitute_mode { get; set; }
  34. }
  35. }