agv配料

This commit is contained in:
qianhao.xu
2024-04-29 18:50:44 +08:00
parent 96bb0fa527
commit 4a66ac854e
7 changed files with 232 additions and 6 deletions

View File

@@ -21,4 +21,8 @@ namespace ZR.Model.MES.mm.Dto
public int previousNumber { set; get; }
public int previousNumbered { set; get; }
}
public class IngredientTaskQueryDto : PagerInfo
{
public DateTime datetimespan { set; get; }
}
}

View File

@@ -0,0 +1,63 @@
using SqlSugar;
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace ZR.Service.mes.mm
{
/// <summary>
///
/// </summary>
[SugarTable("mm_fk_workorder_ingredient")]
public class MmFkWorkorderIngredient
{
/// <summary>
/// Id
/// </summary>
[SugarColumn(IsPrimaryKey = true, IsIdentity = true)]
public int Id { get; set; }
/// <summary>
/// 工单号
/// </summary>
[SugarColumn(IsPrimaryKey = true, IsIdentity = false, ColumnName = "fk_workorder")]
public string FkWorkorder { get; set; }
/// <summary>
/// 是否完成配料
/// </summary>
public int? Isingredient { get; set; }
/// <summary>
/// 剩余的待上件数量
/// </summary>
public int? Remian { get; set; }
/// <summary>
/// CreatedBy
/// </summary>
[SugarColumn(ColumnName = "cREATED_BY")]
public string CreatedBy { get; set; }
/// <summary>
/// CreatedTime
/// </summary>
[SugarColumn(ColumnName = "cREATED_TIME")]
public DateTime? CreatedTime { get; set; }
/// <summary>
/// UpdatedBy
/// </summary>
[SugarColumn(ColumnName = "uPDATED_BY")]
public string UpdatedBy { get; set; }
/// <summary>
/// UpdatedTime
/// </summary>
[SugarColumn(ColumnName = "uPDATED_TIME")]
public DateTime? UpdatedTime { get; set; }
}
}

View File

@@ -28,7 +28,7 @@ namespace ZR.Model.MES.mm
/// 配料任务id
/// </summary>
[SugarColumn(IsPrimaryKey = true, IsIdentity = false, ColumnName = "task_id")]
public long TaskId { get; set; }
public string TaskId { get; set; }
/// <summary>
/// 工单id