增加qu 基本代码
This commit is contained in:
66
ZR.Model/MES/op/OpWorkorderSchedule.cs
Normal file
66
ZR.Model/MES/op/OpWorkorderSchedule.cs
Normal file
@@ -0,0 +1,66 @@
|
||||
using System;
|
||||
using System.Collections.Generic;
|
||||
using System.Linq;
|
||||
using System.Text;
|
||||
using System.Threading.Tasks;
|
||||
|
||||
namespace ZR.Model.MES.op
|
||||
{
|
||||
/// <summary>
|
||||
/// 工单生产进度表
|
||||
///</summary>
|
||||
[SugarTable("op_workorder_schedule")]
|
||||
public class OpWorkorderSchedule
|
||||
{
|
||||
/// <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 = "total")]
|
||||
public int? Total { get; set; }
|
||||
|
||||
/// <summary>
|
||||
/// 完成量
|
||||
///</summary>
|
||||
[SugarColumn(ColumnName = "completed")]
|
||||
public int? Completed { get; set; }
|
||||
|
||||
/// <summary>
|
||||
/// 未完成量
|
||||
///</summary>
|
||||
[SugarColumn(ColumnName = "unfinished")]
|
||||
public int? Unfinished { 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