using JNPF.Common.Contracts; using JNPF.Common.Security; using SqlSugar; namespace Tnb.WarehouseMgr.Entities; /// /// 委外收货表子表 /// [SugarTable("wms_outsource_d")] public partial class WmsOutsourceD : BaseEntity { public WmsOutsourceD() { id = SnowflakeIdHelper.NextId(); } /// /// 主表id /// public string? fk_wms_outsource_order_id { get; set; } /// /// 委外订单子表id /// public string outsource_order_d_id { get; set; } /// /// 物料id /// public string? matcode_id { get; set; } /// /// 物料编号 /// public string? matcode { get; set; } /// /// 物料描述 /// public string? matspecification { get; set; } /// /// 单位 /// public string? unit { get; set; } /// /// 委外数量 /// public decimal? outsource_quantity { get; set; } /// /// 实收数量 /// public decimal? actual_quantity { get; set; } /// /// 库存地点ID /// public string? stock_location_id { get; set; } /// /// 库存地点 /// public string? stock_location { get; set; } /// /// 批次 /// public string? code_batch { get; set; } /// /// 备注 /// public string? remark { get; set; } /// /// 扩展字段 /// public string? extras { get; set; } /// /// 交货日期 /// public string? delivery_date { get; set; } /// /// 净价 /// public string? net_price { get; set; } /// /// 货币 /// public string? currency { get; set; } /// /// 工厂 /// public string? factory { get; set; } /// /// 创建用户 /// public string? create_id { get; set; } /// /// 创建时间 /// public DateTime? create_time { get; set; } /// /// 修改用户 /// public string? modify_id { get; set; } /// /// 修改时间 /// public DateTime? modify_time { get; set; } /// /// erp_line_pk /// public string? erp_line_pk { get; set; } /// /// 已绑定数量 本次到货数量 /// public decimal? bind_qty { get; set; } /// /// 辅助属性(小批号) /// public string? auxprop_xph { get; set; } /// /// 供应商(辅助属性) /// public string? auxprop_gys { get; set; } /// /// 单位id /// public string? unit_id { get; set; } /// /// 质检结果 /// public string? qc_res { get; set; } /// /// erp_wh_type /// public string? erp_wh_type { get; set; } /// /// 单价 /// public string? price { get; set; } /// /// erp_arriveorder_b_pk /// public string? erp_arriveorder_b_pk { get; set; } /// /// 是否赠品 /// // public int? gift { get; set; } /// /// 本次收货数量 /// public decimal? outsource_arriveqty { get; set; } public string erp_outsource_order_d_pk { get; set; } public string erp_outsource_order_d_lineno { get; set; } /// /// 生产单位(厂商) /// public string? production_unit { get; set; } }