2024-03-17 16:05:28 +08:00
|
|
|
using System.ComponentModel.DataAnnotations;
|
|
|
|
|
|
|
|
|
|
namespace ZR.Model.MES.wms.Dto
|
|
|
|
|
{
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// 客户信息查询对象
|
|
|
|
|
/// </summary>
|
2024-06-07 11:04:26 +08:00
|
|
|
public class WmCustomQueryDto : PagerInfo
|
2024-03-17 16:05:28 +08:00
|
|
|
{
|
|
|
|
|
public string CustomNo { get; set; }
|
|
|
|
|
|
|
|
|
|
public string CustomName { get; set; }
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// 客户信息输入输出对象
|
|
|
|
|
/// </summary>
|
|
|
|
|
public class WmCustomDto
|
|
|
|
|
{
|
|
|
|
|
[Required(ErrorMessage = "主键不能为空")]
|
|
|
|
|
public int Id { get; set; }
|
|
|
|
|
|
|
|
|
|
public string CustomNo { get; set; }
|
|
|
|
|
|
|
|
|
|
public string CustomName { get; set; }
|
|
|
|
|
|
|
|
|
|
public string CustomAddress { get; set; }
|
|
|
|
|
|
|
|
|
|
public string Remark { get; set; }
|
|
|
|
|
|
|
|
|
|
public string CreatedBy { get; set; }
|
|
|
|
|
|
|
|
|
|
public DateTime? CreatedTime { get; set; }
|
|
|
|
|
|
|
|
|
|
public string UpdatedBy { get; set; }
|
|
|
|
|
|
|
|
|
|
public DateTime? UpdatedTime { get; set; }
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
}
|
|
|
|
|
}
|