XMTT 6 gadi atpakaļ
vecāks
revīzija
9ee53a2b26

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

@ -73,14 +73,14 @@ public interface EnvDataDao {
73 73
    @UpdateWith
74 74
    @From(EnvTransducer.class)
75 75
    @SetSentence("active = '0'")
76
    @Where("active = '1")
76
    @Where("active = '1'")
77 77
    @IncludeFixSet("modifyTime")
78 78
    int logicDeleteTransducer(Connection con, @Set String modifier, String id) throws SQLException;
79 79
80 80
    @UpdateWith
81 81
    @From(EnvTransducer.class)
82 82
    @SetSentence("active = '0'")
83
    @Where("active = '1")
83
    @Where("active = '1'")
84 84
    @IncludeFixSet("modifyTime")
85 85
    int logicDeleteTranByServers(Connection con, @Set String modifier, @In String[] serverId) throws SQLException;
86 86