zhuangpei-mesbackend/DOAN.Model/MES/process/ProcessmodelRouting.cs
2025-09-20 15:33:58 +08:00

63 lines
1.6 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 DOAN.Model.MES.process
{
/// <summary>
/// 工艺路线表
/// </summary>
[SugarTable("processmodel_routing")]
public class ProcessmodelRouting
{
/// <summary>
/// 主键ID
/// </summary>
[SugarColumn(IsPrimaryKey = true, IsIdentity = true)]
public int Id { get; set; }
/// <summary>
/// 工艺路线编码
/// </summary>
[SugarColumn(ColumnName = "routing_code")]
public string RoutingCode { get; set; }
/// <summary>
/// 工艺路线名称
/// </summary>
[SugarColumn(ColumnName = "routing_name")]
public string RoutingName { get; set; }
/// <summary>
/// 产品/物料编码
/// </summary>
[SugarColumn(ColumnName = "product_code")]
public string ProductCode { get; set; }
/// <summary>
/// 工艺路线描述
/// </summary>
public string Description { get; set; }
/// <summary>
/// 版本号
/// </summary>
public string Version { get; set; }
/// <summary>
/// 创建时间
/// </summary>
[SugarColumn(ColumnName = "create_time")]
public DateTime? CreateTime { get; set; }
/// <summary>
/// 更新时间
/// </summary>
[SugarColumn(ColumnName = "update_time")]
public DateTime? UpdateTime { get; set; }
/// <summary>
/// 是否有效1=有效0=无效
/// </summary>
[SugarColumn(ColumnName = "is_active")]
public string IsActive { get; set; }
}
}