fix: 平武初始化

scpwxyy
chenhc 8 months ago
parent 620b49b882
commit 3cf6f113bf

@ -248,7 +248,7 @@ public class ScpwxyyClient extends CommonHttpClient {
baseResponse.setData(map);
return baseResponse;
} catch (Exception e) {
log.error("解析长泰区医院智业接口返回产品信息字典数据异常,返回结果:{}", response);
log.error("解析四川平武县医院智业接口返回产品信息字典数据异常,返回结果:{}", response);
log.error("异常信息:{}", e);
return ResultVOUtils.error(500, "网络错误,或远程服务器异常无法返回正确结果(" + response + ")");
}
@ -281,7 +281,7 @@ public class ScpwxyyClient extends CommonHttpClient {
pageSimpleResponse.setList(thrProductsEntityList);
return ResultVOUtils.success(pageSimpleResponse);
}
log.error("解析长泰区医院医疗类型,返回结果:{}", udiwmsProductRequest.getProductType());
log.error("解析四川平武县医院医疗类型,返回结果:{}", udiwmsProductRequest.getProductType());
return ResultVOUtils.error(500, "医疗类型不正确productType" + udiwmsProductRequest.getProductType());
}
@ -400,7 +400,7 @@ public class ScpwxyyClient extends CommonHttpClient {
baseResponse.setData(map);
return baseResponse;
} catch (Exception e) {
log.error("解析长泰医院智业返回病人信息数据异常,返回结果:{}", response);
log.error("解析四川平武县医院智业返回病人信息数据异常,返回结果:{}", response);
log.error("异常信息:{}", e);
return ResultVOUtils.error(500, "网络错误,或远程服务器异常无法返回正确结果(" + response + ")");
}
@ -437,7 +437,7 @@ public class ScpwxyyClient extends CommonHttpClient {
baseResponse.setData(map);
return baseResponse;
} catch (Exception e) {
log.error("解析长泰医院智业返回处方信息数据异常,返回结果:{}", response);
log.error("解析四川平武县医院智业返回处方信息数据异常,返回结果:{}", response);
log.error("异常信息:{}", e);
return ResultVOUtils.error(500, "网络错误,或远程服务器异常无法返回正确结果(" + response + ")");
}
@ -484,7 +484,7 @@ public class ScpwxyyClient extends CommonHttpClient {
baseResponse.setData(map);
return baseResponse;
} catch (Exception e) {
log.error("解析长泰医院智业返回项目信息数据异常,返回结果:{}", response);
log.error("解析四川平武县医院智业返回项目信息数据异常,返回结果:{}", response);
log.error("异常信息:{}", e);
return ResultVOUtils.error(500, "网络错误,或远程服务器异常无法返回正确结果(" + response + ")");
}
@ -521,7 +521,7 @@ public class ScpwxyyClient extends CommonHttpClient {
baseResponse.setData(map);
return baseResponse;
} catch (Exception e) {
log.error("解析长泰医院智业返回物价类别信息异常,返回结果:{}", response);
log.error("解析四川平武县医院智业返回物价类别信息异常,返回结果:{}", response);
log.error("异常信息:{}", e);
return ResultVOUtils.error(500, "网络错误,或远程服务器异常无法返回正确结果(" + response + ")");
}

