namespace RIZO.Model.Mes.MasterData
{
///
/// 产线工位工序字典表
///
[SugarTable("station_process_dict")]
public class StationProcessDict
{
///
/// 主键ID
///
[SugarColumn(IsPrimaryKey = true, IsIdentity = false)]
public long Id { get; set; }
///
/// 产线编码(关联产线主表,业务唯一标识)
///
[SugarColumn(ColumnName = "line_code")]
public string LineCode { get; set; }
///
/// 产线名称
///
[SugarColumn(ColumnName = "line_name")]
public string LineName { get; set; }
///
/// 工位编码(业务唯一标识,如:LINE001-ST001)
///
[SugarColumn(ColumnName = "station_code")]
public string StationCode { get; set; }
///
/// 工位名称
///
[SugarColumn(ColumnName = "station_name")]
public string StationName { get; set; }
///
/// 工序编码(业务唯一标识,如:LINE001-ST001-PROC001)
///
[SugarColumn(ColumnName = "process_code")]
public string ProcessCode { get; set; }
///
/// 工序名称
///
[SugarColumn(ColumnName = "process_name")]
public string ProcessName { get; set; }
///
/// 创建人
///
[SugarColumn(ColumnName = "create_by")]
public string CreateBy { get; set; }
///
/// 创建时间
///
[SugarColumn(ColumnName = "create_time")]
public DateTime? CreateTime { get; set; }
///
/// 更新人
///
[SugarColumn(ColumnName = "update_by")]
public string UpdateBy { get; set; }
///
/// 更新时间
///
[SugarColumn(ColumnName = "update_time")]
public DateTime? UpdateTime { get; set; }
///
/// 创建人名字
///
[SugarColumn(ColumnName = "create_name")]
public string CreateName { get; set; }
///
/// 更新人名字
///
[SugarColumn(ColumnName = "update_name")]
public string UpdateName { get; set; }
}
}