2025-11-06 20:28:30 +08:00

75 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 DOAN.Model.Business
{
/// <summary>
/// 工艺建模工艺路线表
/// </summary>
[SugarTable("pro_model_routing")]
public class ProModelRouting
{
/// <summary>
/// id
/// </summary>
[SugarColumn(IsPrimaryKey = true, IsIdentity = true)]
public long 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>
/// 项目id
/// </summary>
[SugarColumn(ColumnName = "project_id")]
public long? ProjectId { get; set; }
/// <summary>
/// 工艺路线描述
/// </summary>
public string Description { get; set; }
/// <summary>
/// 是否有效1=有效0=无效
/// </summary>
[SugarColumn(ColumnName = "is_active")]
public string IsActive { get; set; }
/// <summary>
/// 创建时间
/// </summary>
[SugarColumn(ColumnName = "create_time")]
public DateTime? CreateTime { get; set; }
/// <summary>
/// 创建人
/// </summary>
[SugarColumn(ColumnName = "create_by")]
public string CreateBy { get; set; }
/// <summary>
/// 更新时间
/// </summary>
[SugarColumn(ColumnName = "update_time")]
public DateTime? UpdateTime { get; set; }
/// <summary>
/// 更新人
/// </summary>
[SugarColumn(ColumnName = "update_by")]
public string UpdateBy { get; set; }
/// <summary>
/// 备注
/// </summary>
public string Remark { get; set; }
}
}