物料管理

This commit is contained in:
qianhao.xu
2024-04-26 11:20:39 +08:00
parent 9c77c90f5d
commit 6da6069678
6 changed files with 274 additions and 10 deletions

View File

@@ -0,0 +1,42 @@
using System.ComponentModel.DataAnnotations;
namespace ZR.Model.Dto
{
/// <summary>
/// agv位置表查询对象
/// </summary>
public class MmAgvLocationQueryDto : PagerInfo
{
}
/// <summary>
/// agv位置表输入输出对象
/// </summary>
public class MmAgvLocationDto
{
[Required(ErrorMessage = "Id不能为空")]
public int Id { get; set; }
public int? AreaCode { get; set; }
public string Area { get; set; }
public int? Type { get; set; }
public string Coordinate { get; set; }
[Required(ErrorMessage = "状态0无托盘1有托盘2未知不能为空")]
public int Status { get; set; }
public string CreatedBy { get; set; }
public DateTime? CreatedTime { get; set; }
public string UpdatedBy { get; set; }
public DateTime? UpdatedTime { get; set; }
}
}