| | |
| | | |
| | | IPage<StandardTemplate> selectStandardTemplatePageList(Page page, @Param("ew") QueryWrapper<StandardTemplate> ew); |
| | | |
| | | StandardTemplate getStandTempIdByName(String name); |
| | | StandardTemplate getStandTempIdByName(@Param("name") String name); |
| | | |
| | | /** |
| | | * 查询压缩后的数据 |
| | | * @param templateId |
| | | * @return |
| | | */ |
| | | String selectCompressThing(Integer templateId); |
| | | String selectCompressThing(@Param("templateId") Integer templateId); |
| | | |
| | | /** |
| | | * 绑定该模板检验项参数统计 |
| | | * |
| | | * @param templateId |
| | | * @return |
| | | */ |
| | | int countBindTemplateItemParameter(@Param("templateId") Integer templateId); |
| | | } |
| | | |
| | | |