38 lines
891 B
C#
38 lines
891 B
C#
using System.ComponentModel.DataAnnotations;
|
|
|
|
namespace DOAN.Model.MES.material.Dto
|
|
{
|
|
/// <summary>
|
|
/// 北泽线边库供应商查询对象
|
|
/// </summary>
|
|
public class MaterialPartsSuppliersQueryDto : PagerInfo
|
|
{
|
|
}
|
|
|
|
/// <summary>
|
|
/// 北泽线边库供应商输入输出对象
|
|
/// </summary>
|
|
public class MaterialPartsSuppliersDto
|
|
{
|
|
[Required(ErrorMessage = "供应商ID不能为空")]
|
|
public int SupplierId { get; set; }
|
|
|
|
[Required(ErrorMessage = "供应商名称不能为空")]
|
|
public string SupplierName { get; set; }
|
|
|
|
public string ContactPerson { get; set; }
|
|
|
|
public string Phone { get; set; }
|
|
|
|
public string Email { get; set; }
|
|
|
|
public string Address { get; set; }
|
|
|
|
public DateTime? CreatedAt { get; set; }
|
|
|
|
public DateTime? UpdatedAt { get; set; }
|
|
|
|
|
|
|
|
}
|
|
} |