@ -1,10 +1,12 @@
package com.glxp.mipsdl.service.scpwxyy;
import com.baomidou.mybatisplus.extension.service.impl.ServiceImpl;
import com.glxp.mipsdl.entity.scpwxyy.A0006detail;
import org.springframework.stereotype.Service;
import javax.annotation.Resource;
import com.glxp.mipsdl.thirddao.scpwxyy.A0006detailMapper;
@Service
public class A0006detailService{
public class A0006detailService extends ServiceImpl<A0006detailMapper, A0006detail> {
@Resource
private A0006detailMapper a0006detailMapper;

@ -1,10 +1,12 @@
package com.glxp.mipsdl.service.scpwxyy;
import com.glxp.mipsdl.entity.scpwxyy.A001;
import org.springframework.stereotype.Service;
import com.baomidou.mybatisplus.extension.service.impl.ServiceImpl;
import javax.annotation.Resource;
import com.glxp.mipsdl.thirddao.scpwxyy.A001Mapper;
@Service
public class A001Service{
public class A001Service extends ServiceImpl<A001Mapper, A001> {
@Resource
private A001Mapper a001Mapper;

@ -1,10 +1,12 @@
package com.glxp.mipsdl.service.scpwxyy;
import com.baomidou.mybatisplus.extension.service.impl.ServiceImpl;
import com.glxp.mipsdl.entity.scpwxyy.A003;
import org.springframework.stereotype.Service;
import javax.annotation.Resource;
import com.glxp.mipsdl.thirddao.scpwxyy.A003Mapper;
@Service
public class A003Service{
public class A003Service extends ServiceImpl<A003Mapper, A003> {
@Resource
private A003Mapper a003Mapper;

@ -1,11 +1,12 @@
package com.glxp.mipsdl.service.scpwxyy;
import com.baomidou.mybatisplus.extension.service.impl.ServiceImpl;
import com.glxp.mipsdl.entity.scpwxyy.A004;
import org.springframework.stereotype.Service;
import javax.annotation.Resource;
import com.glxp.mipsdl.thirddao.scpwxyy.A004Mapper;
@Service
public class A004Service{
public class A004Service extends ServiceImpl<A004Mapper, A004> {
@Resource
private A004Mapper a004Mapper;

@ -1,10 +1,12 @@
package com.glxp.mipsdl.service.scpwxyy;
import com.baomidou.mybatisplus.extension.service.impl.ServiceImpl;
import com.glxp.mipsdl.entity.scpwxyy.A005;
import org.springframework.stereotype.Service;
import javax.annotation.Resource;
import com.glxp.mipsdl.thirddao.scpwxyy.A005Mapper;
@Service
public class A005Service{
public class A005Service extends ServiceImpl<A005Mapper, A005> {
@Resource
private A005Mapper a005Mapper;

@ -1,10 +1,12 @@
package com.glxp.mipsdl.service.scpwxyy;
import com.baomidou.mybatisplus.extension.service.impl.ServiceImpl;
import com.glxp.mipsdl.entity.scpwxyy.A006head;
import org.springframework.stereotype.Service;
import javax.annotation.Resource;
import com.glxp.mipsdl.thirddao.scpwxyy.A006headMapper;
@Service
public class A006headService{
public class A006headService extends ServiceImpl<A006headMapper, A006head> {
@Resource
private A006headMapper a006headMapper;

@ -1,10 +1,12 @@
package com.glxp.mipsdl.service.scpwxyy;
import com.baomidou.mybatisplus.extension.service.impl.ServiceImpl;
import com.glxp.mipsdl.entity.scpwxyy.A007;
import org.springframework.stereotype.Service;
import javax.annotation.Resource;
import com.glxp.mipsdl.thirddao.scpwxyy.A007Mapper;
@Service
public class A007Service{
public class A007Service extends ServiceImpl<A007Mapper, A007> {
@Resource
private A007Mapper a007Mapper;

@ -1,10 +1,12 @@
package com.glxp.mipsdl.service.scpwxyy;
import com.baomidou.mybatisplus.extension.service.impl.ServiceImpl;
import com.glxp.mipsdl.entity.scpwxyy.A008;
import org.springframework.stereotype.Service;
import javax.annotation.Resource;
import com.glxp.mipsdl.thirddao.scpwxyy.A008Mapper;
@Service
public class A008Service{
public class A008Service extends ServiceImpl<A008Mapper, A008> {
@Resource
private A008Mapper a008Mapper;

@ -1,10 +1,12 @@
package com.glxp.mipsdl.service.scpwxyy;
import com.baomidou.mybatisplus.extension.service.impl.ServiceImpl;
import com.glxp.mipsdl.entity.scpwxyy.A010detail;
import org.springframework.stereotype.Service;
import javax.annotation.Resource;
import com.glxp.mipsdl.thirddao.scpwxyy.A010detailMapper;
@Service
public class A010detailService{
public class A010detailService extends ServiceImpl<A010detailMapper, A010detail> {
@Resource
private A010detailMapper a010detailMapper;

@ -1,10 +1,12 @@
package com.glxp.mipsdl.service.scpwxyy;
import com.baomidou.mybatisplus.extension.service.impl.ServiceImpl;
import com.glxp.mipsdl.entity.scpwxyy.A010head;
import org.springframework.stereotype.Service;
import javax.annotation.Resource;
import com.glxp.mipsdl.thirddao.scpwxyy.A010headMapper;
@Service
public class A010headService{
public class A010headService extends ServiceImpl<A010headMapper, A010head> {
@Resource
private A010headMapper a010headMapper;

@ -1,10 +1,12 @@
package com.glxp.mipsdl.service.scpwxyy;
import com.baomidou.mybatisplus.extension.service.impl.ServiceImpl;
import com.glxp.mipsdl.entity.scpwxyy.A011detail;
import org.springframework.stereotype.Service;
import javax.annotation.Resource;
import com.glxp.mipsdl.thirddao.scpwxyy.A011detailMapper;
@Service
public class A011detailService{
public class A011detailService extends ServiceImpl<A011detailMapper, A011detail> {
@Resource
private A011detailMapper a011detailMapper;

@ -1,10 +1,12 @@
package com.glxp.mipsdl.service.scpwxyy;
import com.baomidou.mybatisplus.extension.service.impl.ServiceImpl;
import com.glxp.mipsdl.entity.scpwxyy.A011head;
import org.springframework.stereotype.Service;
import javax.annotation.Resource;
import com.glxp.mipsdl.thirddao.scpwxyy.A011headMapper;
@Service
public class A011headService{
public class A011headService extends ServiceImpl<A011headMapper, A011head> {
@Resource
private A011headMapper a011headMapper;

@ -1,10 +1,12 @@
package com.glxp.mipsdl.service.scpwxyy;
import com.baomidou.mybatisplus.extension.service.impl.ServiceImpl;
import com.glxp.mipsdl.entity.scpwxyy.A013;
import org.springframework.stereotype.Service;
import javax.annotation.Resource;
import com.glxp.mipsdl.thirddao.scpwxyy.A013Mapper;
@Service
public class A013Service{
public class A013Service extends ServiceImpl<A013Mapper, A013> {
@Resource
private A013Mapper a013Mapper;

@ -1,10 +1,13 @@
package com.glxp.mipsdl.service.scpwxyy;
import com.baomidou.mybatisplus.extension.service.impl.ServiceImpl;
import com.glxp.mipsdl.entity.scpwxyy.A014;
import org.springframework.stereotype.Service;
import javax.annotation.Resource;
import com.glxp.mipsdl.thirddao.scpwxyy.A014Mapper;
@Service
public class A014Service{
public class A014Service extends ServiceImpl<A014Mapper, A014> {
@Resource
private A014Mapper a014Mapper;

@ -1,7 +1,13 @@
package com.glxp.mipsdl.thirddao.scpwxyy;
import com.baomidou.dynamic.datasource.annotation.DS;
import com.baomidou.mybatisplus.core.mapper.BaseMapper;
import com.glxp.mipsdl.entity.scpwxyy.A0006detail;
import org.apache.ibatis.annotations.Mapper;
@Mapper
public interface A0006detailMapper {
@DS("scpwxyySql")
public interface A0006detailMapper extends BaseMapper<A0006detail> {
}

@ -1,7 +1,12 @@
package com.glxp.mipsdl.thirddao.scpwxyy;
import com.baomidou.dynamic.datasource.annotation.DS;
import com.baomidou.mybatisplus.core.mapper.BaseMapper;
import com.glxp.mipsdl.entity.ctqyy.VInsurNationGoodsPhysic;
import com.glxp.mipsdl.entity.scpwxyy.A001;
import org.apache.ibatis.annotations.Mapper;
@Mapper
public interface A001Mapper {
@DS("scpwxyySql")
public interface A001Mapper extends BaseMapper<A001> {
}

@ -1,7 +1,12 @@
package com.glxp.mipsdl.thirddao.scpwxyy;
import com.baomidou.dynamic.datasource.annotation.DS;
import com.baomidou.mybatisplus.core.mapper.BaseMapper;
import com.glxp.mipsdl.entity.scpwxyy.A003;
import org.apache.ibatis.annotations.Mapper;
@Mapper
public interface A003Mapper {
@DS("scpwxyySql")
public interface A003Mapper extends BaseMapper<A003> {
}

@ -1,7 +1,11 @@
package com.glxp.mipsdl.thirddao.scpwxyy;
import com.baomidou.dynamic.datasource.annotation.DS;
import com.baomidou.mybatisplus.core.mapper.BaseMapper;
import com.glxp.mipsdl.entity.scpwxyy.A004;
import org.apache.ibatis.annotations.Mapper;
@Mapper
public interface A004Mapper {
@DS("scpwxyySql")
public interface A004Mapper extends BaseMapper<A004> {
}

@ -1,7 +1,14 @@
package com.glxp.mipsdl.thirddao.scpwxyy;
import com.baomidou.dynamic.datasource.annotation.DS;
import com.baomidou.mybatisplus.core.mapper.BaseMapper;
import com.glxp.mipsdl.entity.scpwxyy.A005;
import org.apache.ibatis.annotations.Mapper;
@Mapper
public interface A005Mapper {
@DS("scpwxyySql")
public interface A005Mapper extends BaseMapper<A005> {
}

@ -1,7 +1,13 @@
package com.glxp.mipsdl.thirddao.scpwxyy;
import com.baomidou.dynamic.datasource.annotation.DS;
import com.baomidou.mybatisplus.core.mapper.BaseMapper;
import com.glxp.mipsdl.entity.scpwxyy.A006head;
import org.apache.ibatis.annotations.Mapper;
@Mapper
public interface A006headMapper {
@DS("scpwxyySql")
public interface A006headMapper extends BaseMapper<A006head> {
}

@ -1,7 +1,13 @@
package com.glxp.mipsdl.thirddao.scpwxyy;
import com.baomidou.dynamic.datasource.annotation.DS;
import com.baomidou.mybatisplus.core.mapper.BaseMapper;
import com.glxp.mipsdl.entity.scpwxyy.A007;
import org.apache.ibatis.annotations.Mapper;
@Mapper
public interface A007Mapper {
@DS("scpwxyySql")
public interface A007Mapper extends BaseMapper<A007> {
}

@ -1,7 +1,13 @@
package com.glxp.mipsdl.thirddao.scpwxyy;
import com.baomidou.dynamic.datasource.annotation.DS;
import com.baomidou.mybatisplus.core.mapper.BaseMapper;
import com.glxp.mipsdl.entity.scpwxyy.A008;
import org.apache.ibatis.annotations.Mapper;
@Mapper
public interface A008Mapper {
@DS("scpwxyySql")
public interface A008Mapper extends BaseMapper<A008> {
}

@ -1,7 +1,14 @@
package com.glxp.mipsdl.thirddao.scpwxyy;
import com.baomidou.dynamic.datasource.annotation.DS;
import com.baomidou.mybatisplus.core.mapper.BaseMapper;
import com.glxp.mipsdl.entity.scpwxyy.A008;
import com.glxp.mipsdl.entity.scpwxyy.A010detail;
import org.apache.ibatis.annotations.Mapper;
@Mapper
public interface A010detailMapper {
@DS("scpwxyySql")
public interface A010detailMapper extends BaseMapper<A010detail> {
}

@ -1,7 +1,13 @@
package com.glxp.mipsdl.thirddao.scpwxyy;
import com.baomidou.dynamic.datasource.annotation.DS;
import com.baomidou.mybatisplus.core.mapper.BaseMapper;
import com.glxp.mipsdl.entity.scpwxyy.A010head;
import org.apache.ibatis.annotations.Mapper;
@Mapper
public interface A010headMapper {
@DS("scpwxyySql")
public interface A010headMapper extends BaseMapper<A010head> {
}

@ -1,7 +1,13 @@
package com.glxp.mipsdl.thirddao.scpwxyy;
import com.baomidou.dynamic.datasource.annotation.DS;
import com.baomidou.mybatisplus.core.mapper.BaseMapper;
import com.glxp.mipsdl.entity.scpwxyy.A011detail;
import org.apache.ibatis.annotations.Mapper;
@Mapper
public interface A011detailMapper {
@DS("scpwxyySql")
public interface A011detailMapper extends BaseMapper<A011detail> {
}

@ -1,7 +1,13 @@
package com.glxp.mipsdl.thirddao.scpwxyy;
import com.baomidou.dynamic.datasource.annotation.DS;
import com.baomidou.mybatisplus.core.mapper.BaseMapper;
import com.glxp.mipsdl.entity.scpwxyy.A011head;
import org.apache.ibatis.annotations.Mapper;
@Mapper
public interface A011headMapper {
@DS("scpwxyySql")
public interface A011headMapper extends BaseMapper<A011head> {
}

@ -1,7 +1,13 @@
package com.glxp.mipsdl.thirddao.scpwxyy;
import com.baomidou.dynamic.datasource.annotation.DS;
import com.baomidou.mybatisplus.core.mapper.BaseMapper;
import com.glxp.mipsdl.entity.scpwxyy.A013;
import org.apache.ibatis.annotations.Mapper;
@Mapper
public interface A013Mapper {
@DS("scpwxyySql")
public interface A013Mapper extends BaseMapper<A013> {
}

@ -1,7 +1,13 @@
package com.glxp.mipsdl.thirddao.scpwxyy;
import com.baomidou.dynamic.datasource.annotation.DS;
import com.baomidou.mybatisplus.core.mapper.BaseMapper;
import com.glxp.mipsdl.entity.scpwxyy.A014;
import org.apache.ibatis.annotations.Mapper;
@Mapper
public interface A014Mapper {
@DS("scpwxyySql")
public interface A014Mapper extends BaseMapper<A014> {
}

@ -41,6 +41,15 @@ spring:
username: root
password: 123456
driver-class-name: com.p6spy.engine.spy.P6SpyDriver
scpwxyySql:
# jdbc-url: jdbc:oracle:thin:@192.168.10.8:1521/njxyy
# username: I_YPZS
# password: zy02v4ys
# driver-class-name: oracle.jdbc.driver.OracleDrive
url: jdbc:p6spy:mysql://127.0.0.1:3306/udi_wms_ywj?allowMultiQueries=true&serverTimezone=Asia/Shanghai&useUnicode=true&characterEncoding=utf8&zeroDateTimeBehavior=convertToNull&useSSL=false&allowPublicKeyRetrieval=true
username: root
password: 123456
driver-class-name: com.p6spy.engine.spy.P6SpyDriver
hikari:
connection-timeout: 60000
maximum-pool-size: 60

@ -28,6 +28,15 @@ spring:
connection-timeout: 60000
maximum-pool-size: 60
minimum-idle: 10
scpwxyySql:
driver-class-name: oracle.jdbc.driver.OracleDriver
url: jdbc:oracle:thin:@192.168.0.3:1521/yxfybjy
username: I_YPZS
password: zy02v4ys
hikari:
connection-timeout: 60000
maximum-pool-size: 60
minimum-idle: 10
hikari:
connection-timeout: 60000
maximum-pool-size: 60

Loading…
Cancel
Save