| | |
| | | package com.gkhy.exam.system.mapper; |
| | | |
| | | import com.baomidou.mybatisplus.core.mapper.BaseMapper; |
| | | import com.gkhy.exam.system.domain.CompanyIndustryTemplate; |
| | | import com.gkhy.exam.system.domain.StandardizedTemplate; |
| | | import org.apache.ibatis.annotations.Param; |
| | | import org.mapstruct.Mapper; |
| | |
| | | List<StandardizedTemplate> selectStandardizedTemplateListV2(StandardizedTemplate template); |
| | | |
| | | int updateStandardizedTemplateById(StandardizedTemplate template); |
| | | |
| | | int insertBatch(@Param("standardizedTemplates") List<StandardizedTemplate> standardizedTemplates); |
| | | |
| | | } |