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

@@ -0,0 +1,83 @@
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 string TaskId { get; set; }
/// <summary>
/// 工单id
/// </summary>
public string Workorder { get; set; }
/// <summary>
/// 毛坯号
/// </summary>
[SugarColumn(ColumnName = "blanknumber")]
public string Blanknumber { get; set; }
/// <summary>
/// 上件数
/// </summary>
public int? PreviousNumber { get; set; }
/// <summary>
/// 已经上件数
/// </summary>
public int? PreviousNumbered { get; set; }
public int? Isfinal { 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; }
}
}