|
@@ -15,34 +15,32 @@ namespace CZKJ.GBRS2.Entity
|
15
|
15
|
/// <summary>
|
16
|
16
|
/// 险种
|
17
|
17
|
/// </summary>
|
18
|
|
- [Invisible]
|
|
18
|
+ [Invisible(FormVisible =true,AddVisible =true)]
|
19
|
19
|
[DropdownSrc(SrcUrl = "/Manage/Type/GetTypeListByParentId?parentId=")]
|
20
|
20
|
[Display(Name = "险种")]
|
21
|
21
|
public int Typeofinsuance { get; set; }
|
22
|
22
|
/// <summary>
|
23
|
23
|
/// 年化利率
|
24
|
24
|
/// </summary>
|
25
|
|
- [Invisible]
|
26
|
25
|
[Display(Name = "年化利率")]
|
27
|
26
|
[StringLength(64)]
|
28
|
27
|
public string YearInterestRate { get; set; }
|
29
|
28
|
/// <summary>
|
30
|
29
|
/// 日化利率
|
31
|
30
|
/// </summary>
|
32
|
|
- [Invisible]
|
33
|
31
|
[Display(Name = "日化利率")]
|
34
|
32
|
[StringLength(64)]
|
35
|
33
|
public string DayInterestRate { get; set; }
|
36
|
34
|
/// <summary>
|
37
|
35
|
///适用日期
|
38
|
36
|
/// </summary>
|
39
|
|
- [Invisible]
|
40
|
37
|
[Display(Name = "适用日期")]
|
41
|
38
|
public DateTime DateTime { get; set; }
|
42
|
39
|
/// <summary>
|
43
|
40
|
/// 险种名称
|
44
|
41
|
/// </summary>
|
45
|
42
|
[NotMapped]
|
|
43
|
+ [Display(Name = "险种")]
|
46
|
44
|
public string TypeName { get; set; }
|
47
|
45
|
|
48
|
46
|
}
|