schangxiang@126.com
2024-04-25 4d14b84903bf0277c5e8b9b3138c5e1d981e95db
iWare_RawMaterialWarehouse_Wms/Admin.NET.Application/Service/WmsBase/BaseCustomer/Dto/BaseCustomerInput.cs
@@ -6,7 +6,7 @@
{
    /// <summary>
    /// 客户档案查询参数
    /// 往来关系查询参数
    /// </summary>
    public class BaseCustomerSearch : PageInputBase
    {
@@ -33,7 +33,7 @@
        /// <summary>
        /// 类型
        /// </summary>
        public virtual int? CustType { get; set; }
        public virtual Admin.NET.Core.BaseCustomerTypeEnum? CustType { get; set; }
        /// <summary>
        /// 类型名称
@@ -103,7 +103,7 @@
    }
    /// <summary>
    /// 客户档案不分页查询参数
    /// 往来关系不分页查询参数
    /// </summary>
    public class BaseCustomerSearchNonPage : PageInputNonPageBase
    {
@@ -130,7 +130,7 @@
        /// <summary>
        /// 类型
        /// </summary>
        public virtual int? CustType { get; set; }
        public virtual Admin.NET.Core.BaseCustomerTypeEnum? CustType { get; set; }
        /// <summary>
        /// 类型名称
@@ -200,16 +200,10 @@
    }
    /// <summary>
    /// 客户档案输入参数
    /// 往来关系输入参数
    /// </summary>
    public class BaseCustomerInput
    {
        /// <summary>
        /// 客户编号
        /// </summary>
        [Required(ErrorMessage = "客户编号不能为空")]
        public virtual string CustCode { get; set; }
        /// <summary>
        /// 客户中文名称
        /// </summary>
@@ -230,12 +224,7 @@
        /// 类型
        /// </summary>
        [Required(ErrorMessage = "类型不能为空")]
        public virtual BaseCustomerTypeEnum CustType { get; set; }
        /// <summary>
        /// 类型名称
        /// </summary>
        public virtual string CustTypeName { get; set; }
        public virtual Admin.NET.Core.BaseCustomerTypeEnum CustType { get; set; }
        /// <summary>
        /// 联系人
@@ -280,21 +269,21 @@
    }
    /// <summary>
    /// 客户档案新增参数
    /// 往来关系新增参数
    /// </summary>
    public class AddBaseCustomerInput : BaseCustomerInput
    {
    }
    /// <summary>
    /// 客户档案删除参数
    /// 往来关系删除参数
    /// </summary>
    public class DeleteBaseCustomerInput : BaseId
    {
    }
    /// <summary>
    /// 客户档案更新参数
    /// 往来关系更新参数
    /// </summary>
    public class UpdateBaseCustomerInput : BaseCustomerInput
    {
@@ -307,7 +296,7 @@
    }
    /// <summary>
    /// 客户档案获取单个参数
    /// 往来关系获取单个参数
    /// </summary>
    public class QueryeBaseCustomerInput : BaseId
    {