lyh
2026-01-19 6141f0a2140439337dccf8bfe93c4ca83605446d
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
package com.lxzn.api.mes;
 
import com.lxzn.framework.domain.mes.MesDispatchTask;
import com.lxzn.framework.domain.mes.request.MesDispatchTaskRequest;
import com.lxzn.framework.domain.plm.QueryNcProgramLog;
import com.lxzn.framework.domain.plm.request.PdmProgramSourceRequest;
import com.lxzn.framework.model.response.QueryPageResponseResult;
import com.lxzn.framework.model.response.ResponseResult;
import io.swagger.annotations.ApiImplicitParam;
import io.swagger.annotations.ApiImplicitParams;
import io.swagger.annotations.ApiOperation;
 
/**
 * @author clown
 * * @date 2022/11/8
 */
public interface MesDispatchTaskControllerApi {
    @ApiOperation("Mes派工清单")
    @ApiImplicitParams({
            @ApiImplicitParam(name="page",value = "页码",required=true,paramType="path",dataType="int"),
            @ApiImplicitParam(name="size",value = "每页记录数",required=true,paramType="path",dataType="int")
    })
    QueryPageResponseResult<MesDispatchTask> findPageList(int page, int size,
                                                          MesDispatchTaskRequest sourceRequest);
 
 
    @ApiOperation("下发NC程序")
    ResponseResult ncSendingFromMes(String id);
}