| | |
| | | import com.yuanchu.mom.pojo.TechnicalModel; |
| | | import com.yuanchu.mom.pojo.dto.TechnicalModelDto; |
| | | |
| | | import javax.servlet.http.HttpServletResponse; |
| | | import java.util.List; |
| | | import java.util.Map; |
| | | |
| | |
| | | * @param message |
| | | * @return |
| | | */ |
| | | List<Map<String, Object>> selectAllTechTem(Integer type, String message); |
| | | List<Map<String, Object>> selectAllTechTem(String type, String message); |
| | | |
| | | /** |
| | | * 查询技术指标维护列表-->右边展示该工艺下的检验项目 |
| | |
| | | * |
| | | * @return |
| | | */ |
| | | List<Map<String, Object>> chooseTechFath(Integer type); |
| | | List<Map<String, Object>> chooseTechFath(String type); |
| | | |
| | | /** |
| | | * 新增技术指标维护-->选择项目(父类) |
| | |
| | | * |
| | | * @param technicalModelDto |
| | | */ |
| | | void addTechMode(Integer id, TechnicalModelDto technicalModelDto); |
| | | void addTechMode(TechnicalModelDto technicalModelDto); |
| | | |
| | | /** |
| | | * 根据id查询详情 |
| | | * |
| | | * @param id 技术指标id |
| | | * @return |
| | | */ |
| | | List<Map<String,Object>> selecTechById(Integer id); |
| | | List<Map<String, Object>> selecTechById(Integer id); |
| | | |
| | | /** |
| | | * 编辑 |
| | | * @param id |
| | | * |
| | | * @param technicalModelDto |
| | | */ |
| | | void writeTechById(Integer id, TechnicalModelDto technicalModelDto); |
| | | |
| | | /** |
| | | * 删除 |
| | | * |
| | | * @param id |
| | | */ |
| | | void delTechById(Integer id); |
| | | |
| | | /** |
| | | * 批量删除 |
| | | * |
| | | * @param ids |
| | | */ |
| | | void delAllTech(String ids); |
| | | |
| | | /** |
| | | * 导出 |
| | | * @param response |
| | | * @param type |
| | | */ |
| | | void downloadDataValueExcel(HttpServletResponse response, String type); |
| | | } |
| | | |