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
package com.lxzn.api.base;
 
import com.lxzn.framework.domain.base.DncLog;
import com.lxzn.framework.domain.base.MultilevelDictionary;
import com.lxzn.framework.domain.base.ext.MultilevelDictionaryExt;
import com.lxzn.framework.domain.base.request.DncLogRequest;
import com.lxzn.framework.domain.base.request.MultilevelDictionaryRequest;
import com.lxzn.framework.model.response.QueryPageResponseResult;
import io.swagger.annotations.Api;
import io.swagger.annotations.ApiImplicitParam;
import io.swagger.annotations.ApiImplicitParams;
import io.swagger.annotations.ApiOperation;
 
/**
 * @author clown
 * * @date 2022/11/7
 */
@Api(value = "plm||MES日志",description = "plm||MES日志")
public interface DncLogControllerApi {
 
    @ApiOperation("plm||MES日志查询")
    @ApiImplicitParams({
            @ApiImplicitParam(name="page",value = "页码",required=true,paramType="path",dataType="int"),
            @ApiImplicitParam(name="size",value = "每页记录数",required=true,paramType="path",dataType="int")
    })
    QueryPageResponseResult<DncLog> findPageList(int page, int size, DncLogRequest dncLogRequest);
 
}