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
package cn.gistack.sm.sjztdw.mapper;
 
import cn.gistack.sm.sjztdw.entity.DwsResFormDi;
import cn.gistack.sm.sjztdw.excel.DbExcel;
import cn.gistack.sm.sjztdw.vo.DbExcelVO;
import cn.gistack.sm.sjztmd.vo.AttResAdVO;
import com.baomidou.dynamic.datasource.annotation.DS;
import com.baomidou.mybatisplus.core.mapper.BaseMapper;
import org.apache.ibatis.annotations.Param;
 
@DS("ztdw")
public interface DwsResFormDiMapper extends BaseMapper<DwsResFormDi> {
 
 
    Integer save(@Param("excel") DbExcel dbExcel,@Param("res") AttResAdVO resAd,@Param("ch") String ch);
 
    Integer edit(@Param("entity") DbExcelVO dbExcel);
 
    Integer remove(@Param("entity")DbExcelVO dbExcelVO);
 
    Integer updateCustomize(@Param("excel") DbExcel dbExcel,@Param("res") AttResAdVO resAd, @Param("ch") String ch);
}