|
|
@ -1,10 +1,6 @@
|
|
|
|
package com.xit.biz.ctgy.v2.repository;
|
|
|
|
package com.xit.biz.ctgy.v2.repository;
|
|
|
|
|
|
|
|
|
|
|
|
import com.xit.biz.ctgy.dto.DashboardJudgeListDto;
|
|
|
|
import com.xit.biz.ctgy.dto.*;
|
|
|
|
import com.xit.biz.ctgy.dto.GnRecallScDto;
|
|
|
|
|
|
|
|
import com.xit.biz.ctgy.dto.JudgeListDto;
|
|
|
|
|
|
|
|
import com.xit.biz.ctgy.dto.JudgeTargetDto;
|
|
|
|
|
|
|
|
import com.xit.biz.ctgy.dto.MinSimsaUser680ScDto;
|
|
|
|
|
|
|
|
import com.xit.core.config.database.BaseMpowerDaoSupport;
|
|
|
|
import com.xit.core.config.database.BaseMpowerDaoSupport;
|
|
|
|
import com.xit.core.oauth2.config.properties.MasterDatabaseProperties;
|
|
|
|
import com.xit.core.oauth2.config.properties.MasterDatabaseProperties;
|
|
|
|
import com.xit.core.oauth2.config.properties.SlaveDatabaseProperties;
|
|
|
|
import com.xit.core.oauth2.config.properties.SlaveDatabaseProperties;
|
|
|
@ -296,6 +292,7 @@ public class ResidentAndDisabledDao extends BaseMpowerDaoSupport {
|
|
|
|
.setParameter("scContad6", dto.getScContad6())
|
|
|
|
.setParameter("scContad6", dto.getScContad6())
|
|
|
|
.setParameter("scContad7", dto.getScContad7())
|
|
|
|
.setParameter("scContad7", dto.getScContad7())
|
|
|
|
.setParameter("scContad8", dto.getScContad8())
|
|
|
|
.setParameter("scContad8", dto.getScContad8())
|
|
|
|
|
|
|
|
.setParameter("scAnswer", dto.getScAnswer())
|
|
|
|
.getQueryString();
|
|
|
|
.getQueryString();
|
|
|
|
|
|
|
|
|
|
|
|
}
|
|
|
|
}
|
|
|
@ -333,4 +330,17 @@ public class ResidentAndDisabledDao extends BaseMpowerDaoSupport {
|
|
|
|
.getQueryString();
|
|
|
|
.getQueryString();
|
|
|
|
update(sql);
|
|
|
|
update(sql);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
public void updateDateByMsuYear(@NotNull final JudgeDetailDto dto) {
|
|
|
|
|
|
|
|
final String sql = QueryGenerator.createNamedQuery(NAME_SPACE, "updateDateByMsuYear")
|
|
|
|
|
|
|
|
.setParameter("msDatagb", dto.getMsDatagb())
|
|
|
|
|
|
|
|
.setParameter("msYear", dto.getMsYear())
|
|
|
|
|
|
|
|
.setParameter("msChasu", dto.getMsChasu())
|
|
|
|
|
|
|
|
.setParameter("msSdate", dto.getMsSdate())
|
|
|
|
|
|
|
|
.setParameter("msEdate", dto.getMsEdate())
|
|
|
|
|
|
|
|
.setParameter("msCdate", dto.getMsCdate())
|
|
|
|
|
|
|
|
.setParameter("msClosesi", dto.getMsClosesi())
|
|
|
|
|
|
|
|
.getQueryString();
|
|
|
|
|
|
|
|
update(sql);
|
|
|
|
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|