获取工单 排产工单 未排产工单
This commit is contained in:
83
ZR.Model/MES/pro/ProWorkorderSchedule.cs
Normal file
83
ZR.Model/MES/pro/ProWorkorderSchedule.cs
Normal 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.pro
|
||||
{
|
||||
/// <summary>
|
||||
/// 生产工单排产表
|
||||
/// </summary>
|
||||
[SugarTable("pro_workorder_schedule", TableDescription = "生产工单排产表")]
|
||||
public class ProWorkorderSchedule
|
||||
{
|
||||
/// <summary>
|
||||
/// 流水号
|
||||
/// </summary>
|
||||
[SugarColumn(ColumnName = "id", IsPrimaryKey = true)]
|
||||
public string Id { get; set; }
|
||||
|
||||
/// <summary>
|
||||
/// 工单ID
|
||||
/// </summary>
|
||||
[SugarColumn(ColumnName = "fk_pro_order_id")]
|
||||
public string FkProOrderId { get; set; }
|
||||
|
||||
/// <summary>
|
||||
/// 排序编号
|
||||
/// </summary>
|
||||
[SugarColumn(ColumnName = "order")]
|
||||
public int Order { 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 = "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