refactor(rule): 移除IMS数据源相关代码
This commit is contained in:
parent
3a6141761f
commit
68cee38aab
|
|
@ -1,6 +1,5 @@
|
|||
package nc.bs.ic.m4d.sign.rule;
|
||||
|
||||
import nc.bs.dao.BaseDAO;
|
||||
import nc.bs.logging.Log;
|
||||
import nc.bs.uapbd.util.GyImsDbUtil;
|
||||
import nc.bs.uapbd.util.MyHelper;
|
||||
|
|
@ -24,25 +23,11 @@ import java.util.stream.Collectors;
|
|||
public class UpdateGyimsRule implements IRule<MaterialOutVO> {
|
||||
private static final String LOG_INFO_NAME = "gyimslog";
|
||||
private static final Log logger = Log.getInstance(LOG_INFO_NAME);
|
||||
// IMS数据源
|
||||
public BaseDAO imsDao;
|
||||
private Map<String, String> configParams;
|
||||
|
||||
public UpdateGyimsRule() {
|
||||
}
|
||||
|
||||
/**
|
||||
* 获取IMS数据源
|
||||
*/
|
||||
public BaseDAO getImsDao() {
|
||||
if (imsDao == null) {
|
||||
imsDao = new BaseDAO("gyims");
|
||||
// 禁用时间戳ts
|
||||
imsDao.setAddTimeStamp(false);
|
||||
}
|
||||
return imsDao;
|
||||
}
|
||||
|
||||
@Override
|
||||
public void process(MaterialOutVO[] materialOutVOS) {
|
||||
Set<String> imsIdSet = new HashSet<>();
|
||||
|
|
|
|||
Loading…
Reference in New Issue