2025-11-11 20:23:30 +08:00

89 lines
2.5 KiB
C#
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

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