Compare commits

..

No commits in common. "953e2d1fd385fed1eaade090d4ac8f97f8a6e82e" and "d5236e060bfbf685e7e363beea6fda60d2b4dc90" have entirely different histories.

2 changed files with 2 additions and 3 deletions

@ -1 +1 @@
Subproject commit b216091ec2eb44d0913f8ff776b612a69efa5edf Subproject commit 46e75b4e1cb8bd737c0921d58177516f65a54eaa

View File

@ -9,7 +9,6 @@ using System.Threading.Tasks;
namespace JiShe.IoT.Controllers namespace JiShe.IoT.Controllers
{ {
[Route("Common")]
public class CommonController:IoTController public class CommonController:IoTController
{ {
private readonly ICommonService _commonService; private readonly ICommonService _commonService;
@ -23,7 +22,7 @@ namespace JiShe.IoT.Controllers
/// </summary> /// </summary>
/// <param name="input"></param> /// <param name="input"></param>
/// <returns></returns> /// <returns></returns>
[HttpGet("GetSelectList")] [HttpGet("get-select-list")]
[SwaggerOperation(summary: "根据type名称获取下拉框数据", Tags = new[] { "Common" })] [SwaggerOperation(summary: "根据type名称获取下拉框数据", Tags = new[] { "Common" })]
public List<SelectResult> GetSelectResultList(SelectResultListInput input) public List<SelectResult> GetSelectResultList(SelectResultListInput input)
{ {