DropLiquid.cs 1.0 KB

1234567891011121314151617181920212223242526272829303132333435
  1. using Panuon.UI.Silver.Core;
  2. using SqlSugar;
  3. using System.ComponentModel;
  4. namespace SHJX.Service.Model.Dao
  5. {
  6. [SugarTable("dropliquid")]
  7. public class DropLiquid
  8. {
  9. /// <summary>
  10. /// 主键自增列
  11. /// </summary>
  12. [SugarColumn(IsPrimaryKey = true, IsIdentity = true)]
  13. [IgnoreColumn]
  14. public int SerialKey { get; set; }
  15. [ColumnWidth("1*")]
  16. [DisplayName("名称")]
  17. [ReadOnlyColumn]
  18. public string Description { get; set; }
  19. [IgnoreColumn]
  20. public string LiquidName { get; set; }
  21. [ColumnWidth("1*")]
  22. [DisplayName("清洗体积")]
  23. public double ClearVolume { get; set; }
  24. [ColumnWidth("1*")]
  25. [DisplayName("润洗体积")]
  26. public double WashVolume { get; set; }
  27. [ColumnWidth("1*")]
  28. [DisplayName("样品体积")]
  29. public double SampleVolume { get; set; }
  30. [ColumnWidth("1*")]
  31. [DisplayName("启停")]
  32. public bool Enable { get; set; }
  33. }
  34. }