阳光采购平台修改,接口文档

master
hongtianzai 3 years ago
parent 2ba7b19ce7
commit d6d6522695

@ -145,6 +145,16 @@
<artifactId>pagehelper-spring-boot-autoconfigure</artifactId>
<version>1.2.5</version>
</dependency>
<!-- <dependency>
<groupId>com.github.xiaoymin</groupId>
<artifactId>knife4j-spring-boot-starter</artifactId>
<version>2.0.2</version>
</dependency>-->
<dependency>
<groupId>com.glxp</groupId>
<artifactId>api-swagger</artifactId>
<version>0.0.1</version>
</dependency>
</dependencies>
<build>

@ -7,11 +7,9 @@ import com.glxp.udidl.admin.service.info.FileInfoService;
import com.glxp.udidl.common.res.BaseResponse;
import org.springframework.beans.factory.annotation.Autowired;
import org.springframework.format.annotation.DateTimeFormat;
import org.springframework.web.bind.annotation.PostMapping;
import org.springframework.web.bind.annotation.RequestBody;
import org.springframework.web.bind.annotation.RequestMapping;
import org.springframework.web.bind.annotation.RestController;
import org.springframework.web.bind.annotation.*;
import javax.servlet.http.HttpServletResponse;
import java.util.Date;
@RestController
@ -31,5 +29,8 @@ public class FileInfoController {
public BaseResponse exportToFile(@DateTimeFormat(pattern = "yyyy-MM-dd") Date startDate, @DateTimeFormat(pattern = "yyyy-MM-dd") Date endDate) {
return productInfoDlService.ExportToFile(startDate, endDate, "manual");
}
@GetMapping("/getFile")
public void getFile(HttpServletResponse response, String fileName){
fileInfoService.getFile(response,fileName);
}
}

@ -102,10 +102,10 @@ public class TestController {
logger.info(month + "---按月开启下载");
asyncDownloadTask.downloadByMonth(month, page);
}
/* @GetMapping("/test/getDistributor")
@GetMapping("/test/getDistributor")
public String udplatTest(){
return udplatDownloadService.getDistributor();
}*/
}
@GetMapping("/test/getManufactures")
public BaseResponse getManufactures(){
return udplatDownloadService.getAllManufactures();

@ -0,0 +1,43 @@
package com.glxp.udidl.admin.controller.sys;
import com.glxp.udidl.admin.annotation.AuthRuleAnnotation;
import com.glxp.udidl.admin.dto.sys.SysMenuModel;
import com.glxp.udidl.admin.service.sys.SysMenuService;
import com.glxp.udidl.common.res.BaseResponse;
import org.springframework.beans.factory.annotation.Autowired;
import org.springframework.web.bind.annotation.PostMapping;
import org.springframework.web.bind.annotation.RequestMapping;
import org.springframework.web.bind.annotation.RestController;
@RestController
@RequestMapping("sys/menu")
public class SysMenuController {
@Autowired
SysMenuService sysMenuService;
@AuthRuleAnnotation("sys_menu_all")
@PostMapping("/list")
public BaseResponse getList(){
return sysMenuService.getMenuTree();
}
@AuthRuleAnnotation("sys_menu_all")
@PostMapping("/insert")
public BaseResponse insert(SysMenuModel model){
return sysMenuService.insert(model);
}
@AuthRuleAnnotation("sys_menu_all")
@PostMapping("update")
public BaseResponse update(SysMenuModel model){
return sysMenuService.update(model);
}
@AuthRuleAnnotation("sys_menu_all")
@PostMapping("/detail")
public BaseResponse detail(Integer id){
return sysMenuService.detail(id);
}
@AuthRuleAnnotation("sys_menu_all")
@PostMapping("/delete")
public BaseResponse delete(Integer id){
return sysMenuService.delete(id);
}
}

@ -0,0 +1,36 @@
package com.glxp.udidl.admin.controller.udplat;
import com.glxp.udidl.admin.annotation.AuthRuleAnnotation;
import com.glxp.udidl.admin.dto.udplat.ProductParam;
import com.glxp.udidl.admin.dto.udplat.UnitsParam;
import com.glxp.udidl.admin.service.udplat.UdplatDistributorService;
import com.glxp.udidl.admin.service.udplat.UdplatGoodsService;
import com.glxp.udidl.common.res.BaseResponse;
import io.swagger.annotations.Api;
import io.swagger.annotations.ApiOperation;
import org.springframework.beans.factory.annotation.Autowired;
import org.springframework.web.bind.annotation.PostMapping;
import org.springframework.web.bind.annotation.RequestBody;
import org.springframework.web.bind.annotation.RestController;
@Api(tags = "第三方接口")
@RestController
public class ThirdApiController {
@Autowired
UdplatDistributorService udplatDistributorService;
@Autowired
UdplatGoodsService udplatGoodsService;
@ApiOperation("获取往来单位信息")
@AuthRuleAnnotation("third_api_all")
@PostMapping("/udiwms/erp/getUnits")
public BaseResponse getUnitsList(@RequestBody UnitsParam param){
return udplatDistributorService.getUnitsList(param);
}
@ApiOperation("获取产品信息")
@AuthRuleAnnotation("third_api_all")
@PostMapping("/udiwms/erp/getProducts")
public BaseResponse getProducts(@RequestBody ProductParam param)
{
return udplatGoodsService.getProducts(param);
}
}

@ -6,11 +6,9 @@ import com.glxp.udidl.admin.dto.udplat.UdplatDistributorModel;
import com.glxp.udidl.admin.service.udplat.UdplatDistributorService;
import com.glxp.udidl.common.res.BaseResponse;
import org.springframework.beans.factory.annotation.Autowired;
import org.springframework.web.bind.annotation.PostMapping;
import org.springframework.web.bind.annotation.RequestBody;
import org.springframework.web.bind.annotation.RequestMapping;
import org.springframework.web.bind.annotation.RestController;
import org.springframework.web.bind.annotation.*;
import javax.servlet.http.HttpServletResponse;
import java.util.List;
/**
@ -32,4 +30,9 @@ public class UdplatDistributorController {
public BaseResponse imports(@RequestBody List<UdplatDistributorModel> models){
return udplatDistributorService.save(models,"import");
}
@AuthRuleAnnotation("udidl_udplatDistributor_all")
@GetMapping("/export")
public void export(HttpServletResponse response){
udplatDistributorService.exportToFile(response);
}
}

@ -1,17 +1,14 @@
package com.glxp.udidl.admin.controller.udplat;
import com.glxp.udidl.admin.annotation.AuthRuleAnnotation;
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.UdplatGoodsParam;
import com.glxp.udidl.admin.service.udplat.UdplatGoodsService;
import com.glxp.udidl.common.res.BaseResponse;
import com.glxp.udidl.common.util.ResultVOUtils;
import org.springframework.beans.factory.annotation.Autowired;
import org.springframework.web.bind.annotation.PostMapping;
import org.springframework.web.bind.annotation.RequestBody;
import org.springframework.web.bind.annotation.RequestMapping;
import org.springframework.web.bind.annotation.RestController;
import org.springframework.web.bind.annotation.*;
import org.springframework.web.multipart.MultipartFile;
import java.util.List;
@ -27,12 +24,12 @@ public class UdplatGoodsController {
@AuthRuleAnnotation("udidl_udplatGoods_all")
@PostMapping("/list")
public BaseResponse getList(@RequestBody BaseParam param)
public BaseResponse getList(@RequestBody UdplatGoodsParam param)
{
return udplatGoodsService.getList(param);
}
@AuthRuleAnnotation("udidl_udplatGoods_all")
@PostMapping("/inport")
@PostMapping("/import")
public BaseResponse importExcel(MultipartFile file,int type){
try
{
@ -52,4 +49,17 @@ public class UdplatGoodsController {
public BaseResponse importDeliveryGoods(@RequestBody List<DeliveryGoods> list){
return udplatGoodsService.importDeliveryGoods(list);
}
@AuthRuleAnnotation("udidl_udplatGoods_all")
@PostMapping("/export")
public BaseResponse exportToFile(@RequestBody UdplatGoodsParam param) {
return udplatGoodsService.exportToFile(param);
}
/*public void export(HttpServletResponse response){
udplatGoodsService.exportToFile(response);
}*/
@AuthRuleAnnotation("udidl_udplatGoods_all")
@PostMapping("/detail")
public BaseResponse detail(Integer id){
return udplatGoodsService.selectById(id);
}
}

