生产管理
This commit is contained in:
105
DOAN.Model/MES/Product/ProReportwork.cs
Normal file
105
DOAN.Model/MES/Product/ProReportwork.cs
Normal file
@@ -0,0 +1,105 @@
|
||||
using System;
|
||||
using System.Collections.Generic;
|
||||
using System.Linq;
|
||||
using System.Text;
|
||||
using System.Threading.Tasks;
|
||||
|
||||
namespace DOAN.Model.MES.product
|
||||
{
|
||||
/// <summary>
|
||||
/// 报工表
|
||||
/// </summary>
|
||||
[SugarTable("pro_reportwork")]
|
||||
public class ProReportwork
|
||||
{
|
||||
/// <summary>
|
||||
/// 雪花
|
||||
/// </summary>
|
||||
[SugarColumn(IsPrimaryKey = true, IsIdentity = false)]
|
||||
public string Id { get; set; }
|
||||
|
||||
/// <summary>
|
||||
/// 工单号
|
||||
/// </summary>
|
||||
[SugarColumn(ColumnName = "fk_workorder")]
|
||||
public string FkWorkorder { get; set; }
|
||||
|
||||
/// <summary>
|
||||
/// 派发数量
|
||||
/// </summary>
|
||||
[SugarColumn(ColumnName = "dispatch_num")]
|
||||
public int? DispatchNum { get; set; }
|
||||
|
||||
/// <summary>
|
||||
/// 完成数量
|
||||
/// </summary>
|
||||
[SugarColumn(ColumnName = "finished_num")]
|
||||
public int? FinishedNum { get; set; }
|
||||
|
||||
/// <summary>
|
||||
/// 组code
|
||||
/// </summary>
|
||||
[SugarColumn(ColumnName = "group_code")]
|
||||
public string GroupCode { get; set; }
|
||||
|
||||
/// <summary>
|
||||
/// 线code
|
||||
/// </summary>
|
||||
[SugarColumn(ColumnName = "line_code")]
|
||||
public string LineCode { get; set; }
|
||||
|
||||
/// <summary>
|
||||
/// 合格数
|
||||
/// </summary>
|
||||
[SugarColumn(ColumnName = "qualified_number")]
|
||||
public int? QualifiedNumber { get; set; }
|
||||
|
||||
/// <summary>
|
||||
/// 不合格数
|
||||
/// </summary>
|
||||
[SugarColumn(ColumnName = "unqualified_number")]
|
||||
public int? UnqualifiedNumber { get; set; }
|
||||
|
||||
/// <summary>
|
||||
/// 返工数
|
||||
/// </summary>
|
||||
[SugarColumn(ColumnName = "rework_number")]
|
||||
public int? ReworkNumber { get; set; }
|
||||
|
||||
/// <summary>
|
||||
/// 报废数
|
||||
/// </summary>
|
||||
[SugarColumn(ColumnName = "scrap_number")]
|
||||
public int? ScrapNumber { get; set; }
|
||||
|
||||
/// <summary>
|
||||
/// 备注
|
||||
/// </summary>
|
||||
public string Remark { 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; }
|
||||
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user