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; } } }