2024-12-03 14:35:59 +08:00
|
|
|
|
using DOAN.Model.MES.base_.Dto;
|
|
|
|
|
|
|
|
|
|
|
|
namespace DOAN.Model.MES.base_
|
|
|
|
|
|
{
|
|
|
|
|
|
/// <summary>
|
|
|
|
|
|
/// 工艺路线
|
|
|
|
|
|
/// </summary>
|
|
|
|
|
|
[SugarTable("base_work_route")]
|
|
|
|
|
|
public class BaseWorkRoute
|
|
|
|
|
|
{
|
|
|
|
|
|
/// <summary>
|
|
|
|
|
|
/// 主键
|
|
|
|
|
|
/// </summary>
|
|
|
|
|
|
[SugarColumn(IsPrimaryKey = true, IsIdentity = true)]
|
|
|
|
|
|
public int Id { get; set; }
|
|
|
|
|
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
|
|
/// 名称
|
|
|
|
|
|
/// </summary>
|
|
|
|
|
|
public string Name { get; set; }
|
2024-12-03 16:41:48 +08:00
|
|
|
|
|
|
|
|
|
|
public string Code { get; set; }
|
2024-12-03 14:35:59 +08:00
|
|
|
|
|
|
|
|
|
|
/// <summary>
|
2024-12-03 16:41:48 +08:00
|
|
|
|
/// 产成品编号
|
2024-12-03 14:35:59 +08:00
|
|
|
|
/// </summary>
|
2024-12-03 16:41:48 +08:00
|
|
|
|
[SugarColumn(ColumnName = "production_code")]
|
|
|
|
|
|
public string ProductionCode{ get; set; }
|
2024-12-03 14:35:59 +08:00
|
|
|
|
|
|
|
|
|
|
[SugarColumn(IsIgnore =true)]
|
|
|
|
|
|
public List<BaseWorkProcessesDto3> BaseWorkProcessesList { get; set; }
|
|
|
|
|
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
|
|
/// 工艺流程图原始json数据,用来进行复现
|
|
|
|
|
|
/// </summary>
|
|
|
|
|
|
[SugarColumn(ColumnName = "logic_flow_data")]
|
|
|
|
|
|
public string LogicFlowData { get; set; }
|
|
|
|
|
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
|
|
/// 状态
|
|
|
|
|
|
/// </summary>
|
|
|
|
|
|
public int? Status { get; set; }
|
|
|
|
|
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
|
|
/// 备注
|
|
|
|
|
|
/// </summary>
|
|
|
|
|
|
public string Remark { 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; }
|
|
|
|
|
|
}
|
|
|
|
|
|
}
|