123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566 |
- package com.sooka.mapper;
- import com.baomidou.dynamic.datasource.annotation.DS;
- import com.sooka.model.bo.TgjjKjhzb;
- import org.apache.ibatis.annotations.Mapper;
- import java.util.List;
- /**
- * 【请填写功能名称】Mapper接口
- *
- * @author lei
- * @date 2021-11-15
- */
- @Mapper
- @DS("db1_gjj")
- public interface TgjjKjhzbMapper
- {
- /**
- * 查询【请填写功能名称】
- *
- * @param ID 【请填写功能名称】ID
- * @return 【请填写功能名称】
- */
- public TgjjKjhzb selectTgjjKjhzbById(Long ID);
- /**
- * 查询【请填写功能名称】列表
- *
- * @param tgjjKjhzb 【请填写功能名称】
- * @return 【请填写功能名称】集合
- */
- public List<TgjjKjhzb> selectTgjjKjhzbList(TgjjKjhzb tgjjKjhzb);
- /**
- * 新增【请填写功能名称】
- *
- * @param tgjjKjhzb 【请填写功能名称】
- * @return 结果
- */
- public int insertTgjjKjhzb(TgjjKjhzb tgjjKjhzb);
- /**
- * 修改【请填写功能名称】
- *
- * @param tgjjKjhzb 【请填写功能名称】
- * @return 结果
- */
- public int updateTgjjKjhzb(TgjjKjhzb tgjjKjhzb);
- /**
- * 删除【请填写功能名称】
- *
- * @param ID 【请填写功能名称】ID
- * @return 结果
- */
- public int deleteTgjjKjhzbById(Long ID);
- /**
- * 批量删除【请填写功能名称】
- *
- * @param IDs 需要删除的数据ID
- * @return 结果
- */
- public int deleteTgjjKjhzbByIds(String[] IDs);
- }
|