payne
2024-04-26 b331d820b30bdff8eb868ad18837aaffe3d2158b
iWare_RawMaterialWarehouse_Wms/Admin.NET.Application/Service/WmsBase/WmsMaterial/Dto/WmsMaterialOutput.cs
@@ -1,4 +1,5 @@
using Admin.NET.Core.Util.LowCode.Dto;
using Admin.NET.Core;
using Admin.NET.Core.Util.LowCode.Dto;
using System;
namespace Admin.NET.Application
@@ -36,7 +37,7 @@
        /// <summary>
        /// 物料类型
        /// </summary>
        public int? MaterialType { get; set; }
        public long? MaterialType { get; set; }
        
        /// <summary>
        /// 物料组
@@ -46,12 +47,14 @@
        /// <summary>
        /// ABC分类名称
        /// </summary>
        public string ABCClassName { get; set; }
        public string ABCClassName { get {
                return ABCClass!=null? ABCClass.ToString():string.Empty;
            } }
        
        /// <summary>
        /// ABC分类
        /// </summary>
        public int? ABCClass { get; set; }
        public ABCClassEnum? ABCClass { get; set; }
        
        /// <summary>
        /// 物料规格
@@ -139,4 +142,31 @@
        public string UpdatedUserName { get; set; }
        
    }
    /// <summary>
    /// 物料业务信息实体出参--包含物料、物料客户关系、控制属性、替代品
    /// </summary>
    public class WmsMaterialInfoOutput
    {
        /// <summary>
        /// 物料基础信息
        /// </summary>
        public WmsMaterialOutput MaterialInfo { get; set; }
        /// <summary>
        /// 控制属性规则
        /// </summary>
        public List<WmsControlRuleDetailOutput> ControlRuleDetailList { get; set; }
        /// <summary>
        /// 替代品
        /// </summary>
        public List<WmsSubstituteGoodOutput> SubstituteGoodList { get; set; }
        /// <summary>
        /// 往来单位
        /// </summary>
        public List<BaseCustomerOutput> BaseCustomerList { get; set; }
    }
}