zmm 6 years ago
parent
commit
7138222fcd

+ 16 - 0
CZKJ.GBRS2.WebMVC/Controllers/PriceAnnouncementController.cs

@@ -0,0 +1,16 @@
1
+using System;
2
+using System.Collections.Generic;
3
+using System.Linq;
4
+using System.Threading.Tasks;
5
+using Microsoft.AspNetCore.Mvc;
6
+
7
+namespace CZKJ.GBRS2.WebMVC.Controllers
8
+{
9
+    public class PriceAnnouncementController : Controller
10
+    {
11
+        public IActionResult Index()
12
+        {
13
+            return View();
14
+        }
15
+    }
16
+}

+ 1 - 0
CZKJ.GBRS2/Entity/PriceAnnouncementEntity.cs

@@ -41,6 +41,7 @@ namespace CZKJ.GBRS2.Entity
41 41
         /// </summary>
42 42
         [NotMapped]
43 43
         [Display(Name = "险种")]
44
+        [Invisible(TableVisible =true)]
44 45
         public string TypeName { get; set; }
45 46
 
46 47
     }