Merge remote-tracking branch 'origin/master'

# Conflicts:
#	api-admin/target/classes/application-dev.properties
#	api-admin/target/classes/com/glxp/udidl/admin/config/GlobalConfig.class
#	api-admin/target/classes/com/glxp/udidl/admin/controller/device/TestController.class
#	api-admin/target/classes/com/glxp/udidl/admin/service/DataSync/DeviceSaveService.class
master
anthonywj 3 years ago
commit 94a8464ca7

@ -9,6 +9,20 @@ import org.springframework.stereotype.Component;
public class GlobalConfig { public class GlobalConfig {
@Value("${config.downloadPath}") @Value("${config.downloadPath}")
private String downloadPath; private String downloadPath;
/**
*
*/
@Value("${config.openAuth}") @Value("${config.openAuth}")
private boolean openAuth; private boolean openAuth;
/**
*
*/
@Value("${udplat.host}")
private String udplat_host;
@Value("${udplat.appId}")
private String udplat_appId;
@Value("${udplat.secretKey}")
private String udplat_secretKey;
@Value("${udplat.userName}")
private String udplat_userName;
} }

@ -1,10 +1,12 @@
package com.glxp.udidl.admin.controller.device; package com.glxp.udidl.admin.controller.device;
import com.alibaba.fastjson.JSONObject;
import com.glxp.udidl.admin.dao.udi.ProductInfoDao; import com.glxp.udidl.admin.dao.udi.ProductInfoDao;
import com.glxp.udidl.admin.entity.udid.Device; import com.glxp.udidl.admin.entity.udid.Device;
import com.glxp.udidl.admin.req.ListPageRequest; import com.glxp.udidl.admin.req.ListPageRequest;
import com.glxp.udidl.admin.service.DataSync.DeviceSyncService; import com.glxp.udidl.admin.service.DataSync.DeviceSyncService;
import com.glxp.udidl.admin.service.DataSync.UdplatDownloadService; import com.glxp.udidl.admin.service.DataSync.UdplatDownloadService;
import com.glxp.udidl.admin.service.DataSync.UdplatSyncService;
import com.glxp.udidl.admin.service.inout.DeviceService; import com.glxp.udidl.admin.service.inout.DeviceService;
import com.glxp.udidl.admin.service.inout.ProductInfoService; import com.glxp.udidl.admin.service.inout.ProductInfoService;
import com.glxp.udidl.admin.service.udi.UdiCompanyService; import com.glxp.udidl.admin.service.udi.UdiCompanyService;
@ -15,6 +17,7 @@ import com.glxp.udidl.common.util.ResultVOUtils;
import org.slf4j.Logger; import org.slf4j.Logger;
import org.slf4j.LoggerFactory; import org.slf4j.LoggerFactory;
import org.springframework.beans.factory.annotation.Autowired; import org.springframework.beans.factory.annotation.Autowired;
import org.springframework.http.ResponseEntity;
import org.springframework.web.bind.annotation.GetMapping; import org.springframework.web.bind.annotation.GetMapping;
import org.springframework.web.bind.annotation.RequestParam; import org.springframework.web.bind.annotation.RequestParam;
import org.springframework.web.bind.annotation.RestController; import org.springframework.web.bind.annotation.RestController;
@ -44,6 +47,8 @@ public class TestController {
DeviceSyncService deviceSyncService; DeviceSyncService deviceSyncService;
@Autowired @Autowired
UdplatDownloadService udplatDownloadService; UdplatDownloadService udplatDownloadService;
@Autowired
UdplatSyncService udplatSyncService;
@GetMapping("udidl/device/transfer") @GetMapping("udidl/device/transfer")
public void transfer() { public void transfer() {
List<String> keys = deviceService.findAllByZxxscpbs(); List<String> keys = deviceService.findAllByZxxscpbs();
@ -97,10 +102,36 @@ public class TestController {
logger.info(month + "---按月开启下载"); logger.info(month + "---按月开启下载");
asyncDownloadTask.downloadByMonth(month, page); asyncDownloadTask.downloadByMonth(month, page);
} }
@GetMapping("/test/getDistributor") /* @GetMapping("/test/getDistributor")
public String udplatTest(){ public String udplatTest(){
return udplatDownloadService.getDistributor(); return udplatDownloadService.getDistributor();
}*/
@GetMapping("/test/getManufactures")
public BaseResponse getManufactures(){
return udplatDownloadService.getAllManufactures();
}
@GetMapping("/test/udplat")
public BaseResponse udplatSync(){
udplatSyncService.downloadAndSave("manual","");
return ResultVOUtils.success("后台已开始下载!");
}
@GetMapping("/test/udplatGoods")
/* public UdplatResponse getGoods(){
return udplatDownloadService.getUdplatGoods(1,1000,null,null);
}*/
public ResponseEntity<String> getGoods(){
return udplatDownloadService.getUdplatGoods(1,100);
}
@GetMapping("/test/getPurchaseOrders")
public ResponseEntity<String> getPurchaseOrders(String orderCode){
return udplatDownloadService.getPurchaseOrders(orderCode);
}
@GetMapping("/test/getPurchaseOrderDetals")
public ResponseEntity<String> getPurchaseOrderDetals(Long orderId){
return udplatDownloadService.getPurchaseOrderDetals(orderId);
}
@GetMapping("/test/getDistributeOrderDetails")
public JSONObject getDistributeOrderDetails(Long orderId){
return udplatDownloadService.getDistributeOrderDetails(orderId);
} }
} }

@ -30,6 +30,6 @@ public class UdplatDistributorController {
@AuthRuleAnnotation("udidl_udplatDistributor_all") @AuthRuleAnnotation("udidl_udplatDistributor_all")
@PostMapping("/import") @PostMapping("/import")
public BaseResponse imports(@RequestBody List<UdplatDistributorModel> models){ public BaseResponse imports(@RequestBody List<UdplatDistributorModel> models){
return udplatDistributorService.imports(models); return udplatDistributorService.save(models,"import");
} }
} }

@ -2,6 +2,8 @@ package com.glxp.udidl.admin.controller.udplat;
import com.glxp.udidl.admin.annotation.AuthRuleAnnotation; import com.glxp.udidl.admin.annotation.AuthRuleAnnotation;
import com.glxp.udidl.admin.dto.udplat.BaseParam; import com.glxp.udidl.admin.dto.udplat.BaseParam;
import com.glxp.udidl.admin.dto.udplat.DeliveryGoods;
import com.glxp.udidl.admin.dto.udplat.HospitalGoods;
import com.glxp.udidl.admin.service.udplat.UdplatGoodsService; import com.glxp.udidl.admin.service.udplat.UdplatGoodsService;
import com.glxp.udidl.common.res.BaseResponse; import com.glxp.udidl.common.res.BaseResponse;
import com.glxp.udidl.common.util.ResultVOUtils; import com.glxp.udidl.common.util.ResultVOUtils;
@ -12,6 +14,8 @@ import org.springframework.web.bind.annotation.RequestMapping;
import org.springframework.web.bind.annotation.RestController; import org.springframework.web.bind.annotation.RestController;
import org.springframework.web.multipart.MultipartFile; import org.springframework.web.multipart.MultipartFile;
import java.util.List;
/** /**
* *
*/ */
@ -38,4 +42,14 @@ public class UdplatGoodsController {
} }
} }
@AuthRuleAnnotation("udidl_udplatGoods_all")
@PostMapping("/inportHospitalGoods")
public BaseResponse importHospitalGoods(@RequestBody List<HospitalGoods> list){
return udplatGoodsService.importHospitalGoods(list);
}
@AuthRuleAnnotation("udidl_udplatGoods_all")
@PostMapping("/importDeliveryGoods")
public BaseResponse importDeliveryGoods(@RequestBody List<DeliveryGoods> list){
return udplatGoodsService.importDeliveryGoods(list);
}
} }

@ -27,6 +27,6 @@ public class UdplatHospitalController {
@AuthRuleAnnotation("udidl_udplatHospital_all") @AuthRuleAnnotation("udidl_udplatHospital_all")
@PostMapping("/import") @PostMapping("/import")
public BaseResponse imports(@RequestBody List<UdplatHospitalModel> models){ public BaseResponse imports(@RequestBody List<UdplatHospitalModel> models){
return udplatHospitalService.imports(models); return udplatHospitalService.save(models,"import");
} }
} }

@ -2,8 +2,10 @@ package com.glxp.udidl.admin.controller.udplat;
import com.glxp.udidl.admin.annotation.AuthRuleAnnotation; import com.glxp.udidl.admin.annotation.AuthRuleAnnotation;
import com.glxp.udidl.admin.req.udid.JobLogFilterRequest; import com.glxp.udidl.admin.req.udid.JobLogFilterRequest;
import com.glxp.udidl.admin.service.DataSync.UdplatSyncService;
import com.glxp.udidl.admin.service.udplat.UdplatLogService; import com.glxp.udidl.admin.service.udplat.UdplatLogService;
import com.glxp.udidl.common.res.BaseResponse; import com.glxp.udidl.common.res.BaseResponse;
import com.glxp.udidl.common.util.ResultVOUtils;
import org.springframework.beans.factory.annotation.Autowired; import org.springframework.beans.factory.annotation.Autowired;
import org.springframework.web.bind.annotation.PostMapping; import org.springframework.web.bind.annotation.PostMapping;
import org.springframework.web.bind.annotation.RequestBody; import org.springframework.web.bind.annotation.RequestBody;
@ -15,10 +17,18 @@ import org.springframework.web.bind.annotation.RestController;
public class UdplatLogController { public class UdplatLogController {
@Autowired @Autowired
UdplatLogService udplatLogService; UdplatLogService udplatLogService;
@Autowired
UdplatSyncService udplatSyncService;
@AuthRuleAnnotation("udidl_udplatLog_all") @AuthRuleAnnotation("udidl_udplatLog_all")
@PostMapping("/list") @PostMapping("/list")
public BaseResponse getList(@RequestBody JobLogFilterRequest param){ public BaseResponse getList(@RequestBody JobLogFilterRequest param){
return udplatLogService.getList(param); return udplatLogService.getList(param);
} }
@AuthRuleAnnotation("udidl_udplatLog_all")
@PostMapping("/udplatSync")
public BaseResponse udplatSync(String tbName){
udplatSyncService.downloadAndSave("manual",tbName);
return ResultVOUtils.success("后台已开始下载!");
}
} }

@ -27,6 +27,6 @@ public class UdplatManufactureController {
@AuthRuleAnnotation("udidl_udplatManufacture_all") @AuthRuleAnnotation("udidl_udplatManufacture_all")
@PostMapping("/import") @PostMapping("/import")
public BaseResponse imports(@RequestBody List<UdplatManufactureModel> models){ public BaseResponse imports(@RequestBody List<UdplatManufactureModel> models){
return udplatManufactureService.imports(models); return udplatManufactureService.save(models,"import");
} }
} }

@ -12,8 +12,8 @@ public interface UdplatGoodsMapper {
int insert(UdplatGoods record); int insert(UdplatGoods record);
UdplatGoods selectByGoodId(String deliveryGoodId); UdplatGoods selectByGoodsId(String deliveryGoodId);
UdplatGoods selectByProjectGoodsCode(String projectGoodsCode);
List<UdplatGoods> selectAll(); List<UdplatGoods> selectAll();
int update(UdplatGoods record); int update(UdplatGoods record);

@ -18,5 +18,5 @@ public interface UdplatManufactureMapper {
int updateByPrimaryKey(UdplatManufacture record); int updateByPrimaryKey(UdplatManufacture record);
List<UdplatManufacture> list(BaseParam param); List<UdplatManufacture> list(BaseParam param);
UdplatManufacture selectByManufactureId(String id); UdplatManufacture selectByManufactureId(String manufactureId);
} }

