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
package com.lxzn.api.plm;
 
import com.lxzn.framework.domain.base.request.DncLogRequest;
import com.lxzn.framework.domain.plm.PdmProgramSource;
import com.lxzn.framework.domain.plm.QueryNcProgramLog;
import com.lxzn.framework.domain.plm.request.PdmProgramSourceRequest;
import com.lxzn.framework.model.response.QueryPageResponseResult;
import io.swagger.annotations.ApiImplicitParam;
import io.swagger.annotations.ApiImplicitParams;
import io.swagger.annotations.ApiOperation;
 
/**
 * @author clown
 * * @date 2022/11/8
 */
public interface PdmProgramSourceControllerApi {
    @ApiOperation("plm程序日志清单")
    @ApiImplicitParams({
            @ApiImplicitParam(name="page",value = "页码",required=true,paramType="path",dataType="int"),
            @ApiImplicitParam(name="size",value = "每页记录数",required=true,paramType="path",dataType="int")
    })
    QueryPageResponseResult<PdmProgramSource> findPageList(int page, int size,
                                                           PdmProgramSourceRequest sourceRequest);
 
}