| | |
| | | import com.baomidou.mybatisplus.extension.service.IService; |
| | | import com.yuanchu.mom.pojo.TechnologyTemplate; |
| | | import com.yuanchu.mom.pojo.dto.TechnologyTemplateDto; |
| | | import com.yuanchu.mom.pojo.vo.TechnologyTemplateVo1; |
| | | |
| | | import java.util.List; |
| | | import java.util.Map; |
| | |
| | | * @param type |
| | | * @return |
| | | */ |
| | | IPage<Map<String, Object>> selTech(Page<Object> page, String element, String father, Integer type); |
| | | List<TechnologyTemplateVo1> selTech(String element, String father, Integer type); |
| | | |
| | | /** |
| | | * 根据id查询详情 |
| | | * @param id |
| | | * @return |
| | | */ |
| | | TechnologyTemplateDto selTechById(Integer id); |
| | | |
| | | /** |
| | | * 根据id修改 |
| | | * @param id |
| | | * @param technologyTemplateDto |
| | | */ |
| | | void updaTechById(Integer id, TechnologyTemplateDto technologyTemplateDto); |
| | | |
| | | /** |
| | | * 根据id删除 |
| | | * @param id |
| | | */ |
| | | void delTech(Integer id); |
| | | |
| | | /** |
| | | * 批量删除 |
| | | * @param ids |
| | | */ |
| | | void delAllTech(List<Integer> ids); |
| | | } |
| | | |