生产管理
This commit is contained in:
75
DOAN.Model/MES/Product/ProWorkorderUpdateLog.cs
Normal file
75
DOAN.Model/MES/Product/ProWorkorderUpdateLog.cs
Normal file
@@ -0,0 +1,75 @@
|
||||
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_workorder_update_log")]
|
||||
public class ProWorkorderUpdateLog
|
||||
{
|
||||
|
||||
/// <summary>
|
||||
/// 雪花id
|
||||
/// </summary>
|
||||
[SugarColumn(IsPrimaryKey = true, IsIdentity = false)]
|
||||
public string Id { get; set; }
|
||||
|
||||
|
||||
/// <summary>
|
||||
/// 工单号
|
||||
/// </summary>
|
||||
[SugarColumn(ColumnName = "workorder")]
|
||||
public string Workorder { get; set; }
|
||||
|
||||
/// <summary>
|
||||
/// log
|
||||
/// </summary>
|
||||
[SugarColumn(ColumnName = "log")]
|
||||
public string Log { get; set; }
|
||||
|
||||
|
||||
/// <summary>
|
||||
/// 状态更改时间
|
||||
/// </summary>
|
||||
[SugarColumn(ColumnName = "change_time")]
|
||||
public DateTime? ChangeTime { get; set; }
|
||||
|
||||
|
||||
/// <summary>
|
||||
/// 操作者
|
||||
/// </summary>
|
||||
[SugarColumn(ColumnName = "operator")]
|
||||
public string Operator { 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