| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120 |
- using Microsoft.EntityFrameworkCore;
- using System;
- using System.Collections.Generic;
- using System.ComponentModel.DataAnnotations;
- using System.Linq;
- using System.Text;
- using System.Threading.Tasks;
- namespace Business.Domain
- {
- /// <summary>
- /// 优先级配置表
- /// </summary>
- [Comment("优先级配置表")]
- public class PriorityCode
- {
- /// <summary>
- /// 主键
- /// </summary>
- [Comment("主键")]
- [Key]
- public Guid RecID { get; set; }
- /// <summary>
- /// 域名
- /// </summary>
- [Comment("域名")]
- public string Domain { get; set; }
- /// <summary>
- /// 名称
- /// </summary>
- [Comment("名称")]
- public string Descr { get; set; }
- /// <summary>
- /// 字段名称
- /// </summary>
- [Comment("字段名称")]
- public string Value { get; set; }
- /// <summary>
- /// 优先级
- /// </summary>
- [Comment("优先级")]
- public int Priority { get; set; }
- /// <summary>
- /// 来源表名
- /// </summary>
- [Comment("来源表名")]
- public string SourceTable { get; set; }
- /// <summary>
- /// 来源字段
- /// </summary>
- [Comment("来源字段")]
- public string SourceColumn { get; set; }
- /// <summary>
- /// 来源表关联字段
- /// </summary>
- [Comment("来源表关联字段")]
- public string SourceID { get; set; }
- /// <summary>
- /// 工单表关联字段
- /// </summary>
- [Comment("工单表关联字段")]
- public string ValueID { get; set; }
- /// <summary>
- /// 来源表字段类型
- /// </summary>
- [Comment("来源表关联字段")]
- public string SourceType { get; set; }
- /// <summary>
- /// 工单表字段类型
- /// </summary>
- [Comment("工单表关联字段")]
- public string ValueType { get; set; }
- /// <summary>
- /// 是否有效:1-有效;0-无效
- /// </summary>
- [Comment("是否有效")]
- public bool IsActive { get; set; }
- /// <summary>
- /// 排序方式
- /// </summary>
- [Comment("排序方式")]
- public bool OrderBy { get; set; }
- /// <summary>
- /// 创建时间
- /// </summary>
- [Comment("创建时间")]
- public DateTime? CreateTime { get; set; }
- /// <summary>
- /// 修改时间
- /// </summary>
- [Comment("修改时间")]
- public DateTime? UpdateTime { get; set; }
- /// <summary>
- /// 创建人
- /// </summary>
- [Comment("创建人")]
- public string CreateUser { get; set; }
- /// <summary>
- /// 修改人
- /// </summary>
- [Comment("修改人")]
- public string UpdateUser { get; set; }
- }
- }
|