MappingEntity.cs 560 B

123456789101112131415161718192021
  1. using CZFW.Framework.Attributes;
  2. using CZFW.Framework.Model.Entity;
  3. using System.ComponentModel.DataAnnotations;
  4. using System.ComponentModel.DataAnnotations.Schema;
  5. namespace CZKJ.GBRS2.Entity
  6. {
  7. [Table("cz_gbrs2_mapping")]
  8. public class MappingEntity:EntityBase
  9. {
  10. /// <summary>
  11. /// 模块
  12. /// </summary>
  13. [StringLength(32)]
  14. [EnumSrc(SrcUrl = "CZKJ.GBRS2.Enum.MappingModuleEnum")]
  15. public int Module { get; set; }
  16. public int ObjId { get; set; }
  17. public int RefId { get; set; }
  18. }
  19. }