生产管理
This commit is contained in:
57
DOAN.Model/MES/Base/Dto/BaseSupplierDto.cs
Normal file
57
DOAN.Model/MES/Base/Dto/BaseSupplierDto.cs
Normal file
@@ -0,0 +1,57 @@
|
||||
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; }
|
||||
|
||||
|
||||
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user