guoshilong
2024-03-31 a4cd27af8c445e2b043aa146ee38f04222c992e7
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
package cn.gistack.sm.sjztdw.mapper;
 
import cn.gistack.sm.sjztdw.entity.DwsResPressDi;
import cn.gistack.sm.sjztdw.entity.DwsResSlDi;
import cn.gistack.sm.sjztdw.vo.DbExcelVO;
import com.baomidou.dynamic.datasource.annotation.DS;
import com.baomidou.mybatisplus.core.mapper.BaseMapper;
import org.apache.ibatis.annotations.Param;
 
/**
 * AddAdBaseMapper 接口
 *
 * @author Chill
 */
@DS("ztdw")
public interface DwsResSlDiMapper extends BaseMapper<DwsResSlDi> {
 
 
    Integer updateCustomize(@Param("entity") DwsResSlDi dwsResSlDi);
 
    Integer updateByBasic(@Param("entity") DbExcelVO dbExcel);
 
    Integer removeByBasic(@Param("entity") DbExcelVO dbExcelVO);
}