zss
2023-09-21 2dbc49184bd74845c8da694c20d6fd03d7ac87e0
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
package com.yuanchu.mom.mapper;
 
import com.yuanchu.mom.mybatis_config.MyBaseMapper;
import com.yuanchu.mom.pojo.Opinion;
import com.baomidou.mybatisplus.core.mapper.BaseMapper;
import com.yuanchu.mom.pojo.dto.UpdateInspectUnacceptedDto;
 
import java.util.List;
import java.util.Map;
 
/**
 * <p>
 * 不合格处理意见表 Mapper 接口
 * </p>
 *
 * @author 江苏鵷雏网络科技有限公司
 * @since 2023-08-07 01:54:28
 */
public interface OpinionMapper extends MyBaseMapper<Opinion> {
 
    List<UpdateInspectUnacceptedDto> clickEditingTriggerQuery(Integer rawUnacceptedId);
 
    Integer updateOpinion(List<Opinion> opinion);
 
    List<Map<String, Object>> viewEditorialComments(Integer rawUnacceptedId);
}