PriceAnnouncementEntity.cs 1.4 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849
  1. using CZFW.Framework.Attributes;
  2. using CZFW.Framework.Model.Entity;
  3. using System;
  4. using System.ComponentModel.DataAnnotations;
  5. using System.ComponentModel.DataAnnotations.Schema;
  6. namespace CZKJ.GBRS2.Entity
  7. {
  8. /// <summary>
  9. /// 价格公布—万能险利率表
  10. /// </summary>
  11. [Table("cz_gbrs2_priceannouncement")]
  12. public class PriceAnnouncementEntity : EntityBase
  13. {
  14. /// <summary>
  15. /// 险种
  16. /// </summary>
  17. [Invisible(FormVisible =true,AddVisible =true)]
  18. [DropdownSrc(SrcUrl = "/Manage/Type/GetTypeListByParentId?parentId=169")]
  19. [Display(Name = "险种")]
  20. public int Typeofinsuance { get; set; }
  21. /// <summary>
  22. /// 年化利率
  23. /// </summary>
  24. [Display(Name = "年化利率")]
  25. [StringLength(64)]
  26. public string YearInterestRate { get; set; }
  27. /// <summary>
  28. /// 日化利率
  29. /// </summary>
  30. [Display(Name = "日化利率")]
  31. [StringLength(64)]
  32. public string DayInterestRate { get; set; }
  33. /// <summary>
  34. ///适用日期
  35. /// </summary>
  36. [Display(Name = "适用日期")]
  37. public DateTime DateTime { get; set; }
  38. /// <summary>
  39. /// 险种名称
  40. /// </summary>
  41. [NotMapped]
  42. [Display(Name = "险种")]
  43. [Invisible(TableVisible =true)]
  44. public string TypeName { get; set; }
  45. }
  46. }