using SqlSugar; using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace Waste.Domain { /// /// 更多测量记录 /// [SugarTable("W_MeasureResult", TableDescription = "更多测量记录", IsDisabledUpdateAll = false, IsDisabledDelete = true)] public class W_MeasureResult { /// /// 记录ID /// [SugarColumn(ColumnDescription = "记录ID",IsPrimaryKey =true)] public Guid ResultId { get; set; } /// /// 物品小类 /// [SugarColumn(ColumnDescription = "物品小类", ColumnDataType = "nvarchar(100)")] public string WasteSType { get; set; } /// /// 价格 /// [SugarColumn(ColumnDescription = "价格", ColumnDataType = "decimal(18,2)")] public decimal Price { get; set; } /// /// 金额 /// [SugarColumn(ColumnDescription = "金额", ColumnDataType = "decimal(18,2)")] public decimal Amount { get; set; } /// /// 操作员 /// [SugarColumn(ColumnDescription = "操作员", ColumnDataType = "nvarchar(100)")] public string OpUser { get; set; } /// /// 消息ID /// [SugarColumn(ColumnDescription = "消息ID", ColumnDataType = "varchar(50)",IndexGroupNameList =new string[] { "index_uuid"})] public string UUID { get; set; } /// /// 设备出厂序列号/设备出厂编号 /// public string DeviceFacEcode { get; set; } /// /// 车牌号/物品编码/垃圾桶编号 /// public string Registration { get; set; } /// /// 毛重,KG /// public string GrossWeight { get; set; } /// /// 皮重,KG /// public string Tare { get; set; } /// /// 净重,KG /// public string NetWeight { get; set; } public string ID1 { get; set; } public string ID2 { get; set; } public string ID3 { get; set; } public string ID4 { get; set; } public string ID5 { get; set; } public string ID6 { get; set; } public string ID7 { get; set; } public string ID8 { get; set; } public DateTime? CreatedTime { get; set; } public string DataHash { get; set; } } }