57 lines
1.3 KiB
C#
57 lines
1.3 KiB
C#
using System.ComponentModel.DataAnnotations;
|
|
|
|
namespace DOAN.Model.MES.base_.Dto
|
|
{
|
|
/// <summary>
|
|
/// 供应商信息查询对象
|
|
/// </summary>
|
|
public class BaseSupplierQueryDto : PagerInfo
|
|
{
|
|
public string SupplierNo { get; set; }
|
|
|
|
public string SupplierName { get; set; }
|
|
public int? Type { get; set; }
|
|
public int? Status { get; set; }
|
|
}
|
|
|
|
/// <summary>
|
|
/// 供应商信息输入输出对象
|
|
/// </summary>
|
|
public class BaseSupplierDto
|
|
{
|
|
[Required(ErrorMessage = "主键不能为空")]
|
|
public int Id { get; set; }
|
|
|
|
public string SupplierNo { get; set; }
|
|
|
|
public string SupplierName { get; set; }
|
|
|
|
public string SupplierAddress { get; set; }
|
|
|
|
/// <summary>
|
|
/// 供应商简称
|
|
/// </summary>
|
|
public string SupplierAddName { get; set; }
|
|
|
|
public string SupplierLiaison { get; set; }
|
|
|
|
public string SupplierPhone { get; set; }
|
|
|
|
public int? Type { get; set; }
|
|
|
|
public int? Status { 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; }
|
|
|
|
|
|
|
|
}
|
|
} |