开始对接后台
This commit is contained in:
24
ZR.Admin.WebApi/Controllers/mes/pro/ProWorkplanController.cs
Normal file
24
ZR.Admin.WebApi/Controllers/mes/pro/ProWorkplanController.cs
Normal file
@@ -0,0 +1,24 @@
|
||||
using Microsoft.AspNetCore.Mvc;
|
||||
using ZR.Model.mes.md;
|
||||
using ZR.Service.MES.md;
|
||||
|
||||
namespace ZR.Admin.WebApi.Controllers.MES.pro
|
||||
{
|
||||
|
||||
|
||||
[Route("mes/pro/workplan")]
|
||||
public class ProWorkplanController : BaseController
|
||||
{
|
||||
|
||||
[HttpGet("list")]
|
||||
public IActionResult List(int pageNum, int pageSize, int year , int week,string partNumber="",string color="")
|
||||
{
|
||||
(int, List<MdBom>) data = (0,null);
|
||||
|
||||
return ToResponse(new ApiResult(200, "success", data));
|
||||
}
|
||||
|
||||
|
||||
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user