This commit is contained in:
qianhao.xu
2024-04-28 08:36:00 +08:00
parent 80f0da54c8
commit f88400eb00
5 changed files with 157 additions and 5 deletions

View File

@@ -0,0 +1,78 @@
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace ZR.Model.MES.mm
{
/// <summary>
/// 配料任务清单
/// </summary>
[SugarTable("mm_ingredient_task")]
public class MmIngredientTask
{
/// <summary>
/// id
/// </summary>
[SugarColumn(IsPrimaryKey = true, IsIdentity = true)]
public int Id { get; set; }
/// <summary>
/// 站点
/// </summary>
[SugarColumn(ColumnName = "agv_position")]
public string AgvPosition { get; set; }
/// <summary>
/// 配料任务id
/// </summary>
[SugarColumn(IsPrimaryKey = true, IsIdentity = false, ColumnName = "task_id")]
public long TaskId { get; set; }
/// <summary>
/// 工单id
/// </summary>
public string Workorder { get; set; }
/// <summary>
/// 零件号id
/// </summary>
public string Partnumber { get; set; }
/// <summary>
/// 上件数
/// </summary>
public int? PreviousNumber { get; set; }
/// <summary>
/// 已经上件数
/// </summary>
public int? PreviousNumbered { get; set; }
/// <summary>
/// 创建人
/// </summary>
[SugarColumn(ColumnName = "cREATED_BY")]
public string CreatedBy { get; set; }
/// <summary>
/// 创建时间
/// </summary>
[SugarColumn(ColumnName = "cREATED_TIME")]
public DateTime? CreatedTime { get; set; }
/// <summary>
/// 更新人
/// </summary>
[SugarColumn(ColumnName = "uPDATED_BY")]
public string UpdatedBy { get; set; }
/// <summary>
/// 更新时间
/// </summary>
[SugarColumn(ColumnName = "uPDATED_TIME")]
public DateTime? UpdatedTime { get; set; }
}
}