Browse Source

yilaizhuru

zmm 6 years ago
parent
commit
9dfb81888e

+ 1 - 0
CZKJ.GBRS2.Web/DbGen.cs

@@ -52,5 +52,6 @@ namespace CZKJ.GBRS2.Web
52 52
 
53 53
         public DbSet<CustomerInfoEntity> customer { get; set; }
54 54
 
55
+        public DbSet<PriceAnnouncementEntity> priceAnnouncement { get; set; }
55 56
     }
56 57
 }

+ 1 - 1
CZKJ.GBRS2.Web/appsettings.json

@@ -13,7 +13,7 @@
13 13
   },
14 14
   "ConnectionStrings": {
15 15
     "Development": "Data Source=sp5045a8d445fe0.mysql.rds.aliyuncs.com;user id=gbrs2_dba;password=CZKJczkj2016gbrs2;Initial Catalog=gbrs2"
16
-   // "Development": "Data Source=47.94.162.74;user id=root;password=CZKJ!czkj)113$659#;Initial Catalog=gbrs2"
16
+    // "Development": "Data Source=47.94.162.74;user id=root;password=CZKJ!czkj)113$659#;Initial Catalog=gbrs2"
17 17
   },
18 18
   "FileLogging": {
19 19
     "DefaultPath": "log",

BIN
CZKJ.GBRS2.Web/wwwroot.zip


+ 2 - 4
CZKJ.GBRS2/Entity/PriceAnnouncementEntity.cs

@@ -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
     }

+ 1 - 0
CZKJ.GBRS2/ServiceConfiguration.cs

@@ -30,6 +30,7 @@ namespace CZKJ.GBRS2
30 30
             service.AddTransient<ICustomerQuery, CustomerQueryLogic>();
31 31
             service.AddTransient<IVideo, VideoLogic>();
32 32
             service.AddTransient<IUserInfoCustomer, UserInfoCustomerLogic>();
33
+            service.AddTransient<IPriceAnnouncement, PriceAnnouncementLogic>();
33 34
             return service;
34 35
         }
35 36
     }