payne
2024-04-25 d6883f7f2dc6f60b4378b6c4d456750de7084c77
iWare_RawMaterialWarehouse_Wms/Admin.NET.Application/Service/WmsBase/BaseCustomer/Dto/BaseCustomerInput.cs
@@ -1,12 +1,13 @@
using Admin.NET.Core;
using Admin.NET.Core.Service;
using Microsoft.EntityFrameworkCore;
using System.ComponentModel.DataAnnotations;
namespace Admin.NET.Application
{    
    
    /// <summary>
    /// 往来关系查询参数
    /// 往来单位查询参数
    /// </summary>
    public class BaseCustomerSearch : PageInputBase
    {
@@ -103,7 +104,7 @@
    }
        /// <summary>
    /// 往来关系不分页查询参数
    /// 往来单位不分页查询参数
    /// </summary>
    public class BaseCustomerSearchNonPage : PageInputNonPageBase
    {
@@ -200,10 +201,16 @@
    }
    /// <summary>
    /// 往来关系输入参数
    /// 往来单位输入参数
    /// </summary>
    public class BaseCustomerInput
    {
    {
        /// <summary>
        /// 客户编号
        /// </summary>
        [Comment("客户编号")]
        [MaxLength(50)]
        public string CustCode { get; set; }
        /// <summary>
        /// 客户中文名称
        /// </summary>
@@ -265,25 +272,28 @@
        /// 是否禁用
        /// </summary>
        public virtual bool? IsDisabled { get; set; }
    }
    /// <summary>
    /// 往来关系新增参数
    /// 往来单位新增参数
    /// </summary>
    public class AddBaseCustomerInput : BaseCustomerInput
    {
    }
    /// <summary>
    /// 往来关系删除参数
    /// 往来单位删除参数
    /// </summary>
    public class DeleteBaseCustomerInput : BaseId
    {
    }
    /// <summary>
    /// 往来关系更新参数
    /// 往来单位更新参数
    /// </summary>
    public class UpdateBaseCustomerInput : BaseCustomerInput
    {
@@ -296,7 +306,7 @@
    }
    /// <summary>
    /// 往来关系获取单个参数
    /// 往来单位获取单个参数
    /// </summary>
    public class QueryeBaseCustomerInput : BaseId
    {