using Panuon.UI.Silver.Core; using SqlSugar; using System.ComponentModel; namespace SHJX.Service.Model.Dao { [SugarTable("dropliquid")] public class DropLiquid { /// /// 主键自增列 /// [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; } } }