12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061 |
- package com.sooka.system.mapper;
- import java.util.List;
- import com.sooka.system.domain.TgjjBsxx;
- /**
- * 【请填写功能名称】Mapper接口
- *
- * @author lei
- * @date 2021-11-15
- */
- public interface TgjjBsxxMapper
- {
- /**
- * 查询【请填写功能名称】
- *
- * @param ID 【请填写功能名称】ID
- * @return 【请填写功能名称】
- */
- public TgjjBsxx selectTgjjBsxxById(Long ID);
- /**
- * 查询【请填写功能名称】列表
- *
- * @param tgjjBsxx 【请填写功能名称】
- * @return 【请填写功能名称】集合
- */
- public List<TgjjBsxx> selectTgjjBsxxList(TgjjBsxx tgjjBsxx);
- /**
- * 新增【请填写功能名称】
- *
- * @param tgjjBsxx 【请填写功能名称】
- * @return 结果
- */
- public int insertTgjjBsxx(TgjjBsxx tgjjBsxx);
- /**
- * 修改【请填写功能名称】
- *
- * @param tgjjBsxx 【请填写功能名称】
- * @return 结果
- */
- public int updateTgjjBsxx(TgjjBsxx tgjjBsxx);
- /**
- * 删除【请填写功能名称】
- *
- * @param ID 【请填写功能名称】ID
- * @return 结果
- */
- public int deleteTgjjBsxxById(Long ID);
- /**
- * 批量删除【请填写功能名称】
- *
- * @param IDs 需要删除的数据ID
- * @return 结果
- */
- public int deleteTgjjBsxxByIds(String[] IDs);
- }
|