futian.liu
2023-12-22 3e9a4b3480e6508f3c6f7ac8723509d8b1120d20
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
30
31
32
package com.consum.base.service;
 
import java.util.List;
import java.util.Map;
 
import com.consum.base.pojo.LDeptFormScrappedParam;
import com.consum.base.pojo.query.LDeptFormScrappedQry;
import com.consum.base.pojo.response.DepFormScrappedExtendVo;
import com.consum.model.po.FinSysTenantUser;
import com.iplatform.model.po.S_user_core;
import com.walker.db.page.GenericPager;
import com.walker.jdbc.service.BaseService;
 
/**
 * DepFormScrappedService
 *
 * @author asus
 * @version 2023/12/22 10:48
 **/
public interface DepFormScrappedService extends BaseService {
    void add(LDeptFormScrappedParam param, S_user_core currentUser, FinSysTenantUser sysInfo) throws Exception;
 
    GenericPager<Map<String, Object>> queryList(LDeptFormScrappedQry param);
 
    DepFormScrappedExtendVo getById(Long id);
 
    List<Map<String, Object>> export(Long id, String agencyId);
 
    List<Map<String, Object>> listByModel(LDeptFormScrappedQry param);
 
    GenericPager<Map<String, Object>> listByModel2(LDeptFormScrappedQry param);
}