12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061 |
- package com.sooka.system.service;
- import java.util.List;
- import com.sooka.system.domain.TgjjGrdkzhxx;
- /**
- * 【请填写功能名称】Service接口
- *
- * @author lei
- * @date 2021-11-15
- */
- public interface ITgjjGrdkzhxxService
- {
- /**
- * 查询【请填写功能名称】
- *
- * @param ID 【请填写功能名称】ID
- * @return 【请填写功能名称】
- */
- public TgjjGrdkzhxx selectTgjjGrdkzhxxById(Long ID);
- /**
- * 查询【请填写功能名称】列表
- *
- * @param tgjjGrdkzhxx 【请填写功能名称】
- * @return 【请填写功能名称】集合
- */
- public List<TgjjGrdkzhxx> selectTgjjGrdkzhxxList(TgjjGrdkzhxx tgjjGrdkzhxx);
- /**
- * 新增【请填写功能名称】
- *
- * @param tgjjGrdkzhxx 【请填写功能名称】
- * @return 结果
- */
- public int insertTgjjGrdkzhxx(TgjjGrdkzhxx tgjjGrdkzhxx);
- /**
- * 修改【请填写功能名称】
- *
- * @param tgjjGrdkzhxx 【请填写功能名称】
- * @return 结果
- */
- public int updateTgjjGrdkzhxx(TgjjGrdkzhxx tgjjGrdkzhxx);
- /**
- * 批量删除【请填写功能名称】
- *
- * @param ids 需要删除的数据ID
- * @return 结果
- */
- public int deleteTgjjGrdkzhxxByIds(String ids);
- /**
- * 删除【请填写功能名称】信息
- *
- * @param ID 【请填写功能名称】ID
- * @return 结果
- */
- public int deleteTgjjGrdkzhxxById(Long ID);
- }
|