DropAmount.cs 765 B

1234567891011121314151617181920212223242526272829303132333435
  1. namespace SHJX.Service.Model.XmlModules
  2. {
  3. public class DropAmount
  4. {
  5. /// <summary>
  6. /// 名称
  7. /// </summary>
  8. [ColumnWidth("1*")]
  9. [DisplayName("名称")]
  10. [IgnoreColumn]
  11. public string Name { get; set; }
  12. [ColumnWidth("1*")]
  13. [DisplayName("描述")]
  14. [ReadOnlyColumn]
  15. public string Description { get; set; }
  16. /// <summary>
  17. /// 低浓度
  18. /// </summary>
  19. [ColumnWidth("1*")]
  20. [DisplayName("低浓度")]
  21. public double LowValue { get; set; }
  22. /// <summary>
  23. /// 高浓度
  24. /// </summary>
  25. [ColumnWidth("1*")]
  26. [DisplayName("高浓度")]
  27. public double HighValue { get; set; }
  28. }
  29. }