IQC开始
This commit is contained in:
81
ZR.Model/MES/wm/WmMaterialreturn.cs
Normal file
81
ZR.Model/MES/wm/WmMaterialreturn.cs
Normal file
@@ -0,0 +1,81 @@
|
||||
using System;
|
||||
using System.Collections.Generic;
|
||||
using System.Linq;
|
||||
using System.Text;
|
||||
using System.Threading.Tasks;
|
||||
|
||||
namespace ZR.Model.MES.wm
|
||||
{
|
||||
/// <summary>
|
||||
/// 生产退料
|
||||
///</summary>
|
||||
[SugarTable("wm_materialreturn")]
|
||||
public class WmMaterialreturn
|
||||
{
|
||||
/// <summary>
|
||||
/// 流水号
|
||||
///</summary>
|
||||
[SugarColumn(ColumnName = "id", IsPrimaryKey = true)]
|
||||
public string Id { get; set; }
|
||||
/// <summary>
|
||||
/// 领料单id
|
||||
///</summary>
|
||||
[SugarColumn(ColumnName = "fk_mrqr_id")]
|
||||
public string FkMrqrId { get; set; }
|
||||
/// <summary>
|
||||
/// 年
|
||||
///</summary>
|
||||
[SugarColumn(ColumnName = "year")]
|
||||
public int? Year { get; set; }
|
||||
/// <summary>
|
||||
/// 周
|
||||
///</summary>
|
||||
[SugarColumn(ColumnName = "week")]
|
||||
public int? Week { get; set; }
|
||||
/// <summary>
|
||||
/// 日
|
||||
///</summary>
|
||||
[SugarColumn(ColumnName = "date")]
|
||||
public int? Date { get; set; }
|
||||
/// <summary>
|
||||
/// 毛坯零件号
|
||||
///</summary>
|
||||
[SugarColumn(ColumnName = "workblankpartnumber")]
|
||||
public string Workblankpartnumber { get; set; }
|
||||
/// <summary>
|
||||
/// 退料数量
|
||||
///</summary>
|
||||
[SugarColumn(ColumnName = "requirenum")]
|
||||
public int? Requirenum { get; set; }
|
||||
/// <summary>
|
||||
/// 租户号
|
||||
///</summary>
|
||||
[SugarColumn(ColumnName = "TENANT_ID")]
|
||||
public string TenantId { get; set; }
|
||||
/// <summary>
|
||||
/// 乐观锁
|
||||
///</summary>
|
||||
[SugarColumn(ColumnName = "REVISION")]
|
||||
public int? Revision { 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