| | |
| | | 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 ids |
| | | */ |
| | | void delAllTech(String ids); |
| | | |
| | | /** |
| | | * 导出 |
| | | * @param response |
| | | * @param type |
| | | */ |
| | | void downloadDataValueExcel(HttpServletResponse response, String type); |
| | | } |
| | | |