12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849 |
- using CZFW.Framework.Attributes;
- using CZFW.Framework.Model.Entity;
- using System;
- using System.ComponentModel.DataAnnotations;
- using System.ComponentModel.DataAnnotations.Schema;
- namespace CZKJ.GBRS2.Entity
- {
- /// <summary>
- /// 价格公布—万能险利率表
- /// </summary>
- [Table("cz_gbrs2_priceannouncement")]
- public class PriceAnnouncementEntity : EntityBase
- {
- /// <summary>
- /// 险种
- /// </summary>
- [Invisible(FormVisible =true,AddVisible =true)]
- [DropdownSrc(SrcUrl = "/Manage/Type/GetTypeListByParentId?parentId=169")]
- [Display(Name = "险种")]
- public int Typeofinsuance { get; set; }
- /// <summary>
- /// 年化利率
- /// </summary>
- [Display(Name = "年化利率")]
- [StringLength(64)]
- public string YearInterestRate { get; set; }
- /// <summary>
- /// 日化利率
- /// </summary>
- [Display(Name = "日化利率")]
- [StringLength(64)]
- public string DayInterestRate { get; set; }
- /// <summary>
- ///适用日期
- /// </summary>
- [Display(Name = "适用日期")]
- public DateTime DateTime { get; set; }
- /// <summary>
- /// 险种名称
- /// </summary>
- [NotMapped]
- [Display(Name = "险种")]
- [Invisible(TableVisible =true)]
- public string TypeName { get; set; }
- }
- }
|