Files
shanghaigangxiangtuzhuangMES/ZR.Model/MES/mm/MmFkWorkorderIngredient.cs

73 lines
1.8 KiB
C#
Raw Normal View History

2024-04-28 15:18:44 +08:00
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; }
2024-05-13 10:05:09 +08:00
/// <summary>
/// 毛坯号
/// </summary>
[SugarColumn(IsPrimaryKey = true, IsIdentity = false, ColumnName = "fk_blanknumber")]
public string FkBlanknumber { get; set; }
2024-04-28 15:18:44 +08:00
/// <summary>
/// 是否完成配料
/// </summary>
public int? Isingredient { get; set; }
/// <summary>
/// 剩余的待上件数量
/// </summary>
2024-05-13 10:05:09 +08:00
[SugarColumn(ColumnName = "previous_numbered")]
public int? Previous_numbered { get; set; }
2024-04-28 15:18:44 +08:00
/// <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; }
}
}