using SqlSugar; namespace MES.Service.Models; /// /// 受托入库申请明细 /// [SugarTable("Mes_SHOU_TUO_DETAIL")] public class MesShouTuoDetail { /// /// 主键 /// [SugarColumn(ColumnName = "guid", IsPrimaryKey = true)] public Guid? Guid { get; set; } /// /// 外键 /// [SugarColumn(ColumnName = "pGuid")] public Guid? PGuid { get; set; } /// /// 物料ID /// [SugarColumn(ColumnName = "FMaterialId")] public string? FMaterialId { get; set; } /// /// 实收数量 /// [SugarColumn(ColumnName = "FQty")] public decimal? FQty { get; set; } /// /// 库存单位 /// [SugarColumn(ColumnName = "FUintId")] public string? FUintId { get; set; } /// /// 批号 /// [SugarColumn(ColumnName = "FLot")] public string? FLot { get; set; } /// /// 备注 /// [SugarColumn(ColumnName = "Remark")] public string? Remark { get; set; } /// /// 排序 /// [SugarColumn(ColumnName = "Fidx")] public int? FIdx { get; set; } /// /// 已扫数量 /// [SugarColumn(ColumnName = "SQty")] public decimal? SQty { get; set; } }