shgx_tz_mom/ZR.Model/MES/wms/WmFgentryInspect.cs
2024-04-19 11:49:11 +08:00

84 lines
2.1 KiB
C#
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

namespace ZR.Model.MES.wms
{
/// <summary>
/// 成品入库检验
/// </summary>
[SugarTable("wm_fgentry_inspect")]
public class WmFgentryInspect
{
/// <summary>
/// 主键
/// </summary>
[SugarColumn(IsPrimaryKey = true, IsIdentity = true)]
public int Id { get; set; }
/// <summary>
/// 工单号
/// </summary>
public string Workorder { get; set; }
/// <summary>
/// 箱子号
/// </summary>
[SugarColumn(IsPrimaryKey = true, IsIdentity = false)]
public string Packcode { get; set; }
/// <summary>
/// 工位
/// </summary>
public string Machine { get; set; }
/// <summary>
/// 箱子里产品个数
/// </summary>
[SugarColumn(ColumnName = "production_num")]
public int? ProductionNum { get; set; }
/// <summary>
/// 零件号
/// </summary>
public string Partnumber { get; set; }
/// <summary>
/// 是否满箱
/// </summary>
public int? Bfilled { get; set; }
/// <summary>
/// 检验结果0未检1合格2不合格
/// </summary>
public int? Result { get; set; }
/// <summary>
/// 是否入库0未入1入库
/// </summary>
[SugarColumn(ColumnName = "bit_wm")]
public int? Bitwm { 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; }
}
}