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);
|
}
|