添加HIS测试控制器,HIS接口控制器,万仕达接口控制器

This commit is contained in:
falcon 2019-02-28 16:29:23 +08:00
parent d4038e7c90
commit d8d8ec2889
3 changed files with 70 additions and 0 deletions

View File

@ -0,0 +1,20 @@
using System;
using System.Collections.Generic;
using System.Linq;
using System.Threading.Tasks;
using Microsoft.AspNetCore.Mvc;
// For more information on enabling MVC for empty projects, visit https://go.microsoft.com/fwlink/?LinkID=397860
namespace WebSiteCode.Controllers
{
/// <summary>
/// HIS端调用接口
/// </summary>
public class His : Controller
{
public IActionResult PostCF() {
}
}
}

View File

@ -0,0 +1,28 @@
using System;
using System.Collections.Generic;
using System.Linq;
using System.Threading.Tasks;
using Microsoft.AspNetCore.Mvc;
// For more information on enabling MVC for empty projects, visit https://go.microsoft.com/fwlink/?LinkID=397860
namespace WebSiteCode.Controllers
{
/// <summary>
/// His端测试方法。
/// </summary>
public class HisTest:Controller
{
public IActionResult Index() {
return View();
}
public IActionResult Get(string msg) {
return Json(new { msg,});
}
public IActionResult Post(string msg) {
return Json(new { msg });
}
}
}

View File

@ -0,0 +1,22 @@
using System;
using System.Collections.Generic;
using System.Linq;
using System.Threading.Tasks;
using Microsoft.AspNetCore.Mvc;
// For more information on enabling MVC for empty projects, visit https://go.microsoft.com/fwlink/?LinkID=397860
namespace WebSiteCode.Controllers
{
/// <summary>
/// 万仕达放调用接口
/// </summary>
public class Wsd : Controller
{
// GET: /<controller>/
public IActionResult Index()
{
return View();
}
}
}