@ -3,6 +3,7 @@ package com.glxp.udidl.admin.controller.udplat;
import com.glxp.udidl.admin.annotation.AuthRuleAnnotation;
import com.glxp.udidl.admin.dto.udplat.UdplatGoodsMatchModel;
import com.glxp.udidl.admin.dto.udplat.UdplatGoodsMatchParam;
import com.glxp.udidl.admin.service.udi.UdiCompanyService;
import com.glxp.udidl.admin.service.udplat.UdplatGoodsMatchService;
import com.glxp.udidl.common.res.BaseResponse;
import org.springframework.beans.factory.annotation.Autowired;
@ -17,7 +18,8 @@ import org.springframework.web.bind.annotation.RestController;
public class UdplatGoodsMatchController {
@Autowired
private UdplatGoodsMatchService udplatGoodsMatchService;
@Autowired
private UdiCompanyService udiCompanyService;
@AuthRuleAnnotation("udidl_udplatGoodsMatch_all")
@PostMapping("/save")
public BaseResponse save(@RequestBody UdplatGoodsMatchModel model){
@ -41,4 +43,9 @@ public class UdplatGoodsMatchController {
public BaseResponse getProductInfoByUuid(String uuid){
return udplatGoodsMatchService.getProductInfoByUuid(uuid);
}
@AuthRuleAnnotation("udidl_udplatGoodsMatch_all")
@PostMapping("/searchByName")
public BaseResponse searchByName(String name){
return udiCompanyService.searchByName(name);
}
}

@ -6,11 +6,9 @@ import com.glxp.udidl.admin.dto.udplat.UdplatHospitalModel;
import com.glxp.udidl.admin.service.udplat.UdplatHospitalService;
import com.glxp.udidl.common.res.BaseResponse;
import org.springframework.beans.factory.annotation.Autowired;
import org.springframework.web.bind.annotation.PostMapping;
import org.springframework.web.bind.annotation.RequestBody;
import org.springframework.web.bind.annotation.RequestMapping;
import org.springframework.web.bind.annotation.RestController;
import org.springframework.web.bind.annotation.*;
import javax.servlet.http.HttpServletResponse;
import java.util.List;
@RestController
@ -29,4 +27,9 @@ public class UdplatHospitalController {
public BaseResponse imports(@RequestBody List<UdplatHospitalModel> models){
return udplatHospitalService.save(models,"import");
}
@AuthRuleAnnotation("udidl_udplatHospital_all")
@GetMapping("/export")
public void export(HttpServletResponse response){
udplatHospitalService.exportToFile(response);
}
}

@ -6,11 +6,9 @@ import com.glxp.udidl.admin.dto.udplat.UdplatManufactureModel;
import com.glxp.udidl.admin.service.udplat.UdplatManufactureService;
import com.glxp.udidl.common.res.BaseResponse;
import org.springframework.beans.factory.annotation.Autowired;
import org.springframework.web.bind.annotation.PostMapping;
import org.springframework.web.bind.annotation.RequestBody;
import org.springframework.web.bind.annotation.RequestMapping;
import org.springframework.web.bind.annotation.RestController;
import org.springframework.web.bind.annotation.*;
import javax.servlet.http.HttpServletResponse;
import java.util.List;
@RestController
@ -29,4 +27,9 @@ public class UdplatManufactureController {
public BaseResponse imports(@RequestBody List<UdplatManufactureModel> models){
return udplatManufactureService.save(models,"import");
}
@AuthRuleAnnotation("udidl_udplatManufacture_all")
@GetMapping("/export")
public void export(HttpServletResponse response){
udplatManufactureService.exportToFile(response);
}
}

@ -16,4 +16,5 @@ public interface SysMenuMapper {
List<SysMenu> selectAll();
int updateByPrimaryKey(SysMenu record);
int getChildCount(Integer parentId);
}

@ -26,6 +26,6 @@ public interface UdiCompanyDao {
boolean deleteAll(@Param("ids") List<String> ids);
boolean updateUdiCompany(UdiCompanyEntity udiCompanyEntity);
List<String> searchByName(String name);//公司名称搜索
}

@ -3,6 +3,7 @@ package com.glxp.udidl.admin.dao.udplat;
//import com.glxp.udidl.admin.entity.udplat.UdplatDistributor;
import com.glxp.udidl.admin.dto.udplat.BaseParam;
import com.glxp.udidl.admin.dto.udplat.UnitsListModel;
import com.glxp.udidl.admin.entity.udplat.UdplatDistributor;
import org.apache.ibatis.annotations.Mapper;
@ -21,4 +22,5 @@ public interface UdplatDistributorMapper {
int updateByPrimaryKey(UdplatDistributor record);
List<UdplatDistributor> list(BaseParam param);
UdplatDistributor selectByDistributorId(String id);
List<UnitsListModel> getUnitsList(String key);
}

@ -1,6 +1,8 @@
package com.glxp.udidl.admin.dao.udplat;
import com.glxp.udidl.admin.dto.udplat.BaseParam;
import com.glxp.udidl.admin.dto.udplat.ProductListModel;
import com.glxp.udidl.admin.dto.udplat.ProductParam;
import com.glxp.udidl.admin.dto.udplat.UdplatGoodsParam;
import com.glxp.udidl.admin.entity.udplat.UdplatGoods;
import org.apache.ibatis.annotations.Mapper;
@ -14,8 +16,10 @@ public interface UdplatGoodsMapper {
UdplatGoods selectByGoodsId(String deliveryGoodId);
UdplatGoods selectByProjectGoodsCode(String projectGoodsCode);
UdplatGoods selectById(Integer id);
List<UdplatGoods> selectAll();
int update(UdplatGoods record);
List<UdplatGoods> list(BaseParam param);
List<UdplatGoods> list(UdplatGoodsParam param);
List<ProductListModel> getProducts(ProductParam param);
}

@ -0,0 +1,39 @@
package com.glxp.udidl.admin.dto.sys;
import lombok.Data;
import java.util.Date;
import java.util.List;
@Data
public class MenuTreeModel {
/**
*
*/
private Integer id;
/**
*
*/
private String name;
/**
* M: , C: ,F:
*/
private String type;
/**
*
*/
private String perms;
/**
* 0 1
*/
private String status;
/**
*
*/
private Date createTime;
private List<MenuTreeModel> children;
}

@ -0,0 +1,39 @@
package com.glxp.udidl.admin.dto.sys;
import lombok.Data;
/**
*
*/
@Data
public class SysMenuModel {
/**
*
*/
private Integer id;
/**
*
*/
private String name;
/**
* ID
*/
private Integer parentId;
/**
* M: , C: ,F:
*/
private String type;
/**
*
*/
private String perms;
/**
* 0 1
*/
private String status;
}

@ -0,0 +1,15 @@
package com.glxp.udidl.admin.dto.udplat;
import lombok.Data;
@Data
public class ProductListModel {
private String code;
private String name;
private String measname;//计量单位
private String model;//型号
private String spec;//规格
private String registerNo;//注册证号
private String manufactureId;//生成企业ID
private String manufactory;//生产企业
}

@ -0,0 +1,10 @@
package com.glxp.udidl.admin.dto.udplat;
import com.glxp.udidl.admin.req.ListPageRequest;
import lombok.Data;
@Data
public class ProductParam extends ListPageRequest {
private String code;//产品编码
private String name;//产品名称
}

@ -5,7 +5,10 @@ import lombok.Data;
@Data
public class UdplatGoodsMatchParam extends BaseParam{
private String nameCode;
private String udi;
private String ylqxzcrbarmc;//注册/备案人名称(医疗器械注册人)
private String ggxh;//规格型号
private String zczbhhzbapzbh;//注册/备案证号
private int goodsMatchType;//产品目录 0:全部 1:已对照 2未对照
private int medicalMatchType;//医保编码 0:全部 1:已对照 2未对照
}

@ -21,7 +21,7 @@ public class UdplatGoodsModel {
private String packMaterial;//包材/varchar(255)
private String regNum;//注册证编号/varchar(255)
private String regName;//注册证名称/varchar(255)
private String regValidTo;//注册证有效期截止时间/varchar(255)
private Date regValidTo;//注册证有效期截止时间/varchar(255)
private String unionProjectId;//联采项目ID/bigint(20)
private String unionProjectName;//采购项目名称/varchar(255)
private double salePrice;//价格/decimal(18,4)

@ -0,0 +1,12 @@
package com.glxp.udidl.admin.dto.udplat;
import lombok.Data;
@Data
public class UdplatGoodsParam extends BaseParam{
private String manufactureName;//生产企业
private String distributorName;//配送企业
private String regNum;//注册证号
private String model;//型号
private String spec;//规格
}

@ -0,0 +1,17 @@
package com.glxp.udidl.admin.dto.udplat;
import lombok.Data;
/**
*
*/
@Data
public class UnitsListModel {
private String id;//往来单位ID必须返回
private String name;//往来单位名称(必须返回)
private String spell;//拼音简写
private String addr;//地址
private String creditNo;//注册证号
private String contact;//联系人
private String mobile;//电话,手机号
}

@ -0,0 +1,11 @@
package com.glxp.udidl.admin.dto.udplat;
import com.glxp.udidl.admin.req.ListPageRequest;
import io.swagger.annotations.ApiModelProperty;
import lombok.Data;
@Data
public class UnitsParam extends ListPageRequest {
@ApiModelProperty("关键字查询")
private String key;
}

@ -24,6 +24,7 @@ public class UdplatGoods {
private String packMaterial;//包材/varchar(255)
private String regNum;//注册证编号/varchar(255)
private String regName;//注册证名称/varchar(255)
@JsonFormat(pattern = "yyyy-MM-dd HH:mm:ss",timezone="GMT+8")
private Date regValidTo;//注册证有效期截止时间/varchar(255)
private String unionProjectId;//联采项目ID/bigint(20)
private String unionProjectName;//采购项目名称/varchar(255)
@ -34,6 +35,7 @@ public class UdplatGoods {
private String goodsSource;//数据来源/int(11)(取值1.集中采购 2.耗材联采 3.医院HIS/医疗机构新增 4.备案采购 9. 阳光采购10. 新型冠状病毒相关检测试剂省级集中采购14. 限新冠病毒核酸快速检测采购使用)
private String stockStatus;//缺货状态1有货、2缺货/int
private String changedContent;//更新内容
@JsonFormat(pattern = "yyyy-MM-dd HH:mm:ss",timezone="GMT+8")
private Date changedTime;//更新时间
private String proxyName;//申报企业名称/ varchar(50)
private String onlineStatus;//挂网状态 1挂网2挂网状态为空 6 撤销申报

@ -89,12 +89,12 @@ public class UdplatDownloadService {
map.put("sign",getSign(mapParam));
return map;
}
/*public String getDistributor(){
public String getDistributor(){
Map<String,String> map=new HashMap<>();
String url="/hsapi/purchase/distributors";
String result = post3(url,getHeader(map),null,null);
return result;
}*/
}
public BaseResponse getAllDistributors(){
List<UdplatDistributorModel> result = new ArrayList<>();
int page = 1;

@ -4,6 +4,8 @@ import com.glxp.udidl.admin.entity.info.FileInfoEntity;
import com.glxp.udidl.admin.req.ListPageRequest;
import com.glxp.udidl.common.res.BaseResponse;
import javax.servlet.http.HttpServletResponse;
public interface FileInfoService {
/**
*
@ -18,4 +20,6 @@ public interface FileInfoService {
* @return
*/
int insert(FileInfoEntity fileInfoEntity);
BaseResponse saveToFile(String content,String fileName);
void getFile(HttpServletResponse response,String fileName);
}

@ -2,22 +2,27 @@ package com.glxp.udidl.admin.service.info.impl;
import com.github.pagehelper.PageHelper;
import com.github.pagehelper.PageInfo;
import com.glxp.udidl.admin.config.GlobalConfig;
import com.glxp.udidl.admin.dao.info.FileInfoDao;
import com.glxp.udidl.admin.entity.info.FileInfoEntity;
import com.glxp.udidl.admin.req.ListPageRequest;
import com.glxp.udidl.admin.res.PageSimpleResponse;
import com.glxp.udidl.admin.service.info.FileInfoService;
import com.glxp.udidl.admin.util.FileUtils;
import com.glxp.udidl.common.res.BaseResponse;
import com.glxp.udidl.common.util.ResultVOUtils;
import org.springframework.beans.factory.annotation.Autowired;
import org.springframework.stereotype.Service;
import javax.servlet.http.HttpServletResponse;
import java.util.List;
@Service
public class FileInfoServiceImpl implements FileInfoService {
@Autowired
private FileInfoDao fileInfoDao;
@Autowired
GlobalConfig globalConfig;
public BaseResponse getList(ListPageRequest param){
PageHelper.startPage(param.getPage(),param.getLimit());
List<FileInfoEntity> list = fileInfoDao.list();
@ -30,4 +35,15 @@ public class FileInfoServiceImpl implements FileInfoService {
public int insert(FileInfoEntity fileInfoEntity){
return fileInfoDao.insert(fileInfoEntity);
}
public BaseResponse saveToFile(String content,String fileName){
String fullPath = globalConfig.getDownloadPath()+"/"+fileName;
String res = FileUtils.exportToFile(content,fullPath);
if(!res.equals("success"))
return ResultVOUtils.error(-1,res);
return ResultVOUtils.success("/file/getFile?fileName="+fileName);
}
public void getFile(HttpServletResponse response, String fileName){
String fullPath=globalConfig.getDownloadPath()+"/"+fileName;
FileUtils.getFile(response,fullPath);
}
}

@ -0,0 +1,12 @@
package com.glxp.udidl.admin.service.sys;
import com.glxp.udidl.admin.dto.sys.SysMenuModel;
import com.glxp.udidl.common.res.BaseResponse;
public interface SysMenuService {
BaseResponse getMenuTree();
BaseResponse insert(SysMenuModel model);
BaseResponse update(SysMenuModel model);
BaseResponse detail(Integer id);
BaseResponse delete(Integer id);
}

@ -0,0 +1,72 @@
package com.glxp.udidl.admin.service.sys.impl;
import com.glxp.udidl.admin.dao.sys.SysMenuMapper;
import com.glxp.udidl.admin.dto.sys.MenuTreeModel;
import com.glxp.udidl.admin.dto.sys.SysMenuModel;
import com.glxp.udidl.admin.entity.sys.SysMenu;
import com.glxp.udidl.admin.service.sys.SysMenuService;
import com.glxp.udidl.common.res.BaseResponse;
import com.glxp.udidl.common.util.ResultVOUtils;
import org.springframework.beans.BeanUtils;
import org.springframework.beans.factory.annotation.Autowired;
import org.springframework.stereotype.Service;
import java.util.ArrayList;
import java.util.Date;
import java.util.List;
import java.util.stream.Collectors;
@Service
public class SysMenuServiceImpl implements SysMenuService {
@Autowired
SysMenuMapper sysMenuMapper;
@Override
public BaseResponse getMenuTree() {
List<SysMenu> menus = sysMenuMapper.selectAll();
List<MenuTreeModel> resutl = getChild(menus, 0);
return ResultVOUtils.success(resutl);
}
public BaseResponse insert(SysMenuModel model){
SysMenu sysMenu = new SysMenu();
BeanUtils.copyProperties(model,sysMenu);
sysMenu.setCreateTime(new Date());
sysMenuMapper.insert(sysMenu);
return ResultVOUtils.success();
}
public BaseResponse update(SysMenuModel model){
SysMenu sysMenu = sysMenuMapper.selectByPrimaryKey(model.getId());
if(sysMenu == null)
return ResultVOUtils.error(-1,"找不到记录");
BeanUtils.copyProperties(model,sysMenu);
sysMenuMapper.updateByPrimaryKey(sysMenu);
return ResultVOUtils.success();
}
public BaseResponse detail(Integer id){
SysMenu sysMenu = sysMenuMapper.selectByPrimaryKey(id);
if(sysMenu == null)
return ResultVOUtils.error(-1,"找不到记录");
return ResultVOUtils.success(sysMenu);
}
public BaseResponse delete(Integer id){
if(sysMenuMapper.getChildCount(id)>0)
return ResultVOUtils.error(-1,"存在子级,请先删除子级!");
sysMenuMapper.deleteByPrimaryKey(id);
return ResultVOUtils.success();
}
private List<MenuTreeModel> getChild(List<SysMenu> menus, Integer pId) {
List<MenuTreeModel> result = new ArrayList<>();
List<SysMenu> list = menus.stream().filter(p -> p.getParentId().equals(pId)).collect(Collectors.toList());
if (list != null && list.size() > 0) {
for (SysMenu item : list) {
MenuTreeModel treeModel = new MenuTreeModel();
BeanUtils.copyProperties(item, treeModel);
List<MenuTreeModel> child = getChild(menus, treeModel.getId());
if (child != null && child.size() > 0)
treeModel.setChildren(child);
result.add(treeModel);
}
}
return result;
}
}

@ -3,6 +3,7 @@ package com.glxp.udidl.admin.service.udi;
import com.glxp.udidl.admin.entity.udi.UdiCompanyEntity;
import com.glxp.udidl.admin.entity.udid.Contactlist;
import com.glxp.udidl.admin.req.UdiCompanyRequest;
import com.glxp.udidl.common.res.BaseResponse;
import java.util.List;
@ -23,5 +24,5 @@ public interface UdiCompanyService {
boolean deleteAll(List<String> ids);
boolean updateUdiCompany(UdiCompanyEntity udiCompanyEntity);
BaseResponse searchByName(String name);//公司名称搜索
}

@ -6,6 +6,8 @@ import com.glxp.udidl.admin.entity.udi.UdiCompanyEntity;
import com.glxp.udidl.admin.entity.udid.Contactlist;
import com.glxp.udidl.admin.req.UdiCompanyRequest;
import com.glxp.udidl.admin.service.udi.UdiCompanyService;
import com.glxp.udidl.common.res.BaseResponse;
import com.glxp.udidl.common.util.ResultVOUtils;
import org.springframework.stereotype.Service;
import javax.annotation.Resource;
@ -60,4 +62,8 @@ public class UdiCompanyServiceImpl implements UdiCompanyService {
public boolean updateUdiCompany(UdiCompanyEntity udiCompanyEntity) {
return udiCompanyDao.updateUdiCompany(udiCompanyEntity);
}
public BaseResponse searchByName(String name){
List<String> result = udiCompanyDao.searchByName(name);
return ResultVOUtils.success(result);
}
}

@ -2,13 +2,17 @@ package com.glxp.udidl.admin.service.udplat;
import com.glxp.udidl.admin.dto.udplat.BaseParam;
import com.glxp.udidl.admin.dto.udplat.UdplatDistributorModel;
import com.glxp.udidl.admin.dto.udplat.UnitsParam;
import com.glxp.udidl.common.res.BaseResponse;
import javax.servlet.http.HttpServletResponse;
import java.util.List;
public interface UdplatDistributorService {
BaseResponse getList(BaseParam param);
BaseResponse save(List<UdplatDistributorModel> models,String type);
void exportToFile(HttpServletResponse response);
BaseResponse getUnitsList(UnitsParam param);
/*int insert(UdplatDistributor record);
UdplatDistributor selectByPrimaryKey(Integer id);

@ -1,16 +1,14 @@
package com.glxp.udidl.admin.service.udplat;
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.admin.dto.udplat.*;
import com.glxp.udidl.common.res.BaseResponse;
import javax.servlet.http.HttpServletResponse;
import java.io.InputStream;
import java.util.List;
public interface UdplatGoodsService {
BaseResponse getList(BaseParam param);
BaseResponse getList(UdplatGoodsParam param);
/**
* excel
* @param is
@ -39,4 +37,8 @@ public interface UdplatGoodsService {
* @return
*/
BaseResponse importDeliveryGoods(List<DeliveryGoods> list);
void exportToFile(HttpServletResponse response);
BaseResponse exportToFile(UdplatGoodsParam param);//导出生成文件
BaseResponse selectById(Integer id);
BaseResponse getProducts(ProductParam param);
}

@ -4,9 +4,11 @@ import com.glxp.udidl.admin.dto.udplat.BaseParam;
import com.glxp.udidl.admin.dto.udplat.UdplatHospitalModel;
import com.glxp.udidl.common.res.BaseResponse;
import javax.servlet.http.HttpServletResponse;
import java.util.List;
public interface UdplatHospitalService {
BaseResponse getList(BaseParam param);
BaseResponse save(List<UdplatHospitalModel> models,String type);
void exportToFile(HttpServletResponse response);
}

@ -4,9 +4,11 @@ import com.glxp.udidl.admin.dto.udplat.BaseParam;
import com.glxp.udidl.admin.dto.udplat.UdplatManufactureModel;
import com.glxp.udidl.common.res.BaseResponse;
import javax.servlet.http.HttpServletResponse;
import java.util.List;
public interface UdplatManufactureService {
BaseResponse getList(BaseParam param);
BaseResponse save(List<UdplatManufactureModel> models,String type);
void exportToFile(HttpServletResponse response);
}

@ -1,10 +1,13 @@
package com.glxp.udidl.admin.service.udplat.impl;
import com.alibaba.fastjson.JSONObject;
import com.github.pagehelper.PageHelper;
import com.github.pagehelper.PageInfo;
import com.glxp.udidl.admin.dao.udplat.UdplatDistributorMapper;
import com.glxp.udidl.admin.dto.udplat.BaseParam;
import com.glxp.udidl.admin.dto.udplat.UdplatDistributorModel;
import com.glxp.udidl.admin.dto.udplat.UnitsListModel;
import com.glxp.udidl.admin.dto.udplat.UnitsParam;
import com.glxp.udidl.admin.entity.udplat.UdplatDistributor;
import com.glxp.udidl.admin.entity.udplat.UdplatLog;
import com.glxp.udidl.admin.res.PageSimpleResponse;
@ -12,11 +15,13 @@ import com.glxp.udidl.admin.service.udplat.UdplatDistributorService;
import com.glxp.udidl.admin.service.udplat.UdplatLogService;
import com.glxp.udidl.admin.util.BeanUtils;
import com.glxp.udidl.admin.util.DateUtil;
import com.glxp.udidl.admin.util.FileUtils;
import com.glxp.udidl.common.res.BaseResponse;
import com.glxp.udidl.common.util.ResultVOUtils;
import org.springframework.beans.factory.annotation.Autowired;
import org.springframework.stereotype.Service;
import javax.servlet.http.HttpServletResponse;
import java.util.Date;
import java.util.List;
@ -68,4 +73,18 @@ public class UdplatDistributorServiceImpl implements UdplatDistributorService {
logService.insert(udplatLog);
return ResultVOUtils.success();
}
@Override
public void exportToFile(HttpServletResponse response){
List<UdplatDistributor> list = mapper.selectAll();
FileUtils.exportToFile(response, JSONObject.toJSONString(list),"配送企业");
}
public BaseResponse getUnitsList(UnitsParam param){
PageHelper.startPage(param.getPage(), param.getLimit());
List<UnitsListModel> list = mapper.getUnitsList(param.getKey());
PageInfo<UnitsListModel> pageInfo = new PageInfo<>(list);
PageSimpleResponse<UnitsListModel> pageSimpleResponse = new PageSimpleResponse<>();
pageSimpleResponse.setTotal(pageInfo.getTotal());
pageSimpleResponse.setList(list);
return ResultVOUtils.success(pageSimpleResponse);
}
}

@ -9,10 +9,12 @@ import com.glxp.udidl.admin.dto.device.ProductGoodsMatchModel;
import com.glxp.udidl.admin.dto.udplat.UdplatGoodsMatchListModel;
import com.glxp.udidl.admin.dto.udplat.UdplatGoodsMatchModel;
import com.glxp.udidl.admin.dto.udplat.UdplatGoodsMatchParam;
import com.glxp.udidl.admin.entity.udid.UdiEntity;
import com.glxp.udidl.admin.entity.udplat.UdplatGoodsMatch;
import com.glxp.udidl.admin.res.PageSimpleResponse;
import com.glxp.udidl.admin.service.udplat.UdplatGoodsMatchService;
import com.glxp.udidl.admin.util.DateUtil;
import com.glxp.udidl.admin.util.FilterUdiUtils;
import com.glxp.udidl.common.res.BaseResponse;
import com.glxp.udidl.common.util.ResultVOUtils;
import org.springframework.beans.BeanUtils;
@ -46,6 +48,13 @@ public class UdplatGoodsMatchServiceImpl implements UdplatGoodsMatchService {
return ResultVOUtils.success();
}
public BaseResponse getList(UdplatGoodsMatchParam param){
String key = param.getUdi();
UdiEntity udiEntity = null;
if (key != null && key != "") {
udiEntity = FilterUdiUtils.getUdi(key);
key = udiEntity.getUdi();
param.setNameCode(key);
}
PageHelper.startPage(param.getPage(), param.getLimit());
if (param.getEndDate() != null && !param.getEndDate().isEmpty())
param.setEndDate(DateUtil.formatDate(DateUtil.addDays(DateUtil.parseDate(param.getEndDate()), 1)));

@ -1,20 +1,20 @@
package com.glxp.udidl.admin.service.udplat.impl;
import com.alibaba.fastjson.JSON;
import com.alibaba.fastjson.JSONObject;
import com.github.pagehelper.PageHelper;
import com.github.pagehelper.PageInfo;
import com.glxp.udidl.admin.dao.udplat.UdplatGoodsMapper;
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.admin.dto.udplat.*;
import com.glxp.udidl.admin.entity.udplat.UdplatGoods;
import com.glxp.udidl.admin.entity.udplat.UdplatLog;
import com.glxp.udidl.admin.res.PageSimpleResponse;
import com.glxp.udidl.admin.service.info.FileInfoService;
import com.glxp.udidl.admin.service.udplat.UdplatGoodsService;
import com.glxp.udidl.admin.service.udplat.UdplatLogService;
import com.glxp.udidl.admin.util.BeanUtils;
import com.glxp.udidl.admin.util.DateUtil;
import com.glxp.udidl.admin.util.FileUtils;
import com.glxp.udidl.common.res.BaseResponse;
import com.glxp.udidl.common.util.ExcelUtil;
import com.glxp.udidl.common.util.ResultVOUtils;
@ -22,6 +22,7 @@ import lombok.extern.slf4j.Slf4j;
import org.springframework.beans.factory.annotation.Autowired;
import org.springframework.stereotype.Service;
import javax.servlet.http.HttpServletResponse;
import java.io.InputStream;
import java.util.Date;
import java.util.List;
@ -33,8 +34,10 @@ public class UdplatGoodsServiceImpl implements UdplatGoodsService {
private UdplatGoodsMapper udplatGoodsMapper;
@Autowired
private UdplatLogService logService;
@Autowired
private FileInfoService fileInfoService;
public BaseResponse getList(BaseParam param) {
public BaseResponse getList(UdplatGoodsParam param) {
PageHelper.startPage(param.getPage(), param.getLimit());
if (param.getEndDate() != null && !param.getEndDate().isEmpty())
param.setEndDate(DateUtil.formatDate(DateUtil.addDays(DateUtil.parseDate(param.getEndDate()), 1)));
@ -262,6 +265,36 @@ public class UdplatGoodsServiceImpl implements UdplatGoodsService {
udplatGoods.setMedicalCode(deliveryGoods.getMedicalCode());
return udplatGoods;
}
@Override
public void exportToFile(HttpServletResponse response){
List<UdplatGoods> list = udplatGoodsMapper.selectAll();
FileUtils.exportToFile(response, JSONObject.toJSONString(list),"产品目录");
}
@Override
public BaseResponse exportToFile(UdplatGoodsParam param) {
if (param.getEndDate() != null && !param.getEndDate().isEmpty())
param.setEndDate(DateUtil.formatDate(DateUtil.addDays(DateUtil.parseDate(param.getEndDate()), 1)));
List<UdplatGoods> list = udplatGoodsMapper.list(param);
return fileInfoService.saveToFile(JSONObject.toJSONString(list),"产品目录.json");
}
public
BaseResponse selectById(Integer id){
UdplatGoods result = udplatGoodsMapper.selectById(id);
if(result == null)
return ResultVOUtils.error(-1,"找不到记录!");
return ResultVOUtils.success(result);
}
public BaseResponse getProducts(ProductParam param){
PageHelper.startPage(param.getPage(), param.getLimit());
List<ProductListModel> list = udplatGoodsMapper.getProducts(param);
PageInfo<ProductListModel> pageInfo = new PageInfo<>(list);
PageSimpleResponse<ProductListModel> pageSimpleResponse = new PageSimpleResponse<>();
pageSimpleResponse.setTotal(pageInfo.getTotal());
pageSimpleResponse.setList(list);
return ResultVOUtils.success(pageSimpleResponse);
}
/*private BaseResponse save(List<UdplatGoods> list){
if(list == null || list.size()<1)
return ResultVOUtils.error(-1,"无数据!");

@ -1,6 +1,7 @@
package com.glxp.udidl.admin.service.udplat.impl;
import com.alibaba.fastjson.JSONObject;
import com.github.pagehelper.PageHelper;
import com.github.pagehelper.PageInfo;
import com.glxp.udidl.admin.dao.udplat.UdplatHospitalMapper;
@ -13,11 +14,13 @@ import com.glxp.udidl.admin.service.udplat.UdplatHospitalService;
import com.glxp.udidl.admin.service.udplat.UdplatLogService;
import com.glxp.udidl.admin.util.BeanUtils;
import com.glxp.udidl.admin.util.DateUtil;
import com.glxp.udidl.admin.util.FileUtils;
import com.glxp.udidl.common.res.BaseResponse;
import com.glxp.udidl.common.util.ResultVOUtils;
import org.springframework.beans.factory.annotation.Autowired;
import org.springframework.stereotype.Service;
import javax.servlet.http.HttpServletResponse;
import java.util.Date;
import java.util.List;
@ -70,6 +73,10 @@ public class UdplatHospitalServiceImpl implements UdplatHospitalService {
logService.insert(udplatLog);
return ResultVOUtils.success();
}
@Override
public void exportToFile(HttpServletResponse response){
List<UdplatHospital> list = mapper.selectAll();
FileUtils.exportToFile(response, JSONObject.toJSONString(list),"医疗机构");
}
}

@ -1,5 +1,6 @@
package com.glxp.udidl.admin.service.udplat.impl;
import com.alibaba.fastjson.JSONObject;
import com.github.pagehelper.PageHelper;
import com.github.pagehelper.PageInfo;
import com.glxp.udidl.admin.dao.udplat.UdplatManufactureMapper;
@ -12,11 +13,13 @@ import com.glxp.udidl.admin.service.udplat.UdplatLogService;
import com.glxp.udidl.admin.service.udplat.UdplatManufactureService;
import com.glxp.udidl.admin.util.BeanUtils;
import com.glxp.udidl.admin.util.DateUtil;
import com.glxp.udidl.admin.util.FileUtils;
import com.glxp.udidl.common.res.BaseResponse;
import com.glxp.udidl.common.util.ResultVOUtils;
import org.springframework.beans.factory.annotation.Autowired;
import org.springframework.stereotype.Service;
import javax.servlet.http.HttpServletResponse;
import java.util.Date;
import java.util.List;
@ -69,4 +72,9 @@ public class UdplatManufactureServiceImpl implements UdplatManufactureService {
logService.insert(udplatLog);
return ResultVOUtils.success();
}
@Override
public void exportToFile(HttpServletResponse response){
List<UdplatManufacture> list = mapper.selectAll();
FileUtils.exportToFile(response, JSONObject.toJSONString(list),"生产企业");
}
}

@ -0,0 +1,74 @@
package com.glxp.udidl.admin.util;
import javax.servlet.ServletOutputStream;
import javax.servlet.http.HttpServletResponse;
import java.io.*;
import java.net.URLEncoder;
import java.nio.charset.StandardCharsets;
public class FileUtils {
public static void exportToFile(HttpServletResponse response,String str,String fileName){
response.setCharacterEncoding("utf-8");
response.setContentType("application/octet-stream");
response.setHeader("content-type","application/octet-stream");
response.addHeader("Content-Disposition","attachment;filename="+genAttachmentFileName(fileName,"default")+".json");
BufferedOutputStream buff=null;
ServletOutputStream outStr = null;
try{
outStr = response.getOutputStream();
buff = new BufferedOutputStream(outStr);
buff.write(str.getBytes(StandardCharsets.UTF_8));
buff.flush();
buff.close();
}catch (Exception e){
}finally {
try{
buff.close();;
outStr.close();
}catch (Exception e){}
}
}
public static String exportToFile(String str,String path){
try
{
BufferedWriter bw = new BufferedWriter(new FileWriter(path,false));
bw.write(str) ;
bw.newLine();
bw.close();
}catch (Exception e){
return e.getMessage();
}
return "success";
}
public static void getFile(HttpServletResponse response,String path){
try {
InputStream inputStream = new FileInputStream(path);// 文件的存放路径
response.reset();
response.setContentType("application/octet-stream");
String filename = new File(path).getName();
response.addHeader("Content-Disposition", "attachment; filename=" + URLEncoder.encode(filename, "UTF-8"));
ServletOutputStream outputStream = response.getOutputStream();
byte[] b = new byte[1024];
int len;
//从输入流中读取一定数量的字节,并将其存储在缓冲区字节数组中,读到末尾返回-1
while ((len = inputStream.read(b)) > 0) {
outputStream.write(b, 0, len);
}
inputStream.close();
}catch (Exception e){
}
}
private static String genAttachmentFileName(String cnName,String defaultName){
try{
cnName = new String(cnName.getBytes("gb2312"),"ISO8859-1");
}catch (Exception e){
cnName = defaultName;
}
return cnName;
}
}

@ -28,8 +28,7 @@
parent_id = #{parentId,jdbcType=INTEGER},
type = #{type,jdbcType=CHAR},
perms = #{perms,jdbcType=VARCHAR},
status = #{status,jdbcType=CHAR},
create_time = #{createTime,jdbcType=TIMESTAMP}
status = #{status,jdbcType=CHAR}
where id = #{id,jdbcType=INTEGER}
</update>
<select id="selectByPrimaryKey" parameterType="java.lang.Integer" resultMap="BaseResultMap">
@ -41,4 +40,7 @@
select id, name, parent_id, type, perms, status, create_time
from sys_menu
</select>
<select id="getChildCount" resultType="java.lang.Integer" parameterType="java.lang.Integer">
select count(0) from sys_menu where parent_id=#{parentId}
</select>
</mapper>

@ -39,7 +39,9 @@
</where>
</select>
<select id="searchByName" parameterType="java.lang.String" resultType="java.lang.String">
select ylqxzcrbarmc from udicompany where ylqxzcrbarmc like concat('%',#{name},'%') limit 50
</select>
<insert id="insertUdiCompany" keyProperty="id" parameterType="com.glxp.udidl.admin.entity.udi.UdiCompanyEntity">
REPLACE INTO udicompany

@ -59,4 +59,12 @@
from udplat_distributor
where distributorId = #{id}
</select>
<select id="getUnitsList" parameterType="java.lang.String" resultType="com.glxp.udidl.admin.dto.udplat.UnitsListModel">
select distributorId as id,distributorName as name from udplat_distributor
<where>
<if test="key != null and key != '' ">
and distributorName like concat('%',#{key},'%')
</if>
</where>
</select>
</mapper>

@ -110,6 +110,9 @@
from udplat_goods
where deliveryGoodsId = #{deliveryGoodsId}
</select>
<select id="selectById" parameterType="java.lang.Integer" resultMap="BaseResultMap">
select * from udplat_goods where id=#{id}
</select>
<select id="selectByProjectGoodsCode" parameterType="java.lang.String" resultMap="BaseResultMap">
select id, uuid, deliveryGoodsId, projectGoodsCode, deliveryGoodsCode, manufactureId,
manufactureName, distributorId, distributorName, productName, compId, model, spec,
@ -127,25 +130,54 @@
changedContent, changedTime, proxyName, onlineStatus, medicalCode, createTime, updateTime
from udplat_goods
</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.UdplatGoodsParam">
select id, uuid, deliveryGoodsId, projectGoodsCode, deliveryGoodsCode, manufactureId,
manufactureName, distributorId, distributorName, productName, compId,
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>
<if test="manufactureName != null and manufactureName !='' ">
and manufactureName like concat('%',#{manufactureName},'%')
</if>
<if test="distributorName != null and distributorName !='' ">
and distributorName like concat('%',#{distributorName},'%')
</if>
<if test="regNum != null and regNum !='' ">
and regNum like concat('%',#{regNum},'%')
</if>
<if test="model != null and model !='' ">
and model like concat('%',#{model},'%')
</if>
<if test="spec != null and spec !='' ">
and spec like concat('%',#{spec},'%')
</if>
<if test="name != '' and name != null">
and productName like concat('%',#{name},'%')
</if>
<if test="startDate != '' and startDate != null">
and createTime >= #{startDate}
and updateTime >= #{startDate}
</if>
<if test="endDate != '' and endDate != null">
and createTime &lt;= #{endDate}
and updateTime &lt;= #{endDate}
</if>
</where>
/* order by if(ISNULL(updateTime),createTime,updateTime) DESC*/
</select>
<select id="getProducts" parameterType="com.glxp.udidl.admin.dto.udplat.ProductParam"
resultType="com.glxp.udidl.admin.dto.udplat.ProductListModel">
select deliveryGoodsId as code,productName as name,priceUnitText as measname,model,spec,regNum as registerNo,
manufactureId,manufactureName as manufactory from udplat_goods
<where>
<if test="code != null and code != ''">
and deliveryGoodsId=#{code}
</if>
<if test="name != null and name != '' ">
and productName like concat('%',#{name},'%')
</if>
</where>
order by if(ISNULL(updateTime),createTime,updateTime) DESC
</select>
</mapper>

@ -1,79 +1,95 @@
<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE mapper PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN" "http://mybatis.org/dtd/mybatis-3-mapper.dtd">
<mapper namespace="com.glxp.udidl.admin.dao.udplat.UdplatGoodsMatchMapper">
<resultMap id="BaseResultMap" type="com.glxp.udidl.admin.entity.udplat.UdplatGoodsMatch">
<id column="id" jdbcType="INTEGER" property="id" />
<result column="deviceRecordKey" jdbcType="VARCHAR" property="deviceRecordKey" />
<result column="deliveryGoodsId" jdbcType="VARCHAR" property="deliveryGoodsId" />
<result column="medicalCode" jdbcType="VARCHAR" property="medicalCode" />
<result column="createTime" jdbcType="TIMESTAMP" property="createTime" />
<result column="updateTime" jdbcType="TIMESTAMP" property="updateTime" />
</resultMap>
<delete id="deleteByPrimaryKey" parameterType="java.lang.Integer">
delete from udplat_goods_match
where id = #{id,jdbcType=INTEGER}
</delete>
<insert id="insert" parameterType="com.glxp.udidl.admin.entity.udplat.UdplatGoodsMatch">
insert into udplat_goods_match (id, deviceRecordKey, deliveryGoodsId,
medicalCode, createTime
)
values (#{id,jdbcType=INTEGER}, #{deviceRecordKey,jdbcType=VARCHAR}, #{deliveryGoodsId,jdbcType=VARCHAR},
#{medicalCode,jdbcType=VARCHAR}, #{createTime,jdbcType=TIMESTAMP}
)
</insert>
<update id="updateByPrimaryKey" parameterType="com.glxp.udidl.admin.entity.udplat.UdplatGoodsMatch">
update udplat_goods_match
set deviceRecordKey = #{deviceRecordKey,jdbcType=VARCHAR},
<if test="projectGoodsCode != null and projectGoodsCode !='' ">
projectGoodsCode = #{deliveryGoodsId,jdbcType=VARCHAR},
</if>
<if test="medicalCode != null and medicalCode !='' ">
medicalCode = #{medicalCode,jdbcType=VARCHAR},
</if>
updateTime = #{updateTime,jdbcType=TIMESTAMP}
where id = #{id,jdbcType=INTEGER}
</update>
<select id="selectByPrimaryKey" parameterType="java.lang.Integer" resultMap="BaseResultMap">
select id, deviceRecordKey, deliveryGoodsId, medicalCode, createTime, updateTime
from udplat_goods_match
where id = #{id,jdbcType=INTEGER}
</select>
<select id="selectAll" resultMap="BaseResultMap">
select id, deviceRecordKey, deliveryGoodsId, medicalCode, createTime, updateTime
from udplat_goods_match
</select>
<select id="selectByDeviceRecordKey" parameterType="java.lang.String" resultMap="BaseResultMap">
select id, deviceRecordKey, deliveryGoodsId, medicalCode, createTime, updateTime
from udplat_goods_match
where deviceRecordKey = #{id}
</select>
<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.zczbhhzbapzbh, p.cpmctymc,p.ggxh,p.cpms,p.deviceRecordKey,m.deliveryGoodsId,m.medicalCode from productinfo as p
<resultMap id="BaseResultMap" type="com.glxp.udidl.admin.entity.udplat.UdplatGoodsMatch">
<id column="id" jdbcType="INTEGER" property="id"/>
<result column="deviceRecordKey" jdbcType="VARCHAR" property="deviceRecordKey"/>
<result column="deliveryGoodsId" jdbcType="VARCHAR" property="deliveryGoodsId"/>
<result column="medicalCode" jdbcType="VARCHAR" property="medicalCode"/>
<result column="createTime" jdbcType="TIMESTAMP" property="createTime"/>
<result column="updateTime" jdbcType="TIMESTAMP" property="updateTime"/>
</resultMap>
<delete id="deleteByPrimaryKey" parameterType="java.lang.Integer">
delete
from udplat_goods_match
where id = #{id,jdbcType=INTEGER}
</delete>
<insert id="insert" parameterType="com.glxp.udidl.admin.entity.udplat.UdplatGoodsMatch">
insert into udplat_goods_match (id, deviceRecordKey, deliveryGoodsId,
medicalCode, createTime)
values (#{id,jdbcType=INTEGER}, #{deviceRecordKey,jdbcType=VARCHAR}, #{deliveryGoodsId,jdbcType=VARCHAR},
#{medicalCode,jdbcType=VARCHAR}, #{createTime,jdbcType=TIMESTAMP})
</insert>
<update id="updateByPrimaryKey" parameterType="com.glxp.udidl.admin.entity.udplat.UdplatGoodsMatch">
update udplat_goods_match
set deviceRecordKey = #{deviceRecordKey,jdbcType=VARCHAR},
<if test="projectGoodsCode != null and projectGoodsCode !='' ">
projectGoodsCode = #{deliveryGoodsId,jdbcType=VARCHAR},
</if>
<if test="medicalCode != null and medicalCode !='' ">
medicalCode = #{medicalCode,jdbcType=VARCHAR},
</if>
updateTime = #{updateTime,jdbcType=TIMESTAMP}
where id = #{id,jdbcType=INTEGER}
</update>
<select id="selectByPrimaryKey" parameterType="java.lang.Integer" resultMap="BaseResultMap">
select id, deviceRecordKey, deliveryGoodsId, medicalCode, createTime, updateTime
from udplat_goods_match
where id = #{id,jdbcType=INTEGER}
</select>
<select id="selectAll" resultMap="BaseResultMap">
select id, deviceRecordKey, deliveryGoodsId, medicalCode, createTime, updateTime
from udplat_goods_match
</select>
<select id="selectByDeviceRecordKey" parameterType="java.lang.String" resultMap="BaseResultMap">
select id, deviceRecordKey, deliveryGoodsId, medicalCode, createTime, updateTime
from udplat_goods_match
where deviceRecordKey = #{id}
</select>
<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.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
<if test="name != null and name != ''">
and (p.cpmctymc like concat(#{name},'%') or p.ylqxzcrbarmc like concat(#{name},'%'))
and p.cpmctymc like concat('%',#{name},'%')
</if>
<if test="nameCode != null and nameCode != '' ">
and p.nameCode = #{nameCode}
</if>
<if test="ylqxzcrbarmc != null and ylqxzcrbarmc != '' ">
and p.ylqxzcrbarmc = #{ylqxzcrbarmc}
</if>
<if test="ggxh != null and ggxh != '' ">
and p.ggxh like concat('%',#{ggxh},'%')
</if>
<if test="zczbhhzbapzbh != null and zczbhhzbapzbh != '' ">
and p.zczbhhzbapzbh like concat('%',#{zczbhhzbapzbh},'%')
</if>
<if test="goodsMatchType == 1">
and m.deliveryGoodsId is not null and m.deliveryGoodsId != ''
and m.deliveryGoodsId is not null and m.deliveryGoodsId != ''
</if>
<if test="goodsMatchType == 2">
and (m.deliveryGoodsId is null or m.deliveryGoodsId = '')
and (m.deliveryGoodsId is null or m.deliveryGoodsId = '')
</if>
<if test="medicalMatchType == 1">
and m.medicalCode is not null and m.medicalCode != ''
and m.medicalCode is not null and m.medicalCode != ''
</if>
<if test="medicalMatchType == 2">
and (m.medicalCode is null or m.medicalCode = '')
and (m.medicalCode is null or m.medicalCode = '')
</if>
<if test="startDate != '' and startDate != null">
and p.updateTime >= #{startDate}
and p.updateTime >= #{startDate}
</if>
<if test="endDate != '' and endDate != null">
and p.updateTime &lt;= #{endDate}
and p.updateTime &lt;= #{endDate}
</if>
</select>
<select id="getMatchList" parameterType="java.lang.String" resultType="com.glxp.udidl.admin.dto.device.ProductGoodsMatchModel">
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}
</select>
<select id="getMatchList" parameterType="java.lang.String"
resultType="com.glxp.udidl.admin.dto.device.ProductGoodsMatchModel">
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}
</select>
</mapper>

@ -39,7 +39,9 @@
</where>
</select>
<select id="searchByName" parameterType="java.lang.String" resultType="java.lang.String">
select ylqxzcrbarmc from udicompany where ylqxzcrbarmc like concat('%',#{name},'%') limit 50
</select>
<insert id="insertUdiCompany" keyProperty="id" parameterType="com.glxp.udidl.admin.entity.udi.UdiCompanyEntity">
REPLACE INTO udicompany

@ -8,6 +8,7 @@ import lombok.Data;
*/
@Data
public class BaseResponse<T> {
public boolean success(){return this.code.equals(20000);}
private Integer code;

@ -0,0 +1,25 @@
<?xml version="1.0" encoding="UTF-8"?>
<project xmlns="http://maven.apache.org/POM/4.0.0"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
<parent>
<artifactId>udidl</artifactId>
<groupId>com.glxp</groupId>
<version>0.0.1</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<artifactId>api-swagger</artifactId>
<properties>
<maven.compiler.source>8</maven.compiler.source>
<maven.compiler.target>8</maven.compiler.target>
</properties>
<dependencies>
<dependency>
<groupId>com.github.xiaoymin</groupId>
<artifactId>knife4j-spring-boot-starter</artifactId>
<version>2.0.2</version>
</dependency>
</dependencies>
</project>

@ -0,0 +1,34 @@
package com.glxp.udidl.swagger.config;
import org.springframework.context.annotation.Bean;
import org.springframework.context.annotation.Configuration;
import springfox.documentation.builders.ApiInfoBuilder;
import springfox.documentation.builders.PathSelectors;
import springfox.documentation.builders.RequestHandlerSelectors;
import springfox.documentation.service.ApiInfo;
import springfox.documentation.spi.DocumentationType;
import springfox.documentation.spring.web.plugins.Docket;
import springfox.documentation.swagger2.annotations.EnableSwagger2;
@Configuration
@EnableSwagger2
public class SwaggerConfig {
@Bean(value = "defaultApi2")
public Docket defaultApi2(){
return new Docket(DocumentationType.SWAGGER_2)
.apiInfo(apiInfo())
.select()
//.apis(RequestHandlerSelectors.withMethodAnnotation(ApiOperation.class))
.apis(RequestHandlerSelectors.any())
.paths(PathSelectors.any())
.build();
}
private ApiInfo apiInfo(){
return new ApiInfoBuilder()
.title("第三方服务")
.description("接口文档")
//.contact()
.version("1.0")
.build();
}
}

@ -9,6 +9,7 @@
<modules>
<module>api-admin</module>
<module>api-common</module>
<module>api-swagger</module>
</modules>
<packaging>pom</packaging>

Loading…
Cancel
Save