| | |
| | | import com.bstek.dorado.annotation.DataResolver; |
| | | import com.bstek.dorado.annotation.Expose; |
| | | import com.fzzy.api.data.ApiParam; |
| | | import com.fzzy.api.data.PushProtocol; |
| | | import com.fzzy.api.entity.Api1103; |
| | | import com.fzzy.api.entity.ApiConfs; |
| | | import com.fzzy.api.service.ApiCommonService; |
| | |
| | | |
| | | /** |
| | | * 仓房信息 |
| | | * |
| | | * @author he |
| | | */ |
| | | @Component |
| | | public class Api1103PR { |
| | | |
| | | @Autowired |
| | | private Api1103Rep api1103Rep; |
| | | @Autowired |
| | | private Api1103Rep api1103Rep; |
| | | |
| | | @Autowired |
| | | private ApiCommonService apiCommonService; |
| | | @Autowired |
| | | private ApiCommonService apiCommonService; |
| | | |
| | | @Autowired |
| | | private ApiPushManager apiPushManager; |
| | | @Autowired |
| | | private ApiPushManager apiPushManager; |
| | | |
| | | /** |
| | | * api1103PR#listAll |
| | | * |
| | | * @return |
| | | */ |
| | | @DataProvider |
| | | public List<Api1103> listAll() { |
| | | return api1103Rep.findAll(); |
| | | } |
| | | /** |
| | | * api1103PR#listAll |
| | | * |
| | | * @return |
| | | */ |
| | | @DataProvider |
| | | public List<Api1103> listAll() { |
| | | return api1103Rep.findAll(); |
| | | } |
| | | |
| | | /** |
| | | * api1103PR#updateSave |
| | | * |
| | | * @param entity |
| | | */ |
| | | @DataResolver |
| | | public void updateSave(Api1103 entity) { |
| | | /** |
| | | * api1103PR#updateSave |
| | | * |
| | | * @param entity |
| | | */ |
| | | @DataResolver |
| | | public void updateSave(Api1103 entity) { |
| | | |
| | | // 手动将doradoEntity对象转换为标准Bean对象 |
| | | Api1103 data = new Api1103(); |
| | | BeanUtils.copyProperties(entity, data); |
| | | data.setCfdm(data.getCfdm().trim()); |
| | | api1103Rep.save(data); |
| | | // 手动将doradoEntity对象转换为标准Bean对象 |
| | | Api1103 data = new Api1103(); |
| | | BeanUtils.copyProperties(entity, data); |
| | | data.setCfdm(data.getCfdm().trim()); |
| | | api1103Rep.save(data); |
| | | |
| | | //刷新缓存 |
| | | apiCommonService.flushApi1103Cache(listAll()); |
| | | } |
| | | //刷新缓存 |
| | | apiCommonService.flushApi1103Cache(listAll()); |
| | | } |
| | | |
| | | /** |
| | | * api1103PR#delData |
| | | * |
| | | * @param data |
| | | */ |
| | | @Expose |
| | | public String delData(Api1103 data) { |
| | | /** |
| | | * api1103PR#delData |
| | | * |
| | | * @param data |
| | | */ |
| | | @Expose |
| | | public String delData(Api1103 data) { |
| | | |
| | | api1103Rep.deleteById(data.getCfdm()); |
| | | api1103Rep.deleteById(data.getCfdm()); |
| | | |
| | | return null; |
| | | } |
| | | return null; |
| | | } |
| | | |
| | | /** |
| | | * |
| | | * 更新删除标记 api1103PR#delUpdate |
| | | * |
| | | * @param entity |
| | | */ |
| | | @Expose |
| | | public String delUpdate(Api1103 entity) { |
| | | /** |
| | | * 更新删除标记 api1103PR#delUpdate |
| | | * |
| | | * @param entity |
| | | */ |
| | | @Expose |
| | | public String delUpdate(Api1103 entity) { |
| | | |
| | | entity.setCzbz(Constant.CZBZ_D); |
| | | entity.setCzbz(Constant.CZBZ_D); |
| | | |
| | | Api1103 data = new Api1103(); |
| | | BeanUtils.copyProperties(entity, data); |
| | | Api1103 data = new Api1103(); |
| | | BeanUtils.copyProperties(entity, data); |
| | | |
| | | api1103Rep.save(data); |
| | | return null; |
| | | } |
| | | api1103Rep.save(data); |
| | | return null; |
| | | } |
| | | |
| | | /** |
| | | * api1103PR#pushData |
| | | * |
| | | * @param items |
| | | */ |
| | | @Expose |
| | | public String pushData(List<Api1103> items) { |
| | | ResponseDto responseDto; |
| | | String result = ""; |
| | | /** |
| | | * api1103PR#pushData |
| | | * |
| | | * @param items |
| | | */ |
| | | @Expose |
| | | public String pushData(List<Api1103> items) { |
| | | |
| | | //获取配置 |
| | | String kqdm = items.get(0).getKqdm(); |
| | | ApiConfs apiConf = apiCommonService.getConf(kqdm); |
| | | //获取配置 |
| | | String kqdm = items.get(0).getKqdm(); |
| | | ApiConfs apiConf = apiCommonService.getConf(kqdm); |
| | | |
| | | if (null == apiConf) return "系统没有获取到当前库区配置信息,执行失败"; |
| | | if (null == apiConf) return "系统没有获取到当前库区配置信息,执行失败"; |
| | | |
| | | //封装参数 |
| | | ApiParam param = new ApiParam(apiConf, Constant.API_CATEGORY_11, Constant.API_CODE_1103); |
| | | //获取实现接口 |
| | | ApiRemoteService apiRemoteService = apiPushManager.getApiRemoteService(apiConf.getPushProtocol()); |
| | | if (null == apiRemoteService) return "系统没有当前推送协议配置,执行失败"; |
| | | |
| | | //获取实现接口 |
| | | ApiRemoteService apiRemoteService = apiPushManager.getApiRemoteService(param.getPushProtocol()); |
| | | if (null == apiRemoteService) return "系统没有当前推送协议配置,执行失败"; |
| | | if (PushProtocol.SB_SH_2023.getCode().equals(apiConf.getPushProtocol())) { |
| | | return pushDataList(items, apiRemoteService, apiConf); |
| | | } |
| | | return pushDataSingle(items, apiRemoteService, apiConf); |
| | | } |
| | | |
| | | Api1103 d; |
| | | for (Api1103 data : items) { |
| | | d = new Api1103(); |
| | | BeanUtils.copyProperties(data, d); |
| | | param.setBizId(data.getBizId()); |
| | | responseDto = apiRemoteService.pushData(param, apiConf, d); |
| | | /** |
| | | * 单条数据json推送 |
| | | * |
| | | * @param items |
| | | * @param apiRemoteService |
| | | * @param apiConf |
| | | * @return |
| | | */ |
| | | private String pushDataSingle(List<Api1103> items, ApiRemoteService apiRemoteService, ApiConfs apiConf) { |
| | | ResponseDto responseDto; |
| | | String result = ""; |
| | | |
| | | result += responseDto.toString(); |
| | | if (responseDto.getSuccess() == 0) { |
| | | if (Constant.CZBZ_I.equals(d.getCzbz())) { |
| | | api1103Rep.updateStatus(data.getCfdm(), Constant.CZBZ_U); |
| | | } |
| | | } |
| | | } |
| | | return result; |
| | | } |
| | | //封装参数 |
| | | ApiParam param = new ApiParam(apiConf, Constant.API_CATEGORY_11, Constant.API_CODE_1103); |
| | | Api1103 d; |
| | | for (Api1103 data : items) { |
| | | d = new Api1103(); |
| | | BeanUtils.copyProperties(data, d); |
| | | param.setBizId(data.getBizId()); |
| | | responseDto = apiRemoteService.pushData(param, apiConf, d); |
| | | |
| | | result += responseDto.toString(); |
| | | if (responseDto.getSuccess() == 0) { |
| | | if (Constant.CZBZ_I.equals(d.getCzbz())) { |
| | | api1103Rep.updateStatus(data.getCfdm(), Constant.CZBZ_U); |
| | | } |
| | | } |
| | | } |
| | | return result; |
| | | } |
| | | |
| | | /** |
| | | * 多条数据json推送 |
| | | * |
| | | * @param items |
| | | * @param apiRemoteService |
| | | * @param apiConf |
| | | * @return |
| | | */ |
| | | private String pushDataList(List<Api1103> items, ApiRemoteService apiRemoteService, ApiConfs apiConf) { |
| | | |
| | | //封装参数 |
| | | ApiParam param = new ApiParam(apiConf, Constant.API_CATEGORY_11, Constant.API_CODE_1103); |
| | | |
| | | //推送,数据为集合形式 |
| | | ResponseDto responseDto = apiRemoteService.pushData(param, apiConf, items); |
| | | if (responseDto.getSuccess() == 0) { |
| | | //推送成功,更新数据上传状态 |
| | | for (Api1103 data : items) { |
| | | if (Constant.CZBZ_I.equals(data.getCzbz())) { |
| | | //更新状态 |
| | | api1103Rep.updateStatus(data.getCfdm(), Constant.CZBZ_U); |
| | | } |
| | | } |
| | | } |
| | | return responseDto.toString(); |
| | | } |
| | | |
| | | |
| | | } |