using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; using Newtonsoft.Json; using Org.BouncyCastle.Asn1.Mozilla; using SqlSugar; namespace Tnb.WarehouseMgr.Entities.Dto.Outputs { /// /// 搭配方案输出类 /// public class CollocationSchemeOutput { /// /// 主键 /// public string id { get; set; } /// /// 所属组织ID /// public string org_id { get; set; } /// /// 搭配方案编号 /// public string bill_code { get; set; } = string.Empty; /// /// 搭配方案名称 /// public string bill_name { get; set; } = string.Empty; /// /// 顺序号 /// public int seq { get; set; } /// /// 产品ID /// public string material_id { get; set; } = string.Empty; /// /// 产品代码 /// public string material_code { get; set; } = string.Empty; /// /// 配送次数 /// public int count { get; set; } /// /// 最低库存 /// public int minimum { get; set; } /// /// 库位ID /// public string? location_id { get; set; } /// /// 齐套明细输出 /// [JsonIgnore] public List? CollocationSchemeDs { get; set; } /// /// 齐套明细Json /// public string CollocationSchemeDsJson { get; set; }=string.Empty; [JsonIgnore] public List? list { get; set; } } public class CollocationSchemeDOutput { /// /// 主键ID /// public string? id { get; set; } /// /// 所属组织ID /// public string? org_id { get; set; } /// /// 搭配方案ID /// public string bill_id { get; set; } = string.Empty; /// /// 物料ID /// public string material_id { get; set; } = string.Empty; /// /// 物料代码 /// public string material_code { get; set; } = string.Empty; /// /// 载具规格ID /// public string carrystd_id { get; set; } = string.Empty; /// /// 数量(件数) /// public decimal qty { get; set; } /// /// 箱数 /// public int box { get; set; } } }