payne
2024-04-25 0db27b2ea4752d71db98745b76a1805db8f57aaf
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>
        /// 物料组
@@ -51,7 +52,7 @@
        /// <summary>
        /// ABC分类
        /// </summary>
        public int? ABCClass { get; set; }
        public ABCClassEnum? ABCClass { get; set; }
        
        /// <summary>
        /// 物料规格
@@ -139,4 +140,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; }
    }
}