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
package com.lxzn.base.service;
 
import com.baomidou.mybatisplus.extension.service.IService;
import com.lxzn.framework.domain.base.DncLog;
import com.lxzn.framework.domain.base.MultilevelDictionary;
import com.lxzn.framework.domain.base.request.DncLogRequest;
import com.lxzn.framework.domain.base.request.MultilevelDictionaryRequest;
import com.lxzn.framework.model.response.QueryPageResponseResult;
 
/**
 * @author clown
 * * @date 2022/11/7
 */
public interface IDncLogService extends IService<DncLog> {
    /**
     * 分页查询
     * @param page
     * @param size
     * @param requestParams
     * @return
     */
    QueryPageResponseResult<DncLog> findByPageList(int page, int size, DncLogRequest requestParams);
 
 
    DncLog findOneDncMesTask(String mesTaskId);
 
}