using JNPF.Common.Contracts; using JNPF.Common.Security; using SqlSugar; namespace Tnb.WarehouseMgr.Entities.Entity; /// /// 原材料调拨出库载具表 /// [SugarTable("wms_rawmat_transferoutstock_c")] public partial class WmsRawmatTransferoutstockC : BaseEntity { public WmsRawmatTransferoutstockC() { id = SnowflakeIdHelper.NextId(); } /// /// 原材料调拨出库单id /// public string? bill_id { get; set; } /// /// 载具ID /// public string? carry_id { get; set; } /// /// 载具编号 /// public string? carry_code { get; set; } /// /// 创建用户 /// public string? create_id { get; set; } /// /// 创建时间 /// public DateTime? create_time { get; set; } /// /// 终点库位id /// public string? endlocation_id { get; set; } /// /// 终点库位编码 /// public string? endlocation_code { get; set; } /// /// 起点库位id /// public string? startlocation_id { get; set; } /// /// 起点库位编码 /// public string? startlocation_code { get; set; } /// /// 原材料调拨出库明细id /// public string? mat_bill_id { get; set; } /// /// 载具数量 /// public decimal? qty { get; set; } /// /// 签收数量 /// public decimal? sign_qty { get; set; } }