| 12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061 |
- package com.goafanti.techproject.service;
- import com.goafanti.common.model.TaskDetails;
- import com.goafanti.techproject.bo.TaskDetailsBo;
- /**
- * 项目申报详情(TaskDetails)表服务接口
- *
- * @author makejava
- * @since 2024-12-26 17:11:50
- */
- public interface TaskDetailsService {
- /**
- * 通过ID查询单条数据
- *
- * @param id 主键
- * @return 实例对象
- */
- TaskDetails queryById(Integer id);
- /**
- * 新增数据
- *
- * @param taskDetails 实例对象
- * @return 实例对象
- */
- TaskDetails insert(TaskDetails taskDetails);
- /**
- * 修改数据
- *
- * @param taskDetails 实例对象
- * @return 实例对象
- */
- TaskDetails update(TaskDetails taskDetails);
- /**
- * 通过主键删除数据
- *
- * @param id 主键
- * @return 是否成功
- */
- boolean deleteById(Integer id);
- /**
- * 列表数据
- *
- * @param in 参数
- * @return 是否成功
- */
- Object list(TaskDetails in, Integer pageNo, Integer pageSize);
- TaskDetailsBo getByTid(Integer id);
- Object export(Integer id);
- boolean checkTid(TaskDetails taskDetails);
- }
|