using SqlSugar; namespace MES.Service.Models; /// /// 受退明细 /// [SugarTable("Mes_SHOU_TUI_DETAIL")] public class MesShouTuiDetail { /// /// 主键 /// [SugarColumn(ColumnName = "guid", IsPrimaryKey = true)] public Guid? Guid { get; set; } /// /// 外键 /// [SugarColumn(ColumnName = "pGuid")] public Guid? PGuid { get; set; } /// /// 物料 /// [SugarColumn(ColumnName = "FMaterialId")] public string? FMaterialId { get; set; } /// /// 申请数量 /// [SugarColumn(ColumnName = "FQty")] public decimal? FQty { get; set; } /// /// 补料数量 /// [SugarColumn(ColumnName = "FFeedQty")] public decimal? FFeedQty { get; set; } /// /// 单位 /// [SugarColumn(ColumnName = "FUintId")] public string? FUintId { get; set; } /// /// 库存状态 /// [SugarColumn(ColumnName = "FStockStatusId")] public string? FStockStatusId { get; set; } /// /// 排序 /// [SugarColumn(ColumnName = "Fidx")] public int? FIdx { get; set; } /// /// 已扫数量 /// [SugarColumn(ColumnName = "SQty")] public decimal? SQty { get; set; } /// /// 受托入库明细guid /// [SugarColumn(ColumnName = "RkMxGuid")] public Guid? RkMxGuid { get; set; } }