Files
shgx_tz_mes_backend_sync/ZR.Model/MES/mm/Dto/MmAgvLocationDto.cs
2024-04-26 15:35:04 +08:00

44 lines
974 B
C#
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

using System.ComponentModel.DataAnnotations;
namespace ZR.Model.Dto
{
/// <summary>
/// agv位置表查询对象
/// </summary>
public class MmAgvLocationQueryDto : PagerInfo
{
public int areaCode { get; set; }
}
/// <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; }
}
}