25 lines
522 B
C#
25 lines
522 B
C#
|
|
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));
|
|||
|
|
}
|
|||
|
|
|
|||
|
|
|
|||
|
|
|
|||
|
|
}
|
|||
|
|
}
|