48 lines
1.2 KiB
C#
48 lines
1.2 KiB
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using System.Threading.Tasks;
|
|
|
|
namespace MDM.Models.Process
|
|
{
|
|
/// <summary>
|
|
/// 物料防错规则表
|
|
/// </summary>
|
|
|
|
[SugarTable("process_error_proof_rule_dict", "物料防错规则表")]
|
|
public class ProcessErrorProofRule
|
|
{
|
|
/// <summary>
|
|
/// 主键ID
|
|
/// </summary>
|
|
[SugarColumn(IsPrimaryKey = true, IsIdentity = true)]
|
|
public int Id { get; set; }
|
|
|
|
/// <summary>
|
|
/// 防错规则code
|
|
/// </summary>
|
|
[SugarColumn(ColumnName = "error_proof_rule_code", Length = 50)]
|
|
public string ErrorProofRuleCode { get; set; }
|
|
|
|
/// <summary>
|
|
/// 防错规则name
|
|
/// </summary>
|
|
[SugarColumn(ColumnName = "error_proof_rule_name", Length = 50)]
|
|
public string ErrorProofRuleName { get; set; }
|
|
|
|
/// <summary>
|
|
/// 创建时间
|
|
/// </summary>
|
|
[SugarColumn(ColumnName = "created_time")]
|
|
public DateTime CreatedTime { get; set; }
|
|
|
|
/// <summary>
|
|
/// 更新时间
|
|
/// </summary>
|
|
[SugarColumn(ColumnName = "updated_time")]
|
|
public DateTime UpdatedTime { get; set; }
|
|
}
|
|
|
|
}
|