2025-11-11 15:10:33 +08:00

71 lines
1.9 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("production_line")]
public class ProductionLine
{
/// <summary>
/// 主键ID
/// </summary>
[SugarColumn(IsPrimaryKey = true, IsIdentity = true)]
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>
/// 产线状态0-在用1-停用)
/// </summary>
[SugarColumn(ColumnName = "line_status")]
public int LineStatus { 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; }
}
}