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