123456789101112131415161718192021 |
- using CZFW.Framework.Attributes;
- using CZFW.Framework.Model.Entity;
- using System.ComponentModel.DataAnnotations;
- using System.ComponentModel.DataAnnotations.Schema;
- namespace CZKJ.GBRS2.Entity
- {
- [Table("cz_gbrs2_mapping")]
- public class MappingEntity:EntityBase
- {
- /// <summary>
- /// 模块
- /// </summary>
- [StringLength(32)]
- [EnumSrc(SrcUrl = "CZKJ.GBRS2.Enum.MappingModuleEnum")]
- public int Module { get; set; }
- public int ObjId { get; set; }
- public int RefId { get; set; }
- }
- }
|