This commit is contained in:
xiaowei.song
2024-06-06 13:19:24 +08:00
parent c93711290e
commit 127c428a9e
919 changed files with 93 additions and 86 deletions

View File

@@ -1,30 +0,0 @@
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace ZR.Model.MES.mm.Dto
{
public class IngredientTaskDto
{
public string agv_position { set; get; }
public List<Workerorder_Ingredient> workorders { set; get; }
}
public class Workerorder_Ingredient
{
public string workorder { set; get; }
public string blanknumber { set; get; }
public int previousNumber { set; get; }
public int previousNumbered { set; get; }
}
public class IngredientTaskQueryDto : PagerInfo
{
public DateTime datetimespan { set; get; }
}
}

View File

@@ -1,44 +0,0 @@
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; }
}
}

View File

@@ -1,18 +0,0 @@
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace ZR.Model.MES.mm.Dto
{
public class WorkorderqueryDto
{
public DateTime datetimespan { set; get; }
public int? pageNum { set; get; }
public int? pageSize { set; get; }
}
}