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_work_step")]
public class ProModelWorkStep
{
/// <summary>
/// id
/// </summary>
[SugarColumn(IsPrimaryKey = true, IsIdentity = true)]
public long Id { get; set; }
/// <summary>
/// 工步名称
/// </summary>
[SugarColumn(ColumnName = "step_name")]
public string StepName { get; set; }
/// <summary>
/// 工步编码
/// </summary>
[SugarColumn(ColumnName = "step_code")]
public string StepCode { get; set; }
/// <summary>
/// 工序id
/// </summary>
[SugarColumn(ColumnName = "process_id")]
public long? ProcessId { 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; }
}
}