init
This commit is contained in:
39
DOAN.Model/PBL/Dto/StoragelocationDto.cs
Normal file
39
DOAN.Model/PBL/Dto/StoragelocationDto.cs
Normal file
@@ -0,0 +1,39 @@
|
||||
|
||||
namespace DOAN.Model.PBL.Dto
|
||||
{
|
||||
/// <summary>
|
||||
/// 料架表查询对象
|
||||
/// </summary>
|
||||
public class StoragelocationQueryDto : PagerInfo
|
||||
{
|
||||
public string Partnumber { get; set; }
|
||||
|
||||
public string RackCode { get; set; }
|
||||
}
|
||||
|
||||
/// <summary>
|
||||
/// 料架表输入输出对象
|
||||
/// </summary>
|
||||
public class StoragelocationDto
|
||||
{
|
||||
[Required(ErrorMessage = "Id不能为空")]
|
||||
public int Id { get; set; }
|
||||
|
||||
public string Partnumber { get; set; }
|
||||
|
||||
public string RackCode { get; set; }
|
||||
|
||||
public int? PackageNum { 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