ZQN
2024-06-19 e59e6a8a2fcf3ac2194a69927cd5690453a83e91
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
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
package com.project.enforce.service;
 
import com.project.common.mybatis.IBaseService;
import com.project.enforce.domain.EnforceComplaintLog;
import com.project.enforce.domain.bo.editBo.EnforceComplaintLogBo;
import com.project.enforce.domain.bo.queryBo.EnforceComplaintLogQueryBo;
import com.project.enforce.domain.vo.EnforceComplaintLogVo;
 
import java.util.Collection;
import java.util.List;
 
/**
 * 投诉记录Service接口
 *
 * @author manton
 */
public interface IEnforceComplaintLogService extends IBaseService<EnforceComplaintLog> {
 
    /**
     * 查询列表
     */
    List<EnforceComplaintLogVo> queryList(EnforceComplaintLogQueryBo bo);
 
    /**
     * 查询单个
     * @return  EnforceComplaintLogVo
     */
    EnforceComplaintLogVo queryById(Long id);
 
 
    /**
     * 根据新增业务对象插入投诉记录
     * @param bo 投诉记录新增业务对象
     * @return  true成功 false失败
     */
    Boolean insertByBo(EnforceComplaintLogBo bo);
 
    /**
     * 根据编辑业务对象修改投诉记录
     * @param bo 投诉记录编辑业务对象
     * @return  true成功 false失败
     */
    Boolean updateByBo(EnforceComplaintLogBo bo);
 
    /**
     * 校验并删除数据
     * @param ids 主键集合
     * @return  true成功 false失败
     */
    Boolean deleteByIds(Collection<Long> ids);
}