报表删除
This commit is contained in:
parent
0749fffcdb
commit
1cbb889748
|
|
@ -1,6 +1,7 @@
|
|||
package com.engine.salary.mapper.report;
|
||||
|
||||
import com.engine.salary.report.entity.po.SalaryStatisticsDimensionPO;
|
||||
import org.apache.ibatis.annotations.Param;
|
||||
|
||||
import java.util.List;
|
||||
|
||||
|
|
@ -61,5 +62,5 @@ public interface SalaryStatisticsDimensionMapper {
|
|||
*/
|
||||
int delete(SalaryStatisticsDimensionPO salaryStatsDim);
|
||||
|
||||
void batDelete(List<Long> deleteIds);
|
||||
void batDelete(@Param("ids") List<Long> ids);
|
||||
}
|
||||
|
|
@ -291,7 +291,8 @@
|
|||
<delete id="batDelete" parameterType="com.engine.salary.report.entity.po.SalaryStatisticsDimensionPO">
|
||||
UPDATE hrsa_salary_stats_dim
|
||||
SET delete_type=1
|
||||
WHERE id IN
|
||||
WHERE
|
||||
id IN
|
||||
<foreach collection="ids" open="(" item="id" separator="," close=")">
|
||||
#{id}
|
||||
</foreach>
|
||||
|
|
|
|||
Loading…
Reference in New Issue