@ -6,17 +6,17 @@ import java.util.Date;
@Data @Data
public class DeliveryGoods { public class DeliveryGoods {
//private String deliveryGoodsId;//配送目录ID/bigint
@Excel(name = "*采购平台产品ID") @Excel(name = "*采购平台产品ID")
private String deliveryGoodId;//配送目录ID/bigint
private String projectGoodsCode;//联采目录编码/varchar(50) private String projectGoodsCode;//联采目录编码/varchar(50)
private String deliveryGoodsCode;//配送目录编码/varchar(50) /*private String deliveryGoodsCode;//配送目录编码/varchar(50)
private long manufactureId;//平台生产企业ID/bigint(20) private long manufactureId;//平台生产企业ID/bigint(20)
private String manufactureName;//平台生产企业名称/varchar(50) private String manufactureName;//平台生产企业名称/varchar(50)
private long distributorId; //平台配送企业ID/bigint(20) private long distributorId; //平台配送企业ID/bigint(20)
private String distributorName;//平台配送企业名称/varchar(50) private String distributorName;//平台配送企业名称/varchar(50)*/
@Excel(name = "产品名称") @Excel(name = "产品名称")
private String productName; //产品通用名/varchar(255) private String productName; //产品通用名/varchar(255)
private Integer compId; //组件id/bigint //private Integer compId; //组件id/bigint
@Excel(name = "型号") @Excel(name = "型号")
private String model;//型号/varchar(1000) private String model;//型号/varchar(1000)
@Excel(name = "规格") @Excel(name = "规格")
@ -30,21 +30,21 @@ public class DeliveryGoods {
@Excel(name = "注册证名称") @Excel(name = "注册证名称")
private String regName;//注册证名称/varchar(255) private String regName;//注册证名称/varchar(255)
@Excel(name = "注册证有效期截止时间") @Excel(name = "注册证有效期截止时间")
private String regValidTo;//注册证有效期截止时间/varchar(255) private Date regValidTo;//注册证有效期截止时间/varchar(255)
private long unionProjectId;//联采项目ID/bigint(20) /* private long unionProjectId;//联采项目ID/bigint(20)
private String unionProjectName;//采购项目名称/varchar(255) private String unionProjectName;//采购项目名称/varchar(255)
private double salePrice;//价格/decimal(18,4) private double salePrice;//价格/decimal(18,4)
private String priceUnitText;//价格单位/varchar(100) private String priceUnitText;//价格单位/varchar(100)
private double topSalePrice;//最高销售限价,可能为空/decimal(18,4) private double topSalePrice;//最高销售限价,可能为空/decimal(18,4)
private double settlePayPrice;//医保支付标准,可能为空/varchar(255) private double settlePayPrice;//医保支付标准,可能为空/varchar(255)
private Integer goodsSource;//数据来源/int(11)(取值1.集中采购 2.耗材联采 3.医院HIS/医疗机构新增 4.备案采购 9. 阳光采购10. 新型冠状病毒相关检测试剂省级集中采购14. 限新冠病毒核酸快速检测采购使用) private Integer goodsSource;*///数据来源/int(11)(取值1.集中采购 2.耗材联采 3.医院HIS/医疗机构新增 4.备案采购 9. 阳光采购10. 新型冠状病毒相关检测试剂省级集中采购14. 限新冠病毒核酸快速检测采购使用)
@Excel(name = "*缺货状态",convertExp="1=有货,2=缺货") @Excel(name = "*缺货状态",convertExp="1=有货,2=缺货")
private String stockStatus;//缺货状态1有货、2缺货/int private String stockStatus;//缺货状态1有货、2缺货/int
@Excel(name = "更新内容") @Excel(name = "更新内容")
private String changedContent;//更新内容 private String changedContent;//更新内容
@Excel(name = "更新时间") @Excel(name = "更新时间")
private Date changedTime;//更新时间 private Date changedTime;//更新时间
private String proxyName;//申报企业名称/ varchar(50) //private String proxyName;//申报企业名称/ varchar(50)
@Excel(name = "挂网状态") @Excel(name = "挂网状态")
private Integer onlineStatus;//挂网状态 1挂网2挂网状态为空 6 撤销申报 private Integer onlineStatus;//挂网状态 1挂网2挂网状态为空 6 撤销申报
@Excel(name = "医用耗材代码") @Excel(name = "医用耗材代码")

@ -6,48 +6,48 @@ import java.util.Date;
@Data @Data
public class HospitalGoods { public class HospitalGoods {
//private String deliveryGoodsId;//配送目录ID/bigint
@Excel(name = "采购平台产品ID") @Excel(name = "采购平台产品ID")
private String deliveryGoodId;//配送目录ID/bigint
private String projectGoodsCode;//联采目录编码/varchar(50) private String projectGoodsCode;//联采目录编码/varchar(50)
private String deliveryGoodsCode;//配送目录编码/varchar(50) //private String deliveryGoodsCode;//配送目录编码/varchar(50)
private long manufactureId;//平台生产企业ID/bigint(20) //private long manufactureId;//平台生产企业ID/bigint(20)
@Excel(name = "生产企业") @Excel(name = "生产企业")
private String manufactureName;//平台生产企业名称/varchar(50) private String manufactureName;//平台生产企业名称/varchar(50)
private long distributorId; //平台配送企业ID/bigint(20) //private long distributorId; //平台配送企业ID/bigint(20)
@Excel(name = "配送企业") @Excel(name = "配送企业")
private String distributorName;//平台配送企业名称/varchar(50) private String distributorName;//平台配送企业名称/varchar(50)
@Excel(name = "产品名称") @Excel(name = "产品名称")
private String productName; //产品通用名/varchar(255) private String productName; //产品通用名/varchar(255)
private Integer compId; //组件id/bigint //private Integer compId; //组件id/bigint
@Excel(name = "型号") @Excel(name = "型号")
private String model;//型号/varchar(1000) private String model;//型号/varchar(1000)
@Excel(name = "规格") @Excel(name = "规格")
private String spec;//规格/varchar(1000) private String spec;//规格/varchar(1000)
@Excel(name = "材质") @Excel(name = "材质")
private String prodMaterial;//材质/varchar(255) private String prodMaterial;//材质/varchar(255)
private String packMaterial;//包材/varchar(255) //private String packMaterial;//包材/varchar(255)
@Excel(name = "注册证编号") @Excel(name = "注册证编号")
private String regNum;//注册证编号/varchar(255) private String regNum;//注册证编号/varchar(255)
@Excel(name = "注册证名称") @Excel(name = "注册证名称")
private String regName;//注册证名称/varchar(255) private String regName;//注册证名称/varchar(255)
@Excel(name = "注册证有效期截止时间") @Excel(name = "注册证有效期截止时间")
private String regValidTo;//注册证有效期截止时间/varchar(255) private Date regValidTo;//注册证有效期截止时间/varchar(255)
private long unionProjectId;//联采项目ID/bigint(20) //private long unionProjectId;//联采项目ID/bigint(20)
private String unionProjectName;//采购项目名称/varchar(255) //private String unionProjectName;//采购项目名称/varchar(255)
@Excel(name = "企业报价(元)") @Excel(name = "企业报价(元)")
private double salePrice;//价格/decimal(18,4) private double salePrice;//价格/decimal(18,4)
@Excel(name = "价格单位") @Excel(name = "价格单位")
private String priceUnitText;//价格单位/varchar(100) private String priceUnitText;//价格单位/varchar(100)
private double topSalePrice;//最高销售限价,可能为空/decimal(18,4) /*private double topSalePrice;//最高销售限价,可能为空/decimal(18,4)
private double settlePayPrice;//医保支付标准,可能为空/varchar(255) private double settlePayPrice;//医保支付标准,可能为空/varchar(255)
private Integer goodsSource;//数据来源/int(11)(取值1.集中采购 2.耗材联采 3.医院HIS/医疗机构新增 4.备案采购 9. 阳光采购10. 新型冠状病毒相关检测试剂省级集中采购14. 限新冠病毒核酸快速检测采购使用) private Integer goodsSource;//数据来源/int(11)(取值1.集中采购 2.耗材联采 3.医院HIS/医疗机构新增 4.备案采购 9. 阳光采购10. 新型冠状病毒相关检测试剂省级集中采购14. 限新冠病毒核酸快速检测采购使用)
private String stockStatus;//缺货状态1有货、2缺货/int private String stockStatus;//缺货状态1有货、2缺货/int*/
@Excel(name = "更新内容") @Excel(name = "更新内容")
private String changedContent;//更新内容 private String changedContent;//更新内容
@Excel(name = "更新时间") @Excel(name = "更新时间")
private Date changedTime;//更新时间 private Date changedTime;//更新时间
private String proxyName;//申报企业名称/ varchar(50) //private String proxyName;//申报企业名称/ varchar(50)
private Integer onlineStatus;//挂网状态 1挂网2挂网状态为空 6 撤销申报 //private Integer onlineStatus;//挂网状态 1挂网2挂网状态为空 6 撤销申报
@Excel(name = "医用耗材代码") @Excel(name = "医用耗材代码")
private String medicalCode;//医保编码 private String medicalCode;//医保编码
} }

@ -7,10 +7,11 @@ public class UdplatGoodsMatchListModel {
private String uuid;//uuid private String uuid;//uuid
private String nameCode;//最小销售单元产品标识 private String nameCode;//最小销售单元产品标识
private String ylqxzcrbarmc;//注册/备案人名称 private String ylqxzcrbarmc;//注册/备案人名称
private String zczbhhzbapzbh;//注册证号
private String cpmctymc;//产品名称 private String cpmctymc;//产品名称
private String ggxh; //规格型号 private String ggxh; //规格型号
private String cpms; //产品描述 private String cpms; //产品描述
private String deviceRecordKey;//产品key private String deviceRecordKey;//产品key
private String deliveryGoodId;//目录key private String deliveryGoodsId;//目录key
private String medicalCode;//医保编码 private String medicalCode;//医保编码
} }

@ -10,9 +10,9 @@ public class UdplatGoodsMatchModel {
private String deviceRecordKey; private String deviceRecordKey;
/** /**
* id * ID
*/ */
private String deliveryGoodId; private String deliveryGoodsId;
/** /**
* *

@ -4,6 +4,8 @@ import lombok.Data;
@Data @Data
public class UdplatGoodsMatchParam extends BaseParam{ public class UdplatGoodsMatchParam extends BaseParam{
private String nameCode;
private int goodsMatchType;//产品目录 0:全部 1:已对照 2未对照 private int goodsMatchType;//产品目录 0:全部 1:已对照 2未对照
private int medicalMatchType;//医保编码 0:全部 1:已对照 2未对照 private int medicalMatchType;//医保编码 0:全部 1:已对照 2未对照
} }

@ -0,0 +1,37 @@
package com.glxp.udidl.admin.dto.udplat;
import lombok.Data;
import java.util.Date;
@Data
public class UdplatGoodsModel {
private String deliveryGoodsId;//配送目录ID/bigint
private String projectGoodsCode;//联采目录编码/varchar(50)
private String deliveryGoodsCode;//配送目录编码/varchar(50)
private String manufactureId;//平台生产企业ID/bigint(20)
private String manufactureName;//平台生产企业名称/varchar(50)
private String distributorId; //平台配送企业ID/bigint(20)
private String distributorName;//平台配送企业名称/varchar(50)
private String productName; //产品通用名/varchar(255)
private String compId; //组件id/bigint
private String model;//型号/varchar(1000)
private String spec;//规格/varchar(1000)
private String prodMaterial;//材质/varchar(255)
private String packMaterial;//包材/varchar(255)
private String regNum;//注册证编号/varchar(255)
private String regName;//注册证名称/varchar(255)
private String regValidTo;//注册证有效期截止时间/varchar(255)
private String unionProjectId;//联采项目ID/bigint(20)
private String unionProjectName;//采购项目名称/varchar(255)
private double salePrice;//价格/decimal(18,4)
private String priceUnitText;//价格单位/varchar(100)
private double topSalePrice;//最高销售限价,可能为空/decimal(18,4)
private double settlePayPrice;//医保支付标准,可能为空/varchar(255)
private String goodsSource;//数据来源/int(11)(取值1.集中采购 2.耗材联采 3.医院HIS/医疗机构新增 4.备案采购 9. 阳光采购10. 新型冠状病毒相关检测试剂省级集中采购14. 限新冠病毒核酸快速检测采购使用)
private String stockStatus;//缺货状态1有货、2缺货/int
private String changedContent;//更新内容
private Date changedTime;//更新时间
private String proxyName;//申报企业名称/ varchar(50)
private String onlineStatus;//挂网状态 1挂网2挂网状态为空 6 撤销申报
}

@ -9,34 +9,34 @@ import java.util.Date;
public class UdplatGoods { public class UdplatGoods {
private Long id; private Long id;
private String uuid; private String uuid;
private String deliveryGoodId;//配送目录ID/bigint private String deliveryGoodsId;//配送目录ID/bigint
private String projectGoodsCode;//联采目录编码/varchar(50) private String projectGoodsCode;//联采目录编码/varchar(50)
private String deliveryGoodsCode;//配送目录编码/varchar(50) private String deliveryGoodsCode;//配送目录编码/varchar(50)
private Long manufactureId;//平台生产企业ID/bigint(20) private String manufactureId;//平台生产企业ID/bigint(20)
private String manufactureName;//平台生产企业名称/varchar(50) private String manufactureName;//平台生产企业名称/varchar(50)
private Long distributorId; //平台配送企业ID/bigint(20) private String distributorId; //平台配送企业ID/bigint(20)
private String distributorName;//平台配送企业名称/varchar(50) private String distributorName;//平台配送企业名称/varchar(50)
private String productName; //产品通用名/varchar(255) private String productName; //产品通用名/varchar(255)
private Integer compId; //组件id/bigint private String compId; //组件id/bigint
private String model;//型号/varchar(1000) private String model;//型号/varchar(1000)
private String spec;//规格/varchar(1000) private String spec;//规格/varchar(1000)
private String prodMaterial;//材质/varchar(255) private String prodMaterial;//材质/varchar(255)
private String packMaterial;//包材/varchar(255) private String packMaterial;//包材/varchar(255)
private String regNum;//注册证编号/varchar(255) private String regNum;//注册证编号/varchar(255)
private String regName;//注册证名称/varchar(255) private String regName;//注册证名称/varchar(255)
private String regValidTo;//注册证有效期截止时间/varchar(255) private Date regValidTo;//注册证有效期截止时间/varchar(255)
private Long unionProjectId;//联采项目ID/bigint(20) private String unionProjectId;//联采项目ID/bigint(20)
private String unionProjectName;//采购项目名称/varchar(255) private String unionProjectName;//采购项目名称/varchar(255)
private double salePrice;//价格/decimal(18,4) private double salePrice;//价格/decimal(18,4)
private String priceUnitText;//价格单位/varchar(100) private String priceUnitText;//价格单位/varchar(100)
private double topSalePrice;//最高销售限价,可能为空/decimal(18,4) private double topSalePrice;//最高销售限价,可能为空/decimal(18,4)
private double settlePayPrice;//医保支付标准,可能为空/varchar(255) private double settlePayPrice;//医保支付标准,可能为空/varchar(255)
private Integer goodsSource;//数据来源/int(11)(取值1.集中采购 2.耗材联采 3.医院HIS/医疗机构新增 4.备案采购 9. 阳光采购10. 新型冠状病毒相关检测试剂省级集中采购14. 限新冠病毒核酸快速检测采购使用) private String goodsSource;//数据来源/int(11)(取值1.集中采购 2.耗材联采 3.医院HIS/医疗机构新增 4.备案采购 9. 阳光采购10. 新型冠状病毒相关检测试剂省级集中采购14. 限新冠病毒核酸快速检测采购使用)
private String stockStatus;//缺货状态1有货、2缺货/int private String stockStatus;//缺货状态1有货、2缺货/int
private String changedContent;//更新内容 private String changedContent;//更新内容
private Date changedTime;//更新时间 private Date changedTime;//更新时间
private String proxyName;//申报企业名称/ varchar(50) private String proxyName;//申报企业名称/ varchar(50)
private Integer onlineStatus;//挂网状态 1挂网2挂网状态为空 6 撤销申报 private String onlineStatus;//挂网状态 1挂网2挂网状态为空 6 撤销申报
private String medicalCode;//医保编码 private String medicalCode;//医保编码
@JsonFormat(pattern = "yyyy-MM-dd HH:mm:ss",timezone="GMT+8") @JsonFormat(pattern = "yyyy-MM-dd HH:mm:ss",timezone="GMT+8")
private Date createTime;//创建时间 private Date createTime;//创建时间

@ -24,9 +24,9 @@ public class UdplatGoodsMatch {
private String deviceRecordKey; private String deviceRecordKey;
/** /**
* id * ID
*/ */
private String deliveryGoodId; private String deliveryGoodsId;
/** /**
* *

@ -0,0 +1,10 @@
package com.glxp.udidl.admin.res.udplat;
import lombok.Data;
@Data
public class UdplatResponse<T> {
private Boolean success;
private String message;
private UdplatResponseData<T> data;
}

@ -0,0 +1,13 @@
package com.glxp.udidl.admin.res.udplat;
import lombok.Data;
import java.util.List;
@Data
public class UdplatResponseData<T> {
private int page;
private int pageSize;
private int total;
private List<T> data;
}

@ -240,7 +240,8 @@ public class DeviceSaveService {
devicepackage.setBzcpbs(packingInfo.getBzcpbs()); devicepackage.setBzcpbs(packingInfo.getBzcpbs());
devicepackage.setBznhxyjbzcpbs(packingInfo.getBznhxyjbzcpbs()); devicepackage.setBznhxyjbzcpbs(packingInfo.getBznhxyjbzcpbs());
devicepackage.setCpbzjb(packingInfo.getCpbzjb()); devicepackage.setCpbzjb(packingInfo.getCpbzjb());
devicepackage.setBznhxyjcpbssl(Integer.parseInt(packingInfo.getBznhxyjcpbssl())); //devicepackage.setBznhxyjcpbssl(Integer.parseInt(packingInfo.getBznhxyjcpbssl()));
devicepackage.setBznhxyjcpbssl(getInteger(packingInfo.getBznhxyjcpbssl()));
return devicepackage; return devicepackage;
} }
@ -259,4 +260,12 @@ public class DeviceSaveService {
return s.length()>255 ? s.substring(0,255) : s; return s.length()>255 ? s.substring(0,255) : s;
else return s; else return s;
} }
private Integer getInteger(String s){
try
{
return Integer.parseInt(s);
}catch(Exception e) {
return 0;
}
}
} }

@ -1,31 +1,69 @@
package com.glxp.udidl.admin.service.DataSync; package com.glxp.udidl.admin.service.DataSync;
//import com.alibaba.fastjson.JSON;
import com.alibaba.fastjson.JSONObject;
import com.fasterxml.jackson.databind.ObjectMapper;
import com.glxp.udidl.admin.config.GlobalConfig;
import com.glxp.udidl.admin.dto.udplat.UdplatDistributorModel;
import com.glxp.udidl.admin.dto.udplat.UdplatGoodsModel;
import com.glxp.udidl.admin.dto.udplat.UdplatHospitalModel;
import com.glxp.udidl.admin.dto.udplat.UdplatManufactureModel;
import com.glxp.udidl.admin.res.udplat.UdplatResponse;
import com.glxp.udidl.admin.util.Md5Utils; import com.glxp.udidl.admin.util.Md5Utils;
import com.glxp.udidl.common.res.BaseResponse;
import com.glxp.udidl.common.util.ResultVOUtils;
import lombok.extern.slf4j.Slf4j;
import org.apache.poi.ss.formula.functions.T;
import org.springframework.beans.factory.annotation.Autowired;
import org.springframework.core.ParameterizedTypeReference;
import org.springframework.http.HttpEntity; import org.springframework.http.HttpEntity;
import org.springframework.http.HttpHeaders; import org.springframework.http.HttpHeaders;
import org.springframework.http.HttpMethod;
import org.springframework.http.ResponseEntity;
import org.springframework.stereotype.Service; import org.springframework.stereotype.Service;
import org.springframework.web.client.RestTemplate; import org.springframework.web.client.RestTemplate;
import sun.reflect.generics.reflectiveObjects.ParameterizedTypeImpl;
import java.lang.reflect.Type;
import java.net.URLEncoder; import java.net.URLEncoder;
import java.util.HashMap; import java.util.*;
import java.util.Map;
import java.util.TreeMap;
@Service @Service
@Slf4j
public class UdplatDownloadService { public class UdplatDownloadService {
private String host="http://pre-mcs.udplat.org";//"http://120.32.125.20";//"http://pre.udplat.org/deal";"http://pre.udplat.org";// /* private String host="http://pre-mcs.udplat.org/mcs-api";//"http://120.32.125.20";//"http://pre.udplat.org/deal";"http://pre.udplat.org";//
private String appId="20004072"; private String appId="20004072";
private String secretKey="hoGxLSEsSyysnS9"; private String secretKey="hoGxLSEsSyysnS9";
private String userName="漳州片仔癀诊断"; private String userName="福建片仔癀诊断技术有限公司";//"漳州片仔癀诊断";*/
@Autowired
private GlobalConfig globalConfig;
private long getTime(){ private long getTime(){
return System.currentTimeMillis(); return System.currentTimeMillis();
} }
private String getSign(String time){ private String getUserName(){
String userName = "";
try
{
userName = URLEncoder.encode(globalConfig.getUdplat_userName(),"utf-8");
}catch (Exception e){
e.printStackTrace();
}
return userName;
}
/**
*
* @param mapParam
* @return
*/
private String getSign(Map<String,String> mapParam){
TreeMap<String,String> map= new TreeMap<>(); TreeMap<String,String> map= new TreeMap<>();
map.put("appId",appId);
map.put("userName", URLEncoder.encode(userName)); map.put("appId",globalConfig.getUdplat_appId());
map.put("time",time); map.put("userName",getUserName() );
map.put("secretKey",secretKey); map.put("secretKey",globalConfig.getUdplat_secretKey());
map.putAll(mapParam);
StringBuffer sb = new StringBuffer(); StringBuffer sb = new StringBuffer();
for(Map.Entry<String,String> entry:map.entrySet()){ for(Map.Entry<String,String> entry:map.entrySet()){
sb.append(entry.getKey()+"="+entry.getValue()); sb.append(entry.getKey()+"="+entry.getValue());
@ -33,28 +71,219 @@ public class UdplatDownloadService {
} }
String str = sb.toString(); String str = sb.toString();
String str0 = str.substring(0,str.length()-1); String str0 = str.substring(0,str.length()-1);
//System.out.println(globalConfig.getUdplat_userName());
System.out.println("userName"+globalConfig.getUdplat_userName());
System.out.println("签名前:"+str0); System.out.println("签名前:"+str0);
String result = Md5Utils.stringToMD5(str0); String result = Md5Utils.stringToMD5(str0);
System.out.println("签名:"+result); System.out.println("签名:"+result);
return result; return result;
} }
private Map<String, String> getHeader(){ private Map<String, String> getHeader(Map<String,String> mapParam){
Map<String, String> map = new HashMap<>(); Map<String, String> map = new HashMap<>();
String time = getTime()+""; String time = getTime()+"";
time = time.substring(0,time.length()-3); mapParam.put("time",time);
map.put("appId",appId); map.put("appId",globalConfig.getUdplat_appId());
map.put("userName", userName); map.put("userName", getUserName());
map.put("time",time); map.put("time",time);
map.put("secretKey",secretKey); map.put("secretKey",globalConfig.getUdplat_secretKey());
map.put("sign",getSign(time)); map.put("sign",getSign(mapParam));
return map; return map;
} }
public String getDistributor(){ /*public String getDistributor(){
Map<String,String> map=new HashMap<>();
String url="/hsapi/purchase/distributors"; String url="/hsapi/purchase/distributors";
String result = post(url,getHeader(),null); String result = post3(url,getHeader(map),null,null);
return result; return result;
}*/
public BaseResponse getAllDistributors(){
List<UdplatDistributorModel> result = new ArrayList<>();
int page = 1;
int totalPage = 1;
int pageSize=1000;
while (page<=totalPage){
UdplatResponse response = getDistributors(page,pageSize);
if(response.getSuccess() == false)
return ResultVOUtils.error(-1,response.getMessage());
totalPage = response.getData().getTotal()/pageSize + 1;
List<UdplatDistributorModel> list = response.getData().getData();
if(list.size()>0){
result.addAll(list);
}
page++;
}
return ResultVOUtils.success(result);
}
/**
*
* @return
*/
public BaseResponse getAllManufactures(){
List<UdplatManufactureModel> result = new ArrayList<>();
int page = 1;
int totalPage = 1;
int pageSize=1000;
while (page<=totalPage){
UdplatResponse response = getManufactures(page,pageSize);
//System.out.println(JSONObject.toJSON(response));
if(response.getSuccess() == false)
return ResultVOUtils.error(-1,response.getMessage());
//pageSize = response.getData().getPageSize();
totalPage = response.getData().getTotal()/pageSize + 1;
/* ObjectMapper mapper = new ObjectMapper();
mapper.convertValue()
JSON.toJSON(response.getData().getData())
String dataStr = JSONObject.toJSON(response.getData().getData());*/
//List<UdplatManufactureModel> list = Convert(response.getData().getData(),UdplatManufactureModel);
List<UdplatManufactureModel> list = response.getData().getData();
if(list.size()>0){
result.addAll(list);
}
/* if(list.size()> 0)
{
//String s = data.getString("data");
List<UdplatManufactureModel> list = //JSONObject.parseArray(s,UdplatManufactureModel.class);
if(list != null && list.size()>0)
result.addAll(list);
}*/
page++;
}
return ResultVOUtils.success(result);
}
public BaseResponse getAllHospitals(){
List<UdplatHospitalModel> result = new ArrayList<>();
int page = 1;
int totalPage = 1;
int pageSize=200;
while (page<=totalPage){
UdplatResponse response = getHospitals(page,pageSize);
if(response.getSuccess() == false)
return ResultVOUtils.error(-1,response.getMessage());
totalPage = response.getData().getTotal()/pageSize + 1;
List<UdplatHospitalModel> list = response.getData().getData();
if(list.size()>0){
result.addAll(list);
}
page++;
}
return ResultVOUtils.success(result);
}
/**
*
* @param startTime
* @param endTime
* @return
*/
public BaseResponse getAllUdplatGoods(String startTime,String endTime){
List<UdplatGoodsModel> result = new ArrayList<>();
int page = 1;
int totalPage = 1;
int pageSize=2000;
while (page<=totalPage){
UdplatResponse response = getUdplatGoods(page,pageSize,startTime,endTime);
if(response.getSuccess() == false)
return ResultVOUtils.error(-1,response.getMessage());
totalPage = response.getData().getTotal()/pageSize + 1;
List<UdplatGoodsModel> list = response.getData().getData();
if(list.size()>0){
result.addAll(list);
}
page++;
}
return ResultVOUtils.success(result);
}
private UdplatResponse getManufactures(int page,int pageSize){
String url="/hsapi/manufactures";
Map<String,String> map = new HashMap<>();
map.put("page",page+"");
map.put("pageSize",pageSize+"");
return post(UdplatManufactureModel.class,url,getHeader(map),null,map);
//return post(url,getHeader(map),null,map);
}
private UdplatResponse getDistributors(int page,int pageSize){
String url="/hsapi/purchase/distributors";
Map<String,String> map = new HashMap<>();
map.put("page",page+"");
map.put("pageSize",pageSize+"");
return post(UdplatDistributorModel.class,url,getHeader(map),null,map);
//return post(url,getHeader(map),null,map);
}
private UdplatResponse getHospitals(int page,int pageSize){
String url="/hsapi/distribute/hospitals";
Map<String,String> map = new HashMap<>();
map.put("page",page+"");
map.put("pageSize",pageSize+"");
return post(UdplatHospitalModel.class,url,getHeader(map),null,map);
}
public ResponseEntity<String> getPurchaseOrders(String orderCode){
String url="/hsapi/purchase/orders";
Map<String,String> map = new HashMap<>();
if(orderCode != null && orderCode != "")
map.put("orderCode",orderCode);
return get(url,getHeader(map),null,map);
} }
private String post(String url, Map<String, String> headerMap, Object jsonObject) { public ResponseEntity<String> getPurchaseOrderDetals(Long orderId){
String url="/hsapi/purchase/orderDetals";
Map<String,String> map = new HashMap<>();
map.put("orderId",orderId+"");
return get(url,getHeader(map),null,map);
}
public JSONObject getDistributeOrderDetails(Long orderId){
String url="/hsapi/distribute/orderDetails";
Map<String,String> map = new HashMap<>();
map.put("orderId",orderId+"");
return post2(url,getHeader(map),null,map);
}
public UdplatResponse getUdplatGoods(int page,int pageSize,String startTime,String endTime){
String url="/hsapi/purchase/delivery/goods/query";
Map<String,String> map = new HashMap<>();
map.put("page",page+"");
map.put("pageSize",pageSize+"");
if(startTime != null && !startTime.isEmpty())
map.put("startTime",startTime);
if(endTime != null && !endTime.isEmpty())
map.put("endTime",endTime);
return get(UdplatGoodsModel.class,url,getHeader(map),null,map);
}
public ResponseEntity<String> getUdplatGoods(int page,int pageSize){
String url="/hsapi/purchase/delivery/goods/query";
Map<String,String> map = new HashMap<>();
map.put("page",page+"");
map.put("pageSize",pageSize+"");
return get(url,getHeader(map),null,map);
}
public String getUdplatGoods2(int page,int pageSize){
String url="/hsapi/distribute/delivery/goods/query";
Map<String,String> map = new HashMap<>();
map.put("page",page+"");
map.put("pageSize",pageSize+"");
return post3(url,getHeader(map),null,map);
}
/*public String getManufacturesTest(){
String url="/hsapi/manufactures";
Map<String,String> map = new HashMap<>();
map.put("page","1");
map.put("pageSize","88");
//String result = post(url,getHeader(map),null,map);
JSONObject result = post2(url,getHeader(map),null,map);
if(result.getBoolean("success"))
{
JSONObject data = result.getJSONObject("data");
Integer page = data.getInteger("page");
Integer total = data.getInteger("total");
String s = data.getString("data");
List<UdplatManufactureModel> list = JSONObject.parseArray(s,UdplatManufactureModel.class);
System.out.println(JSONObject.toJSON(list));
}
return result.toString();
}*/
private <T> ParameterizedTypeReference<UdplatResponse<T>> getReference2(Class<T> clazz){
ParameterizedTypeImpl type = ParameterizedTypeImpl.make(UdplatResponse.class,new Type[]{clazz},
UdplatResponse.class.getDeclaringClass());
return ParameterizedTypeReference.forType(type);
}
private <T> UdplatResponse<T> post(Class<T> clazz, String url, Map<String, String> headerMap, Object jsonObject,Map<String,String> map){
HttpHeaders httpHeaders = new HttpHeaders(); HttpHeaders httpHeaders = new HttpHeaders();
for (Map.Entry<String, String> stringStringEntry : headerMap.entrySet()) { for (Map.Entry<String, String> stringStringEntry : headerMap.entrySet()) {
httpHeaders.add(stringStringEntry.getKey(), stringStringEntry.getValue()); httpHeaders.add(stringStringEntry.getKey(), stringStringEntry.getValue());
@ -62,7 +291,144 @@ public class UdplatDownloadService {
httpHeaders.add("Content-Type", "application/json"); httpHeaders.add("Content-Type", "application/json");
HttpEntity httpEntity = new HttpEntity(jsonObject, httpHeaders); HttpEntity httpEntity = new HttpEntity(jsonObject, httpHeaders);
RestTemplate restTemplate = new RestTemplate(); RestTemplate restTemplate = new RestTemplate();
String result = restTemplate.postForObject(host+url, httpEntity, String.class); String tmpUrl=url;
if(map != null)
{
String params = "";
for (Map.Entry<String,String> entry:map.entrySet()){
if(params == "")
params = "?"+entry.getKey()+"="+entry.getValue();
else
params = params+"&"+entry.getKey()+"="+entry.getValue();
}
tmpUrl+=params;
}
UdplatResponse<T> response = restTemplate.exchange(globalConfig.getUdplat_host()+tmpUrl, HttpMethod.POST,httpEntity,getReference2(clazz)).getBody();
log.info(JSONObject.toJSONString(response));
return response;
//return restTemplate.exchange(globalConfig.getUdplat_host()+tmpUrl, HttpMethod.POST,httpEntity,getReference2(clazz)).getBody();
}
private <T> UdplatResponse<T> get(Class<T> clazz, String url, Map<String, String> headerMap, Object jsonObject,Map<String,String> map){
HttpHeaders httpHeaders = new HttpHeaders();
for (Map.Entry<String, String> stringStringEntry : headerMap.entrySet()) {
httpHeaders.add(stringStringEntry.getKey(), stringStringEntry.getValue());
}
httpHeaders.add("Content-Type", "application/json");
HttpEntity httpEntity = new HttpEntity(jsonObject, httpHeaders);
RestTemplate restTemplate = new RestTemplate();
String tmpUrl=url;
if(map != null)
{
String params = "";
for (Map.Entry<String,String> entry:map.entrySet()){
if(params == "")
params = "?"+entry.getKey()+"="+entry.getValue();
else
params = params+"&"+entry.getKey()+"="+entry.getValue();
}
tmpUrl+=params;
}
UdplatResponse<T> response = restTemplate.exchange(globalConfig.getUdplat_host()+tmpUrl, HttpMethod.GET,httpEntity,getReference2(clazz)).getBody();
log.info(JSONObject.toJSONString(response));
return response;
//return restTemplate.exchange(globalConfig.getUdplat_host()+tmpUrl, HttpMethod.POST,httpEntity,getReference2(clazz)).getBody();
}
private UdplatResponse post(String url, Map<String, String> headerMap, Object jsonObject,Map<String,String> map) {
HttpHeaders httpHeaders = new HttpHeaders();
for (Map.Entry<String, String> stringStringEntry : headerMap.entrySet()) {
httpHeaders.add(stringStringEntry.getKey(), stringStringEntry.getValue());
}
httpHeaders.add("Content-Type", "application/json");
HttpEntity httpEntity = new HttpEntity(jsonObject, httpHeaders);
RestTemplate restTemplate = new RestTemplate();
String tmpUrl=url;
if(map != null)
{
String params = "";
for (Map.Entry<String,String> entry:map.entrySet()){
if(params == "")
params = "?"+entry.getKey()+"="+entry.getValue();
else
params = params+"&"+entry.getKey()+"="+entry.getValue();
}
tmpUrl+=params;
}
//String str = restTemplate.postForObject(globalConfig.getUdplat_host()+tmpUrl, httpEntity, String.class);
//return JSONObject.parseObject(str,UdplatResponse.class);
return restTemplate.postForObject(globalConfig.getUdplat_host()+tmpUrl, httpEntity, UdplatResponse.class);
}
private String post3(String url, Map<String, String> headerMap, Object jsonObject,Map<String,String> map) {
HttpHeaders httpHeaders = new HttpHeaders();
for (Map.Entry<String, String> stringStringEntry : headerMap.entrySet()) {
httpHeaders.add(stringStringEntry.getKey(), stringStringEntry.getValue());
}
httpHeaders.add("Content-Type", "application/json");
HttpEntity httpEntity = new HttpEntity(jsonObject, httpHeaders);
RestTemplate restTemplate = new RestTemplate();
String tmpUrl=url;
if(map != null)
{
String params = "";
for (Map.Entry<String,String> entry:map.entrySet()){
if(params == "")
params = "?"+entry.getKey()+"="+entry.getValue();
else
params = params+"&"+entry.getKey()+"="+entry.getValue();
}
tmpUrl+=params;
}
String result = restTemplate.postForObject(globalConfig.getUdplat_host()+tmpUrl, httpEntity, String.class);
return result;
}
private ResponseEntity<String> get(String url, Map<String, String> headerMap, Object jsonObject,Map<String,String> map) {
HttpHeaders httpHeaders = new HttpHeaders();
for (Map.Entry<String, String> stringStringEntry : headerMap.entrySet()) {
httpHeaders.add(stringStringEntry.getKey(), stringStringEntry.getValue());
}
httpHeaders.add("Content-Type", "application/json");
HttpEntity httpEntity = new HttpEntity(jsonObject, httpHeaders);
RestTemplate restTemplate = new RestTemplate();
String tmpUrl=url;
if(map != null)
{
String params = "";
for (Map.Entry<String,String> entry:map.entrySet()){
if(params == "")
params = "?"+entry.getKey()+"="+entry.getValue();
else
params = params+"&"+entry.getKey()+"="+entry.getValue();
}
tmpUrl+=params;
}
ResponseEntity<String> result = restTemplate.exchange(globalConfig.getUdplat_host()+tmpUrl, HttpMethod.GET,httpEntity,String.class);
return result; return result;
} }
private JSONObject post2(String url, Map<String, String> headerMap, Object jsonObject,Map<String,String> map) {
HttpHeaders httpHeaders = new HttpHeaders();
for (Map.Entry<String, String> stringStringEntry : headerMap.entrySet()) {
httpHeaders.add(stringStringEntry.getKey(), stringStringEntry.getValue());
}
httpHeaders.add("Content-Type", "application/json");
HttpEntity httpEntity = new HttpEntity(jsonObject, httpHeaders);
RestTemplate restTemplate = new RestTemplate();
String tmpUrl=url;
if(map != null)
{
String params = "";
for (Map.Entry<String,String> entry:map.entrySet()){
if(params == "")
params = "?"+entry.getKey()+"="+entry.getValue();
else
params = params+"&"+entry.getKey()+"="+entry.getValue();
}
tmpUrl+=params;
}
JSONObject result = restTemplate.postForObject(globalConfig.getUdplat_host()+tmpUrl, httpEntity, JSONObject.class);
return result;
}
private T Convert(Object obj, Class<T> responseType){
ObjectMapper mapper = new ObjectMapper();
return mapper.convertValue(obj,responseType);
}
} }

@ -0,0 +1,144 @@
package com.glxp.udidl.admin.service.DataSync;
import com.glxp.udidl.admin.dto.udplat.UdplatDistributorModel;
import com.glxp.udidl.admin.dto.udplat.UdplatGoodsModel;
import com.glxp.udidl.admin.dto.udplat.UdplatHospitalModel;
import com.glxp.udidl.admin.dto.udplat.UdplatManufactureModel;
import com.glxp.udidl.admin.entity.udplat.UdplatLog;
import com.glxp.udidl.admin.service.udplat.*;
import com.glxp.udidl.admin.util.DateUtil;
import com.glxp.udidl.common.res.BaseResponse;
import lombok.extern.slf4j.Slf4j;
import org.springframework.beans.factory.annotation.Autowired;
import org.springframework.scheduling.annotation.Async;
import org.springframework.stereotype.Service;
import java.util.Date;
import java.util.List;
@Service
@Slf4j
public class UdplatSyncService {
@Autowired
private UdplatDownloadService downloadService;
@Autowired
private UdplatLogService logService;
@Autowired
private UdplatManufactureService manufactureService;
@Autowired
private UdplatDistributorService distributorService;
@Autowired
private UdplatHospitalService hospitalService;
@Autowired
private UdplatGoodsService goodsService;
@Async
public void downloadAndSave(String downloadType,String tbName) {
log.info("tbName:"+tbName);
if (tbName == null || tbName == "" || tbName.equals("udplat_manufacture"))
SyncManufacture(downloadType);
if (tbName == null || tbName == "" || tbName.equals("udplat_distributor"))
SyncDistributor(downloadType);
if (tbName == null || tbName == "" || tbName.equals("udplat_hospital"))
SyncHospitals(downloadType);
if (tbName == null || tbName == "" || tbName.equals("udplat_goods"))
SyncUdplatGoods(downloadType, null, null);
}
public void downloadByDay(String downloadType){
SyncManufacture(downloadType);
SyncDistributor(downloadType);
SyncHospitals(downloadType);
String starTime=DateUtil.getYesterday();
String endTime=DateUtil.getLastDay(1);
SyncUdplatGoods(downloadType,starTime,endTime);
}
/**
*
* @param downloadType
*/
private void SyncManufacture(String downloadType){
BaseResponse response = downloadService.getAllManufactures();
if(response.getCode() != 20000)
{
UdplatLog udplatLog = new UdplatLog();
udplatLog.setDownloadType(downloadType);
udplatLog.setTbName("udplat_manufacture");
udplatLog.setType("error");
udplatLog.setMsg(response.getMessage());
udplatLog.setActionDate(DateUtil.parseDate(DateUtil.getDate()));
udplatLog.setCreateTime(new Date());
logService.insert(udplatLog);
return;
}
List<UdplatManufactureModel> list = (List<UdplatManufactureModel>)response.getData();
manufactureService.save(list,downloadType);
}
/**
*
* @param downloadType
*/
private void SyncDistributor(String downloadType){
BaseResponse response = downloadService.getAllDistributors();
if(response.getCode() != 20000)
{
UdplatLog udplatLog = new UdplatLog();
udplatLog.setDownloadType(downloadType);
udplatLog.setTbName("udplat_distributor");
udplatLog.setType("error");
udplatLog.setMsg(response.getMessage());
udplatLog.setActionDate(DateUtil.parseDate(DateUtil.getDate()));
udplatLog.setCreateTime(new Date());
logService.insert(udplatLog);
return;
}
List<UdplatDistributorModel> list = (List<UdplatDistributorModel>)response.getData();
distributorService.save(list,downloadType);
}
/**
*
* @param downloadType
*/
private void SyncHospitals(String downloadType){
BaseResponse response = downloadService.getAllHospitals();
if(response.getCode() != 20000)
{
UdplatLog udplatLog = new UdplatLog();
udplatLog.setDownloadType(downloadType);
udplatLog.setTbName("udplat_hospital");
udplatLog.setType("error");
udplatLog.setMsg(response.getMessage());
udplatLog.setActionDate(DateUtil.parseDate(DateUtil.getDate()));
udplatLog.setCreateTime(new Date());
logService.insert(udplatLog);
return;
}
List<UdplatHospitalModel> list = (List<UdplatHospitalModel>)response.getData();
hospitalService.save(list,downloadType);
}
/**
*
* @param downloadType
* @param startTime
* @param endTime
*/
public void SyncUdplatGoods(String downloadType,String startTime,String endTime){
BaseResponse response = downloadService.getAllUdplatGoods(startTime,endTime);
if(response.getCode() != 20000)
{
UdplatLog udplatLog = new UdplatLog();
udplatLog.setDownloadType(downloadType);
udplatLog.setTbName("udplat_goods");
udplatLog.setType("error");
udplatLog.setMsg(response.getMessage());
udplatLog.setActionDate(DateUtil.parseDate(DateUtil.getDate()));
udplatLog.setCreateTime(new Date());
logService.insert(udplatLog);
return;
}
List<UdplatGoodsModel> list = (List<UdplatGoodsModel>)response.getData();
goodsService.save(list,downloadType);
}
}

@ -8,7 +8,7 @@ import java.util.List;
public interface UdplatDistributorService { public interface UdplatDistributorService {
BaseResponse getList(BaseParam param); BaseResponse getList(BaseParam param);
BaseResponse imports(List<UdplatDistributorModel> models); BaseResponse save(List<UdplatDistributorModel> models,String type);
/*int insert(UdplatDistributor record); /*int insert(UdplatDistributor record);
UdplatDistributor selectByPrimaryKey(Integer id); UdplatDistributor selectByPrimaryKey(Integer id);

@ -1,9 +1,13 @@
package com.glxp.udidl.admin.service.udplat; package com.glxp.udidl.admin.service.udplat;
import com.glxp.udidl.admin.dto.udplat.BaseParam; import com.glxp.udidl.admin.dto.udplat.BaseParam;
import com.glxp.udidl.admin.dto.udplat.DeliveryGoods;
import com.glxp.udidl.admin.dto.udplat.HospitalGoods;
import com.glxp.udidl.admin.dto.udplat.UdplatGoodsModel;
import com.glxp.udidl.common.res.BaseResponse; import com.glxp.udidl.common.res.BaseResponse;
import java.io.InputStream; import java.io.InputStream;
import java.util.List;
public interface UdplatGoodsService { public interface UdplatGoodsService {
BaseResponse getList(BaseParam param); BaseResponse getList(BaseParam param);
@ -13,5 +17,26 @@ public interface UdplatGoodsService {
* @param type 1 2 * @param type 1 2
* @return * @return
*/ */
BaseResponse importExcel(InputStream is,int type) ; BaseResponse importExcel(InputStream is, int type) ;
/**
*
* @param models
* @return
*/
BaseResponse save(List<UdplatGoodsModel> models, String downloadType);
/**
*
* @param list
* @return
*/
BaseResponse importHospitalGoods(List<HospitalGoods> list);
/**
*
* @param list
* @return
*/
BaseResponse importDeliveryGoods(List<DeliveryGoods> list);
} }

@ -8,5 +8,5 @@ import java.util.List;
public interface UdplatHospitalService { public interface UdplatHospitalService {
BaseResponse getList(BaseParam param); BaseResponse getList(BaseParam param);
BaseResponse imports(List<UdplatHospitalModel> models); BaseResponse save(List<UdplatHospitalModel> models,String type);
} }

@ -8,5 +8,5 @@ import java.util.List;
public interface UdplatManufactureService { public interface UdplatManufactureService {
BaseResponse getList(BaseParam param); BaseResponse getList(BaseParam param);
BaseResponse imports(List<UdplatManufactureModel> models); BaseResponse save(List<UdplatManufactureModel> models,String type);
} }

@ -40,11 +40,12 @@ public class UdplatDistributorServiceImpl implements UdplatDistributorService {
} }
@Override @Override
public BaseResponse imports(List<UdplatDistributorModel> models) { public BaseResponse save(List<UdplatDistributorModel> models,String type) {
if (models != null && models.size() > 0) { if (models != null && models.size() > 0) {
for (UdplatDistributorModel item : models) { for (UdplatDistributorModel item : models) {
UdplatDistributor entity = mapper.selectByDistributorId(item.getDistributorId()); UdplatDistributor entity = mapper.selectByDistributorId(item.getDistributorId());
if (entity == null) { if (entity == null) {
entity = new UdplatDistributor();
BeanUtils.copyProperties(item, entity); BeanUtils.copyProperties(item, entity);
entity.setCreateTime(new Date()); entity.setCreateTime(new Date());
mapper.insert(entity); mapper.insert(entity);
@ -57,7 +58,7 @@ public class UdplatDistributorServiceImpl implements UdplatDistributorService {
} }
} }
UdplatLog udplatLog = new UdplatLog(); UdplatLog udplatLog = new UdplatLog();
udplatLog.setDownloadType("import"); udplatLog.setDownloadType(type);
udplatLog.setTbName("udplat_distributor"); udplatLog.setTbName("udplat_distributor");
udplatLog.setType("info"); udplatLog.setType("info");
udplatLog.setMsg("执行成功!"); udplatLog.setMsg("执行成功!");

@ -38,7 +38,7 @@ public class UdplatGoodsMatchServiceImpl implements UdplatGoodsMatchService {
udplatGoodsMatchMapper.insert(udplatGoodsMatch); udplatGoodsMatchMapper.insert(udplatGoodsMatch);
}else }else
{ {
udplatGoodsMatch.setDeliveryGoodId(model.getDeliveryGoodId()); udplatGoodsMatch.setDeliveryGoodsId(model.getDeliveryGoodsId());
udplatGoodsMatch.setMedicalCode(model.getMedicalCode()); udplatGoodsMatch.setMedicalCode(model.getMedicalCode());
udplatGoodsMatch.setUpdateTime(new Date()); udplatGoodsMatch.setUpdateTime(new Date());
udplatGoodsMatchMapper.updateByPrimaryKey(udplatGoodsMatch); udplatGoodsMatchMapper.updateByPrimaryKey(udplatGoodsMatch);

@ -7,6 +7,7 @@ import com.glxp.udidl.admin.dao.udplat.UdplatGoodsMapper;
import com.glxp.udidl.admin.dto.udplat.BaseParam; import com.glxp.udidl.admin.dto.udplat.BaseParam;
import com.glxp.udidl.admin.dto.udplat.DeliveryGoods; import com.glxp.udidl.admin.dto.udplat.DeliveryGoods;
import com.glxp.udidl.admin.dto.udplat.HospitalGoods; import com.glxp.udidl.admin.dto.udplat.HospitalGoods;
import com.glxp.udidl.admin.dto.udplat.UdplatGoodsModel;
import com.glxp.udidl.admin.entity.udplat.UdplatGoods; import com.glxp.udidl.admin.entity.udplat.UdplatGoods;
import com.glxp.udidl.admin.entity.udplat.UdplatLog; import com.glxp.udidl.admin.entity.udplat.UdplatLog;
import com.glxp.udidl.admin.res.PageSimpleResponse; import com.glxp.udidl.admin.res.PageSimpleResponse;
@ -33,7 +34,7 @@ public class UdplatGoodsServiceImpl implements UdplatGoodsService {
@Autowired @Autowired
private UdplatLogService logService; private UdplatLogService logService;
public BaseResponse getList(BaseParam param){ public BaseResponse getList(BaseParam param) {
PageHelper.startPage(param.getPage(), param.getLimit()); PageHelper.startPage(param.getPage(), param.getLimit());
if (param.getEndDate() != null && !param.getEndDate().isEmpty()) if (param.getEndDate() != null && !param.getEndDate().isEmpty())
param.setEndDate(DateUtil.formatDate(DateUtil.addDays(DateUtil.parseDate(param.getEndDate()), 1))); param.setEndDate(DateUtil.formatDate(DateUtil.addDays(DateUtil.parseDate(param.getEndDate()), 1)));
@ -44,26 +45,26 @@ public class UdplatGoodsServiceImpl implements UdplatGoodsService {
pageSimpleResponse.setList(list); pageSimpleResponse.setList(list);
return ResultVOUtils.success(pageSimpleResponse); return ResultVOUtils.success(pageSimpleResponse);
} }
@Override @Override
public BaseResponse importExcel(InputStream is, int type) { public BaseResponse importExcel(InputStream is, int type) {
int count=0; int count = 0;
try{ try {
if(type == 1) { if (type == 1) {
List<HospitalGoods> list1 = getData1(is); List<HospitalGoods> list1 = getData1(is);
//list = BeanUtils.convertList2List(list1,UdplatGoods.class); //list = BeanUtils.convertList2List(list1,UdplatGoods.class);
if(list1 == null || list1.size()<1) if (list1 == null || list1.size() < 1)
return ResultVOUtils.error(-1,"无数据!"); return ResultVOUtils.error(-1, "无数据!");
count = SaveHospitalGoods(list1); count = SaveHospitalGoods(list1);
}else } else if (type == 2) {
if(type == 2){
List<DeliveryGoods> list2 = getData2(is); List<DeliveryGoods> list2 = getData2(is);
//log.info(JSONUtil.toJsonStr(list2)); //log.info(JSONUtil.toJsonStr(list2));
//list = BeanUtils.convertList2List(list2,UdplatGoods.class); //list = BeanUtils.convertList2List(list2,UdplatGoods.class);
if(list2 == null || list2.size()<1) if (list2 == null || list2.size() < 1)
return ResultVOUtils.error(-1,"无数据!"); return ResultVOUtils.error(-1, "无数据!");
count = SaveDeliveryGoods(list2); count = SaveDeliveryGoods(list2);
}else } else
return ResultVOUtils.error(-1,"文件类型不匹配!"); return ResultVOUtils.error(-1, "文件类型不匹配!");
UdplatLog udplatLog = new UdplatLog(); UdplatLog udplatLog = new UdplatLog();
udplatLog.setDownloadType("import"); udplatLog.setDownloadType("import");
udplatLog.setTbName("udplat_goods"); udplatLog.setTbName("udplat_goods");
@ -75,7 +76,7 @@ public class UdplatGoodsServiceImpl implements UdplatGoodsService {
logService.insert(udplatLog); logService.insert(udplatLog);
return ResultVOUtils.success(count); return ResultVOUtils.success(count);
//return save(list); //return save(list);
}catch (Exception e){ } catch (Exception e) {
UdplatLog udplatLog = new UdplatLog(); UdplatLog udplatLog = new UdplatLog();
udplatLog.setDownloadType("import"); udplatLog.setDownloadType("import");
udplatLog.setTbName("udplat_goods"); udplatLog.setTbName("udplat_goods");
@ -85,32 +86,105 @@ public class UdplatGoodsServiceImpl implements UdplatGoodsService {
udplatLog.setActionDate(DateUtil.parseDate(DateUtil.getDate())); udplatLog.setActionDate(DateUtil.parseDate(DateUtil.getDate()));
udplatLog.setCreateTime(new Date()); udplatLog.setCreateTime(new Date());
logService.insert(udplatLog); logService.insert(udplatLog);
return ResultVOUtils.error(-1,"出错了:"+e.getMessage()); return ResultVOUtils.error(-1, "出错了:" + e.getMessage());
} }
//return ResultVOUtils.success(); //return ResultVOUtils.success();
} }
private List<HospitalGoods> getData1(InputStream is) throws Exception{
public BaseResponse save(List<UdplatGoodsModel> models,String downloadType) {
if (models.size() > 0)
try
{
for (UdplatGoodsModel item : models) {
String deliveryGoodsId = item.getDeliveryGoodsId();
UdplatGoods goods = udplatGoodsMapper.selectByGoodsId(deliveryGoodsId);
if(goods == null){
goods = new UdplatGoods();
goods.setId(0L);
}
BeanUtils.copyProperties(item,goods);
if (goods.getId() > 0) {
goods.setUpdateTime(new Date());
udplatGoodsMapper.update(goods);
} else {
goods.setUuid(BeanUtils.getUUId());
goods.setCreateTime(new Date());
udplatGoodsMapper.insert(goods);
}
}
}catch (Exception e){
e.printStackTrace();
log.error(JSON.toJSONString(e.getStackTrace()));
UdplatLog udplatLog = new UdplatLog();
udplatLog.setDownloadType(downloadType);
udplatLog.setTbName("udplat_goods");
udplatLog.setType("error");
udplatLog.setMsg(e.getMessage());
udplatLog.setActionDate(DateUtil.parseDate(DateUtil.getDate()));
udplatLog.setCreateTime(new Date());
logService.insert(udplatLog);
return ResultVOUtils.error(-1,e.getMessage());
}
UdplatLog udplatLog = new UdplatLog();
udplatLog.setDownloadType(downloadType);
udplatLog.setTbName("udplat_goods");
udplatLog.setType("info");
udplatLog.setMsg("执行成功!");
udplatLog.setActionDate(DateUtil.parseDate(DateUtil.getDate()));
udplatLog.setTotalCount(models.size());
udplatLog.setCreateTime(new Date());
logService.insert(udplatLog);
return ResultVOUtils.success();
}
private List<HospitalGoods> getData1(InputStream is) throws Exception {
ExcelUtil<HospitalGoods> util = new ExcelUtil(HospitalGoods.class); ExcelUtil<HospitalGoods> util = new ExcelUtil(HospitalGoods.class);
return util.importExcel(is); return util.importExcel(is);
} }
private List<DeliveryGoods> getData2(InputStream is) throws Exception{
private List<DeliveryGoods> getData2(InputStream is) throws Exception {
ExcelUtil<DeliveryGoods> util = new ExcelUtil(DeliveryGoods.class); ExcelUtil<DeliveryGoods> util = new ExcelUtil(DeliveryGoods.class);
return util.importExcel(is); return util.importExcel(is);
} }
private int SaveHospitalGoods(List<HospitalGoods> list){ public BaseResponse importHospitalGoods(List<HospitalGoods> list){
int count=0; int count = SaveHospitalGoods(list);
for(HospitalGoods item:list){ UdplatLog udplatLog = new UdplatLog();
String goodId = item.getDeliveryGoodId(); udplatLog.setDownloadType("import");
if(goodId == null || goodId.isEmpty()) udplatLog.setTbName("udplat_goods");
udplatLog.setType("info");
udplatLog.setMsg("执行成功!");
udplatLog.setActionDate(DateUtil.parseDate(DateUtil.getDate()));
udplatLog.setTotalCount(count);
udplatLog.setCreateTime(new Date());
logService.insert(udplatLog);
return ResultVOUtils.success(count);
}
public BaseResponse importDeliveryGoods(List<DeliveryGoods> list){
int count = SaveDeliveryGoods(list);
UdplatLog udplatLog = new UdplatLog();
udplatLog.setDownloadType("import");
udplatLog.setTbName("udplat_goods");
udplatLog.setType("info");
udplatLog.setMsg("执行成功!");
udplatLog.setActionDate(DateUtil.parseDate(DateUtil.getDate()));
udplatLog.setTotalCount(count);
udplatLog.setCreateTime(new Date());
logService.insert(udplatLog);
return ResultVOUtils.success(count);
}
private int SaveHospitalGoods(List<HospitalGoods> list) {
int count = 0;
for (HospitalGoods item : list) {
String projectGoodsCode = item.getProjectGoodsCode();
if (projectGoodsCode == null || projectGoodsCode.isEmpty())
continue; continue;
UdplatGoods goods = udplatGoodsMapper.selectByGoodId(goodId); UdplatGoods goods = udplatGoodsMapper.selectByProjectGoodsCode(projectGoodsCode);
goods = HospitalGoodsToUdplatGoods(item,goods); goods = HospitalGoodsToUdplatGoods(item, goods);
if(goods.getId()>0){ if (goods.getId() > 0) {
goods.setUpdateTime(new Date()); goods.setUpdateTime(new Date());
udplatGoodsMapper.update(goods); udplatGoodsMapper.update(goods);
}else } else {
{
goods.setUuid(BeanUtils.getUUId()); goods.setUuid(BeanUtils.getUUId());
goods.setCreateTime(new Date()); goods.setCreateTime(new Date());
udplatGoodsMapper.insert(goods); udplatGoodsMapper.insert(goods);
@ -119,20 +193,21 @@ public class UdplatGoodsServiceImpl implements UdplatGoodsService {
} }
return count; return count;
} }
private int SaveDeliveryGoods(List<DeliveryGoods> list){
int count=0; private int SaveDeliveryGoods(List<DeliveryGoods> list) {
for(DeliveryGoods item:list){ int count = 0;
String goodId = item.getDeliveryGoodId(); for (DeliveryGoods item : list) {
if(goodId == null || goodId.isEmpty()) //String goodId = item.getDeliveryGoodId();
String projectGoodsCode = item.getProjectGoodsCode();
if (projectGoodsCode == null || projectGoodsCode.isEmpty())
continue; continue;
UdplatGoods goods = udplatGoodsMapper.selectByGoodId(goodId); UdplatGoods goods = udplatGoodsMapper.selectByProjectGoodsCode(projectGoodsCode);
goods = DeliveryGoodsToUdplatGoods(item,goods); goods = DeliveryGoodsToUdplatGoods(item, goods);
System.out.println(JSON.toJSONString(goods)); //System.out.println(JSON.toJSONString(goods));
if(goods.getId()>0L){ if (goods.getId() > 0L) {
goods.setUpdateTime(new Date()); goods.setUpdateTime(new Date());
udplatGoodsMapper.update(goods); udplatGoodsMapper.update(goods);
}else } else {
{
goods.setUuid(BeanUtils.getUUId()); goods.setUuid(BeanUtils.getUUId());
goods.setCreateTime(new Date()); goods.setCreateTime(new Date());
udplatGoodsMapper.insert(goods); udplatGoodsMapper.insert(goods);
@ -141,12 +216,14 @@ public class UdplatGoodsServiceImpl implements UdplatGoodsService {
} }
return count; return count;
} }
private UdplatGoods HospitalGoodsToUdplatGoods(HospitalGoods hospitalGoods, UdplatGoods udplatGoods){
if(udplatGoods == null){ private UdplatGoods HospitalGoodsToUdplatGoods(HospitalGoods hospitalGoods, UdplatGoods udplatGoods) {
if (udplatGoods == null) {
udplatGoods = new UdplatGoods(); udplatGoods = new UdplatGoods();
udplatGoods.setId(0L); udplatGoods.setId(0L);
} }
udplatGoods.setDeliveryGoodId(hospitalGoods.getDeliveryGoodId()); //udplatGoods.setDeliveryGoodsId(hospitalGoods.getDeliveryGoodsId());
udplatGoods.setProjectGoodsCode(hospitalGoods.getProjectGoodsCode());
udplatGoods.setManufactureName(hospitalGoods.getManufactureName()); udplatGoods.setManufactureName(hospitalGoods.getManufactureName());
udplatGoods.setDistributorName(hospitalGoods.getDistributorName()); udplatGoods.setDistributorName(hospitalGoods.getDistributorName());
udplatGoods.setProductName(hospitalGoods.getProductName()); udplatGoods.setProductName(hospitalGoods.getProductName());
@ -163,13 +240,14 @@ public class UdplatGoodsServiceImpl implements UdplatGoodsService {
udplatGoods.setMedicalCode(hospitalGoods.getMedicalCode()); udplatGoods.setMedicalCode(hospitalGoods.getMedicalCode());
return udplatGoods; return udplatGoods;
} }
private UdplatGoods DeliveryGoodsToUdplatGoods(DeliveryGoods deliveryGoods, UdplatGoods udplatGoods){
if(udplatGoods == null) private UdplatGoods DeliveryGoodsToUdplatGoods(DeliveryGoods deliveryGoods, UdplatGoods udplatGoods) {
{ if (udplatGoods == null) {
udplatGoods = new UdplatGoods(); udplatGoods = new UdplatGoods();
udplatGoods.setId(0L); udplatGoods.setId(0L);
} }
udplatGoods.setDeliveryGoodId(deliveryGoods.getDeliveryGoodId()); //udplatGoods.setDeliveryGoodsId(deliveryGoods.getDeliveryGoodsId());
udplatGoods.setProjectGoodsCode(deliveryGoods.getProjectGoodsCode());
udplatGoods.setProductName(deliveryGoods.getProductName()); udplatGoods.setProductName(deliveryGoods.getProductName());
udplatGoods.setModel(deliveryGoods.getModel()); udplatGoods.setModel(deliveryGoods.getModel());
udplatGoods.setSpec(deliveryGoods.getSpec()); udplatGoods.setSpec(deliveryGoods.getSpec());

@ -42,11 +42,12 @@ public class UdplatHospitalServiceImpl implements UdplatHospitalService {
} }
@Override @Override
public BaseResponse imports(List<UdplatHospitalModel> models) { public BaseResponse save(List<UdplatHospitalModel> models,String type) {
if (models != null && models.size() > 0) { if (models != null && models.size() > 0) {
for (UdplatHospitalModel item : models) { for (UdplatHospitalModel item : models) {
UdplatHospital entity = mapper.selectByPurchaseId(item.getPurchaseId()); UdplatHospital entity = mapper.selectByPurchaseId(item.getPurchaseId());
if (entity == null) { if (entity == null) {
entity = new UdplatHospital();
BeanUtils.copyProperties(item, entity); BeanUtils.copyProperties(item, entity);
entity.setCreateTime(new Date()); entity.setCreateTime(new Date());
mapper.insert(entity); mapper.insert(entity);
@ -59,7 +60,7 @@ public class UdplatHospitalServiceImpl implements UdplatHospitalService {
} }
} }
UdplatLog udplatLog = new UdplatLog(); UdplatLog udplatLog = new UdplatLog();
udplatLog.setDownloadType("import"); udplatLog.setDownloadType(type);
udplatLog.setTbName("udplat_hospital"); udplatLog.setTbName("udplat_hospital");
udplatLog.setType("info"); udplatLog.setType("info");
udplatLog.setMsg("执行成功!"); udplatLog.setMsg("执行成功!");

@ -40,11 +40,12 @@ public class UdplatManufactureServiceImpl implements UdplatManufactureService {
} }
@Override @Override
public BaseResponse imports(List<UdplatManufactureModel> models) { public BaseResponse save(List<UdplatManufactureModel> models,String type) {
if (models != null && models.size() > 0) { if (models != null && models.size() > 0) {
for (UdplatManufactureModel item : models) { for (UdplatManufactureModel item : models) {
UdplatManufacture entity = mapper.selectByManufactureId(item.getManufactureId()); UdplatManufacture entity = mapper.selectByManufactureId(item.getManufactureId());
if (entity == null) { if (entity == null) {
entity = new UdplatManufacture();
BeanUtils.copyProperties(item, entity); BeanUtils.copyProperties(item, entity);
entity.setCreateTime(new Date()); entity.setCreateTime(new Date());
mapper.insert(entity); mapper.insert(entity);
@ -57,7 +58,8 @@ public class UdplatManufactureServiceImpl implements UdplatManufactureService {
} }
} }
UdplatLog udplatLog = new UdplatLog(); UdplatLog udplatLog = new UdplatLog();
udplatLog.setDownloadType("import"); //udplatLog.setDownloadType("import");
udplatLog.setDownloadType(type);
udplatLog.setTbName("udplat_manufacture"); udplatLog.setTbName("udplat_manufacture");
udplatLog.setType("info"); udplatLog.setType("info");
udplatLog.setMsg("执行成功!"); udplatLog.setMsg("执行成功!");

@ -0,0 +1,61 @@
package com.glxp.udidl.admin.thread;
import com.alibaba.fastjson.JSON;
import com.glxp.udidl.admin.dao.info.ScheduledDao;
import com.glxp.udidl.admin.entity.info.ScheduledEntity;
import com.glxp.udidl.admin.entity.udplat.UdplatLog;
import com.glxp.udidl.admin.req.info.ScheduledRequest;
import com.glxp.udidl.admin.service.DataSync.UdplatSyncService;
import com.glxp.udidl.admin.service.udplat.UdplatLogService;
import com.glxp.udidl.admin.util.DateUtil;
import lombok.extern.slf4j.Slf4j;
import org.springframework.beans.factory.annotation.Autowired;
import org.springframework.scheduling.annotation.EnableScheduling;
import org.springframework.scheduling.annotation.SchedulingConfigurer;
import org.springframework.scheduling.config.ScheduledTaskRegistrar;
import org.springframework.scheduling.support.CronTrigger;
import org.springframework.stereotype.Component;
import javax.annotation.Resource;
import java.util.Date;
@Component
@EnableScheduling
@Slf4j
public class DownloadTaskUdplat implements SchedulingConfigurer {
@Resource
private ScheduledDao scheduledDao;
@Autowired
UdplatSyncService udplatSyncService;
@Autowired
private UdplatLogService logService; //日志
@Override
public void configureTasks(ScheduledTaskRegistrar scheduledTaskRegistrar) {
scheduledTaskRegistrar.addTriggerTask(() -> process(),
triggerContext -> {
ScheduledRequest scheduledRequest = new ScheduledRequest();
scheduledRequest.setCronName("downloadTaskUdplat");
ScheduledEntity scheduledEntity = scheduledDao.findScheduled(scheduledRequest);
String cron = scheduledEntity.getCron();
if (cron.isEmpty()) {
log.error("cron is null");
}
return new CronTrigger(cron).nextExecutionTime(triggerContext);
});
}
private void process(){
try {
udplatSyncService.downloadByDay("auto");
}catch (Exception e){
UdplatLog udplatLog = new UdplatLog();
udplatLog.setDownloadType("auto");
//udplatLog.setTbName("");
udplatLog.setType("error");
udplatLog.setMsg(e.getMessage());
udplatLog.setContent(JSON.toJSONString(e.getStackTrace()));
udplatLog.setActionDate(DateUtil.parseDate(DateUtil.getDate()));
udplatLog.setCreateTime(new Date());
logService.insert(udplatLog);
}
}
}

@ -17,4 +17,13 @@ UDIC_MIPSDOWNLOAD_URL = http://127.0.0.1:8080/UDIC_MIPSDL_Server
config.downloadPath=E:/temp config.downloadPath=E:/temp
config.openAuth=false config.openAuth=false
spring.servlet.multipart.max-file-size=100MB spring.servlet.multipart.max-file-size=100MB
spring.servlet.multipart.max-request-size=1000MB spring.servlet.multipart.max-request-size=1000MB
# 阳光采购平台
udplat.host=http://pre-mcs.udplat.org/mcs-api
#udplat.appId=10000090
#udplat.secretKey=QchvZnPYK1jyOYV
#udplat.userName=\u8bcf\u5b89\u53bf\u533b\u9662
udplat.appId=20004072
udplat.secretKey=hoGxLSEsSyysnS9
udplat.userName=\u798F\u5EFA\u7247\u4ED4\u7640\u8BCA\u65AD\u6280\u672F\u6709\u9650\u516C\u53F8

@ -15,9 +15,9 @@
where id = #{id,jdbcType=INTEGER} where id = #{id,jdbcType=INTEGER}
</delete> </delete>
<insert id="insert" parameterType="com.glxp.udidl.admin.entity.udplat.UdplatDistributor"> <insert id="insert" parameterType="com.glxp.udidl.admin.entity.udplat.UdplatDistributor">
insert into udplat_distributor (id, distributorId, distributorCode, insert into udplat_distributor ( distributorId, distributorCode,
distributorName, createTime) distributorName, createTime)
values (#{id,jdbcType=INTEGER}, #{distributorId,jdbcType=INTEGER}, #{distributorCode,jdbcType=VARCHAR}, values (#{distributorId,jdbcType=INTEGER}, #{distributorCode,jdbcType=VARCHAR},
#{distributorName,jdbcType=VARCHAR}, #{createTime,jdbcType=TIMESTAMP}) #{distributorName,jdbcType=VARCHAR}, #{createTime,jdbcType=TIMESTAMP})
</insert> </insert>
<update id="updateByPrimaryKey" parameterType="com.glxp.udidl.admin.entity.udplat.UdplatDistributor"> <update id="updateByPrimaryKey" parameterType="com.glxp.udidl.admin.entity.udplat.UdplatDistributor">

@ -4,7 +4,7 @@
<resultMap id="BaseResultMap" type="com.glxp.udidl.admin.entity.udplat.UdplatGoods"> <resultMap id="BaseResultMap" type="com.glxp.udidl.admin.entity.udplat.UdplatGoods">
<id column="id" jdbcType="BIGINT" property="id" /> <id column="id" jdbcType="BIGINT" property="id" />
<result column="uuid" jdbcType="VARCHAR" property="uuid" /> <result column="uuid" jdbcType="VARCHAR" property="uuid" />
<result column="deliveryGoodId" jdbcType="VARCHAR" property="deliveryGoodId" /> <result column="deliveryGoodsId" jdbcType="VARCHAR" property="deliveryGoodsId" />
<result column="projectGoodsCode" jdbcType="VARCHAR" property="projectGoodsCode" /> <result column="projectGoodsCode" jdbcType="VARCHAR" property="projectGoodsCode" />
<result column="deliveryGoodsCode" jdbcType="VARCHAR" property="deliveryGoodsCode" /> <result column="deliveryGoodsCode" jdbcType="VARCHAR" property="deliveryGoodsCode" />
<result column="manufactureId" jdbcType="BIGINT" property="manufactureId" /> <result column="manufactureId" jdbcType="BIGINT" property="manufactureId" />
@ -41,7 +41,7 @@
where id = #{id,jdbcType=BIGINT} where id = #{id,jdbcType=BIGINT}
</delete> </delete>
<insert id="insert" parameterType="com.glxp.udidl.admin.entity.udplat.UdplatGoods"> <insert id="insert" parameterType="com.glxp.udidl.admin.entity.udplat.UdplatGoods">
insert into udplat_goods ( uuid, deliveryGoodId, insert into udplat_goods ( uuid, deliveryGoodsId,
projectGoodsCode, deliveryGoodsCode, manufactureId, projectGoodsCode, deliveryGoodsCode, manufactureId,
manufactureName, distributorId, distributorName, manufactureName, distributorId, distributorName,
productName, compId, model, productName, compId, model,
@ -53,7 +53,7 @@
changedTime, proxyName, onlineStatus, changedTime, proxyName, onlineStatus,
medicalCode, createTime medicalCode, createTime
) )
values (#{uuid,jdbcType=VARCHAR}, #{deliveryGoodId,jdbcType=VARCHAR}, values (#{uuid,jdbcType=VARCHAR}, #{deliveryGoodsId,jdbcType=VARCHAR},
#{projectGoodsCode,jdbcType=VARCHAR}, #{deliveryGoodsCode,jdbcType=VARCHAR}, #{manufactureId,jdbcType=BIGINT}, #{projectGoodsCode,jdbcType=VARCHAR}, #{deliveryGoodsCode,jdbcType=VARCHAR}, #{manufactureId,jdbcType=BIGINT},
#{manufactureName,jdbcType=VARCHAR}, #{distributorId,jdbcType=BIGINT}, #{distributorName,jdbcType=VARCHAR}, #{manufactureName,jdbcType=VARCHAR}, #{distributorId,jdbcType=BIGINT}, #{distributorName,jdbcType=VARCHAR},
#{productName,jdbcType=VARCHAR}, #{compId,jdbcType=BIGINT}, #{model,jdbcType=VARCHAR}, #{productName,jdbcType=VARCHAR}, #{compId,jdbcType=BIGINT}, #{model,jdbcType=VARCHAR},
@ -69,7 +69,7 @@
<update id="update" parameterType="com.glxp.udidl.admin.entity.udplat.UdplatGoods"> <update id="update" parameterType="com.glxp.udidl.admin.entity.udplat.UdplatGoods">
update udplat_goods update udplat_goods
set set
deliveryGoodId = #{deliveryGoodId,jdbcType=VARCHAR}, deliveryGoodsId = #{deliveryGoodsId,jdbcType=VARCHAR},
projectGoodsCode = #{projectGoodsCode,jdbcType=VARCHAR}, projectGoodsCode = #{projectGoodsCode,jdbcType=VARCHAR},
deliveryGoodsCode = #{deliveryGoodsCode,jdbcType=VARCHAR}, deliveryGoodsCode = #{deliveryGoodsCode,jdbcType=VARCHAR},
manufactureId = #{manufactureId,jdbcType=BIGINT}, manufactureId = #{manufactureId,jdbcType=BIGINT},
@ -101,17 +101,26 @@
updateTime = #{updateTime,jdbcType=TIMESTAMP} updateTime = #{updateTime,jdbcType=TIMESTAMP}
where id = #{id,jdbcType=BIGINT} where id = #{id,jdbcType=BIGINT}
</update> </update>
<select id="selectByGoodId" parameterType="java.lang.String" resultMap="BaseResultMap"> <select id="selectByGoodsId" parameterType="java.lang.String" resultMap="BaseResultMap">
select id, uuid, deliveryGoodId, projectGoodsCode, deliveryGoodsCode, manufactureId, select id, uuid, deliveryGoodsId, projectGoodsCode, deliveryGoodsCode, manufactureId,
manufactureName, distributorId, distributorName, productName, compId, model, spec, manufactureName, distributorId, distributorName, productName, compId, model, spec,
prodMaterial, packMaterial, regNum, regName, regValidTo, unionProjectId, unionProjectName, prodMaterial, packMaterial, regNum, regName, regValidTo, unionProjectId, unionProjectName,
salePrice, priceUnitText, topSalePrice, settlePayPrice, goodsSource, stockStatus, salePrice, priceUnitText, topSalePrice, settlePayPrice, goodsSource, stockStatus,
changedContent, changedTime, proxyName, onlineStatus, medicalCode, createTime, updateTime changedContent, changedTime, proxyName, onlineStatus, medicalCode, createTime, updateTime
from udplat_goods from udplat_goods
where deliveryGoodId = #{deliveryGoodId} where deliveryGoodsId = #{deliveryGoodsId}
</select>
<select id="selectByProjectGoodsCode" parameterType="java.lang.String" resultMap="BaseResultMap">
select id, uuid, deliveryGoodsId, projectGoodsCode, deliveryGoodsCode, manufactureId,
manufactureName, distributorId, distributorName, productName, compId, model, spec,
prodMaterial, packMaterial, regNum, regName, regValidTo, unionProjectId, unionProjectName,
salePrice, priceUnitText, topSalePrice, settlePayPrice, goodsSource, stockStatus,
changedContent, changedTime, proxyName, onlineStatus, medicalCode, createTime, updateTime
from udplat_goods
where projectGoodsCode = #{projectGoodsCode}
</select> </select>
<select id="selectAll" resultMap="BaseResultMap"> <select id="selectAll" resultMap="BaseResultMap">
select id, uuid, deliveryGoodId, projectGoodsCode, deliveryGoodsCode, manufactureId, select id, uuid, deliveryGoodsId, projectGoodsCode, deliveryGoodsCode, manufactureId,
manufactureName, distributorId, distributorName, productName, compId, model, spec, manufactureName, distributorId, distributorName, productName, compId, model, spec,
prodMaterial, packMaterial, regNum, regName, regValidTo, unionProjectId, unionProjectName, prodMaterial, packMaterial, regNum, regName, regValidTo, unionProjectId, unionProjectName,
salePrice, priceUnitText, topSalePrice, settlePayPrice, goodsSource, stockStatus, salePrice, priceUnitText, topSalePrice, settlePayPrice, goodsSource, stockStatus,
@ -119,8 +128,8 @@
from udplat_goods from udplat_goods
</select> </select>
<select id="list" resultMap="BaseResultMap" parameterType="com.glxp.udidl.admin.dto.udplat.BaseParam"> <select id="list" resultMap="BaseResultMap" parameterType="com.glxp.udidl.admin.dto.udplat.BaseParam">
select id, uuid, deliveryGoodId, projectGoodsCode, deliveryGoodsCode, manufactureId, select id, uuid, deliveryGoodsId, projectGoodsCode, deliveryGoodsCode, manufactureId,
manufactureName, distributorId, distributorName, productName, compId, model, spec, manufactureName, distributorId, distributorName, productName, compId,
prodMaterial, packMaterial, regNum, regName, regValidTo, unionProjectId, unionProjectName, prodMaterial, packMaterial, regNum, regName, regValidTo, unionProjectId, unionProjectName,
salePrice, priceUnitText, topSalePrice, settlePayPrice, goodsSource, stockStatus, salePrice, priceUnitText, topSalePrice, settlePayPrice, goodsSource, stockStatus,
changedContent, changedTime, proxyName, onlineStatus, medicalCode, createTime, updateTime changedContent, changedTime, proxyName, onlineStatus, medicalCode, createTime, updateTime

@ -4,7 +4,7 @@
<resultMap id="BaseResultMap" type="com.glxp.udidl.admin.entity.udplat.UdplatGoodsMatch"> <resultMap id="BaseResultMap" type="com.glxp.udidl.admin.entity.udplat.UdplatGoodsMatch">
<id column="id" jdbcType="INTEGER" property="id" /> <id column="id" jdbcType="INTEGER" property="id" />
<result column="deviceRecordKey" jdbcType="VARCHAR" property="deviceRecordKey" /> <result column="deviceRecordKey" jdbcType="VARCHAR" property="deviceRecordKey" />
<result column="deliveryGoodId" jdbcType="VARCHAR" property="deliveryGoodId" /> <result column="deliveryGoodsId" jdbcType="VARCHAR" property="deliveryGoodsId" />
<result column="medicalCode" jdbcType="VARCHAR" property="medicalCode" /> <result column="medicalCode" jdbcType="VARCHAR" property="medicalCode" />
<result column="createTime" jdbcType="TIMESTAMP" property="createTime" /> <result column="createTime" jdbcType="TIMESTAMP" property="createTime" />
<result column="updateTime" jdbcType="TIMESTAMP" property="updateTime" /> <result column="updateTime" jdbcType="TIMESTAMP" property="updateTime" />
@ -14,18 +14,18 @@
where id = #{id,jdbcType=INTEGER} where id = #{id,jdbcType=INTEGER}
</delete> </delete>
<insert id="insert" parameterType="com.glxp.udidl.admin.entity.udplat.UdplatGoodsMatch"> <insert id="insert" parameterType="com.glxp.udidl.admin.entity.udplat.UdplatGoodsMatch">
insert into udplat_goods_match (id, deviceRecordKey, deliveryGoodId, insert into udplat_goods_match (id, deviceRecordKey, deliveryGoodsId,
medicalCode, createTime medicalCode, createTime
) )
values (#{id,jdbcType=INTEGER}, #{deviceRecordKey,jdbcType=VARCHAR}, #{deliveryGoodId,jdbcType=VARCHAR}, values (#{id,jdbcType=INTEGER}, #{deviceRecordKey,jdbcType=VARCHAR}, #{deliveryGoodsId,jdbcType=VARCHAR},
#{medicalCode,jdbcType=VARCHAR}, #{createTime,jdbcType=TIMESTAMP} #{medicalCode,jdbcType=VARCHAR}, #{createTime,jdbcType=TIMESTAMP}
) )
</insert> </insert>
<update id="updateByPrimaryKey" parameterType="com.glxp.udidl.admin.entity.udplat.UdplatGoodsMatch"> <update id="updateByPrimaryKey" parameterType="com.glxp.udidl.admin.entity.udplat.UdplatGoodsMatch">
update udplat_goods_match update udplat_goods_match
set deviceRecordKey = #{deviceRecordKey,jdbcType=VARCHAR}, set deviceRecordKey = #{deviceRecordKey,jdbcType=VARCHAR},
<if test="deliveryGoodId != null and deliveryGoodId !='' "> <if test="projectGoodsCode != null and projectGoodsCode !='' ">
deliveryGoodId = #{deliveryGoodId,jdbcType=VARCHAR}, projectGoodsCode = #{deliveryGoodsId,jdbcType=VARCHAR},
</if> </if>
<if test="medicalCode != null and medicalCode !='' "> <if test="medicalCode != null and medicalCode !='' ">
medicalCode = #{medicalCode,jdbcType=VARCHAR}, medicalCode = #{medicalCode,jdbcType=VARCHAR},
@ -34,30 +34,30 @@
where id = #{id,jdbcType=INTEGER} where id = #{id,jdbcType=INTEGER}
</update> </update>
<select id="selectByPrimaryKey" parameterType="java.lang.Integer" resultMap="BaseResultMap"> <select id="selectByPrimaryKey" parameterType="java.lang.Integer" resultMap="BaseResultMap">
select id, deviceRecordKey, deliveryGoodId, medicalCode, createTime, updateTime select id, deviceRecordKey, deliveryGoodsId, medicalCode, createTime, updateTime
from udplat_goods_match from udplat_goods_match
where id = #{id,jdbcType=INTEGER} where id = #{id,jdbcType=INTEGER}
</select> </select>
<select id="selectAll" resultMap="BaseResultMap"> <select id="selectAll" resultMap="BaseResultMap">
select id, deviceRecordKey, deliveryGoodId, medicalCode, createTime, updateTime select id, deviceRecordKey, deliveryGoodsId, medicalCode, createTime, updateTime
from udplat_goods_match from udplat_goods_match
</select> </select>
<select id="selectByDeviceRecordKey" parameterType="java.lang.String" resultMap="BaseResultMap"> <select id="selectByDeviceRecordKey" parameterType="java.lang.String" resultMap="BaseResultMap">
select id, deviceRecordKey, deliveryGoodId, medicalCode, createTime, updateTime select id, deviceRecordKey, deliveryGoodsId, medicalCode, createTime, updateTime
from udplat_goods_match from udplat_goods_match
where deviceRecordKey = #{id} where deviceRecordKey = #{id}
</select> </select>
<select id="getList" parameterType="com.glxp.udidl.admin.dto.udplat.UdplatGoodsMatchParam" resultType="com.glxp.udidl.admin.dto.udplat.UdplatGoodsMatchListModel"> <select id="getList" parameterType="com.glxp.udidl.admin.dto.udplat.UdplatGoodsMatchParam" resultType="com.glxp.udidl.admin.dto.udplat.UdplatGoodsMatchListModel">
select p.uuid, p.nameCode,p.ylqxzcrbarmc, p.cpmctymc,p.ggxh,p.cpms,p.deviceRecordKey,m.deliveryGoodId,m.medicalCode from productinfo as p select p.uuid, p.nameCode,p.ylqxzcrbarmc,p.zczbhhzbapzbh, p.cpmctymc,p.ggxh,p.cpms,p.deviceRecordKey,m.deliveryGoodsId,m.medicalCode from productinfo as p
left join udplat_goods_match as m on p.deviceRecordKey = m.deviceRecordKey where p.isNewest =1 and p.diType=1 left join udplat_goods_match as m on p.deviceRecordKey = m.deviceRecordKey where p.isNewest =1 and p.diType=1
<if test="name != null and name != ''"> <if test="name != null and name != ''">
and (p.cpmctymc like concat(#{name},'%') or p.ylqxzcrbarmc like concat(#{name},'%')) and (p.cpmctymc like concat(#{name},'%') or p.ylqxzcrbarmc like concat(#{name},'%'))
</if> </if>
<if test="goodsMatchType == 1"> <if test="goodsMatchType == 1">
and m.deliveryGoodId is not null and m.deliveryGoodId != '' and m.deliveryGoodsId is not null and m.deliveryGoodsId != ''
</if> </if>
<if test="goodsMatchType == 2"> <if test="goodsMatchType == 2">
and (m.deliveryGoodId is null or m.deliveryGoodId = '') and (m.deliveryGoodsId is null or m.deliveryGoodsId = '')
</if> </if>
<if test="medicalMatchType == 1"> <if test="medicalMatchType == 1">
and m.medicalCode is not null and m.medicalCode != '' and m.medicalCode is not null and m.medicalCode != ''
@ -73,7 +73,7 @@
</if> </if>
</select> </select>
<select id="getMatchList" parameterType="java.lang.String" resultType="com.glxp.udidl.admin.dto.device.ProductGoodsMatchModel"> <select id="getMatchList" parameterType="java.lang.String" resultType="com.glxp.udidl.admin.dto.device.ProductGoodsMatchModel">
select p.*,m.deliveryGoodId,m.medicalCode from productinfo as p select p.*,m.deliveryGoodsId,m.medicalCode from productinfo as p
left join udplat_goods_match as m on p.deviceRecordKey = m.deviceRecordKey where p.uuid=#{uuid} left join udplat_goods_match as m on p.deviceRecordKey = m.deviceRecordKey where p.uuid=#{uuid}
</select> </select>
</mapper> </mapper>

@ -16,12 +16,12 @@
where id = #{id,jdbcType=INTEGER} where id = #{id,jdbcType=INTEGER}
</delete> </delete>
<insert id="insert" parameterType="com.glxp.udidl.admin.entity.udplat.UdplatHospital"> <insert id="insert" parameterType="com.glxp.udidl.admin.entity.udplat.UdplatHospital">
insert into udplat_hospital (id, purchaseId, purchaseCode, insert into udplat_hospital ( purchaseId, purchaseCode,
purchaseName, purchaseArea, purchaseAreaId, purchaseName, purchaseArea, purchaseAreaId,
createTime, updateTime) createTime)
values (#{id,jdbcType=INTEGER}, #{purchaseId,jdbcType=VARCHAR}, #{purchaseCode,jdbcType=VARCHAR}, values ( #{purchaseId,jdbcType=VARCHAR}, #{purchaseCode,jdbcType=VARCHAR},
#{purchaseName,jdbcType=VARCHAR}, #{purchaseArea,jdbcType=VARCHAR}, #{purchaseAreaId,jdbcType=VARCHAR}, #{purchaseName,jdbcType=VARCHAR}, #{purchaseArea,jdbcType=VARCHAR}, #{purchaseAreaId,jdbcType=VARCHAR},
#{createTime,jdbcType=TIMESTAMP}, #{updateTime,jdbcType=TIMESTAMP}) #{createTime,jdbcType=TIMESTAMP})
</insert> </insert>
<update id="updateByPrimaryKey" parameterType="com.glxp.udidl.admin.entity.udplat.UdplatHospital"> <update id="updateByPrimaryKey" parameterType="com.glxp.udidl.admin.entity.udplat.UdplatHospital">
update udplat_hospital update udplat_hospital
@ -30,7 +30,6 @@
purchaseName = #{purchaseName,jdbcType=VARCHAR}, purchaseName = #{purchaseName,jdbcType=VARCHAR},
purchaseArea = #{purchaseArea,jdbcType=VARCHAR}, purchaseArea = #{purchaseArea,jdbcType=VARCHAR},
purchaseAreaId = #{purchaseAreaId,jdbcType=VARCHAR}, purchaseAreaId = #{purchaseAreaId,jdbcType=VARCHAR},
createTime = #{createTime,jdbcType=TIMESTAMP},
updateTime = #{updateTime,jdbcType=TIMESTAMP} updateTime = #{updateTime,jdbcType=TIMESTAMP}
where id = #{id,jdbcType=INTEGER} where id = #{id,jdbcType=INTEGER}
</update> </update>

@ -14,11 +14,11 @@
where id = #{id,jdbcType=INTEGER} where id = #{id,jdbcType=INTEGER}
</delete> </delete>
<insert id="insert" parameterType="com.glxp.udidl.admin.entity.udplat.UdplatManufacture"> <insert id="insert" parameterType="com.glxp.udidl.admin.entity.udplat.UdplatManufacture">
insert into udplat_manufacture (id, manufactureId, manufactureCode, insert into udplat_manufacture (manufactureId, manufactureCode,
manufactureName, createTime, updateTime manufactureName, createTime
) )
values (#{id,jdbcType=INTEGER}, #{manufactureId,jdbcType=INTEGER}, #{manufactureCode,jdbcType=VARCHAR}, values (#{manufactureId,jdbcType=INTEGER}, #{manufactureCode,jdbcType=VARCHAR},
#{manufactureName,jdbcType=VARCHAR}, #{createTime,jdbcType=TIMESTAMP}, #{updateTime,jdbcType=TIMESTAMP} #{manufactureName,jdbcType=VARCHAR}, #{createTime,jdbcType=TIMESTAMP}
) )
</insert> </insert>
<update id="updateByPrimaryKey" parameterType="com.glxp.udidl.admin.entity.udplat.UdplatManufacture"> <update id="updateByPrimaryKey" parameterType="com.glxp.udidl.admin.entity.udplat.UdplatManufacture">
@ -26,7 +26,6 @@
set manufactureId = #{manufactureId,jdbcType=INTEGER}, set manufactureId = #{manufactureId,jdbcType=INTEGER},
manufactureCode = #{manufactureCode,jdbcType=VARCHAR}, manufactureCode = #{manufactureCode,jdbcType=VARCHAR},
manufactureName = #{manufactureName,jdbcType=VARCHAR}, manufactureName = #{manufactureName,jdbcType=VARCHAR},
createTime = #{createTime,jdbcType=TIMESTAMP},
updateTime = #{updateTime,jdbcType=TIMESTAMP} updateTime = #{updateTime,jdbcType=TIMESTAMP}
where id = #{id,jdbcType=INTEGER} where id = #{id,jdbcType=INTEGER}
</update> </update>
@ -59,6 +58,6 @@
<select id="selectByManufactureId" parameterType="java.lang.String" resultMap="BaseResultMap"> <select id="selectByManufactureId" parameterType="java.lang.String" resultMap="BaseResultMap">
select id, manufactureId, manufactureCode, manufactureName, createTime, updateTime select id, manufactureId, manufactureCode, manufactureName, createTime, updateTime
from udplat_manufacture from udplat_manufacture
where manufactureId = #{id} where manufactureId = #{manufactureId}
</select> </select>
</mapper> </mapper>

@ -0,0 +1,29 @@
# 本地环境
server.port=9994
spring.datasource.driver-class-name=com.mysql.cj.jdbc.Driver
spring.datasource.jdbc-url=jdbc:mysql://127.0.0.1:3306/udidl?serverTimezone=Asia/Shanghai&useUnicode=true&characterEncoding=utf8&zeroDateTimeBehavior=convertToNull&useSSL=false&allowPublicKeyRetrieval=true
spring.datasource.username=root
#spring.datasource.password=mysql@2020
spring.datasource.password=123456
server.servlet.context-path=
logging.level.com.glxp.udidl.admin.dao=debug
# 跨域设置
cors.allowed-origins=*
cors.allowed-headers=Content-Type,ADMIN_ID,ADMIN_TOKEN
cors.allowed-methods=GET,POST,OPTIONS
#mips服务地址
UDIC_MIPSDOWNLOAD_URL = http://127.0.0.1:8080/UDIC_MIPSDL_Server
#UDIC_MIPSDOWNLOAD_URL=http://127.0.0.1:9997
config.downloadPath=E:/temp
config.openAuth=false
spring.servlet.multipart.max-file-size=100MB
spring.servlet.multipart.max-request-size=1000MB
# 阳光采购平台
udplat.host=http://pre-mcs.udplat.org/mcs-api
#udplat.appId=10000090
#udplat.secretKey=QchvZnPYK1jyOYV
#udplat.userName=\u8bcf\u5b89\u53bf\u533b\u9662
udplat.appId=20004072
udplat.secretKey=hoGxLSEsSyysnS9
udplat.userName=\u798F\u5EFA\u7247\u4ED4\u7640\u8BCA\u65AD\u6280\u672F\u6709\u9650\u516C\u53F8
Loading…
Cancel
Save