Pārlūkot izejas kodu

除湿系统信息导出excel

XMTT 6 gadi atpakaļ
vecāks
revīzija
75fa18cbe0

+ 3 - 1
src/main/java/com/ekexiu/project/bridge/envdata/EnvDataDao.java

@ -1,6 +1,7 @@
1 1
package com.ekexiu.project.bridge.envdata;
2 2
3 3
import org.jfw.apt.annotation.Nullable;
4
import org.jfw.apt.orm.annotation.dao.Batch;
4 5
import org.jfw.apt.orm.annotation.dao.DAO;
5 6
import org.jfw.apt.orm.annotation.dao.method.Exclude;
6 7
import org.jfw.apt.orm.annotation.dao.method.From;
@ -86,7 +87,8 @@ public interface EnvDataDao {
86 87
    @SetSentence("active = '0'")
87 88
    @Where("active = '1'")
88 89
    @IncludeFixSet("modifyTime")
89
    int logicDeleteTranByServers(Connection con, @Set String modifier, @In String[] serverId) throws SQLException;
90
    @Batch
91
    int logicDeleteTranByServers(Connection con, @Set String modifier, @Batch String[] serverId) throws SQLException;
90 92
91 93
    @Update
92 94
    @Exclude("active")