| 1234567891011121314151617181920212223242526272829303132333435 |
- using Panuon.UI.Silver.Core;
- using SqlSugar;
- using System.ComponentModel;
- namespace SHJX.Service.Model.Dao
- {
- [SugarTable("dropliquid")]
- public class DropLiquid
- {
- /// <summary>
- /// 主键自增列
- /// </summary>
- [SugarColumn(IsPrimaryKey = true, IsIdentity = true)]
- [IgnoreColumn]
- public int SerialKey { get; set; }
- [ColumnWidth("1*")]
- [DisplayName("名称")]
- [ReadOnlyColumn]
- public string Description { get; set; }
- [IgnoreColumn]
- public string LiquidName { get; set; }
- [ColumnWidth("1*")]
- [DisplayName("清洗体积")]
- public double ClearVolume { get; set; }
- [ColumnWidth("1*")]
- [DisplayName("润洗体积")]
- public double WashVolume { get; set; }
- [ColumnWidth("1*")]
- [DisplayName("样品体积")]
- public double SampleVolume { get; set; }
- [ColumnWidth("1*")]
- [DisplayName("启停")]
- public bool Enable { get; set; }
- }
- }
|