using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace DOAN.Model.MES.product
{
///
/// 工单修改日志
///
[SugarTable("pro_workorder_update_log")]
public class ProWorkorderUpdateLog
{
///
/// 雪花id
///
[SugarColumn(IsPrimaryKey = true, IsIdentity = false)]
public string Id { get; set; }
///
/// 工单号
///
[SugarColumn(ColumnName = "workorder")]
public string Workorder { get; set; }
///
/// log
///
[SugarColumn(ColumnName = "log")]
public string Log { get; set; }
///
/// 状态更改时间
///
[SugarColumn(ColumnName = "change_time")]
public DateTime? ChangeTime { get; set; }
///
/// 操作者
///
[SugarColumn(ColumnName = "operator")]
public string Operator { get; set; }
///
/// 创建人
///
[SugarColumn(ColumnName = "CREATED_BY")]
public string CreatedBy { get; set; }
///
/// 创建时间
///
[SugarColumn(ColumnName = "CREATED_TIME")]
public DateTime? CreatedTime { get; set; }
///
/// 更新人
///
[SugarColumn(ColumnName = "UPDATED_BY")]
public string UpdatedBy { get; set; }
///
/// 更新时间
///
[SugarColumn(ColumnName = "UPDATED_TIME")]
public DateTime? UpdatedTime { get; set; }
}
}