代码备份

cert
anthonywj 2 years ago
parent b2bb3930e9
commit 8b8c7e6078

@ -18,7 +18,7 @@ import com.glxp.api.res.auth.AuthAdminResponse;
import com.glxp.api.res.basic.BasicUdiRelResponse;
import com.glxp.api.res.basic.UdiRelevanceResponse;
import com.glxp.api.service.auth.CustomerService;
import com.glxp.api.service.basic.BasicUdiRelService;
import com.glxp.api.service.basic.*;
import io.swagger.annotations.Api;
import io.swagger.annotations.ApiOperation;
import lombok.Data;
@ -34,9 +34,6 @@ import com.glxp.api.common.res.BaseResponse;
import com.glxp.api.common.util.ResultVOUtils;
import com.glxp.api.constant.AsyncDiDlHelper;
import com.glxp.api.res.PageSimpleResponse;
import com.glxp.api.service.basic.ProductInfoService;
import com.glxp.api.service.basic.SyncUdiService;
import com.glxp.api.service.basic.UdiCompanyService;
import com.glxp.api.util.udi.FilterUdiUtils;
import cn.hutool.core.util.StrUtil;
@ -61,6 +58,8 @@ public class UdiSyncController extends BaseController {
BasicUdiRelService basicUdiRelService;
@Resource
CustomerService customerService;
@Resource
BasicUdiProductService basicUdiProductService;
//获取同步库UDI信息
@ApiIgnore
@ -154,6 +153,7 @@ public class UdiSyncController extends BaseController {
}
//产品信息关联新增
@ApiIgnore
@AuthRuleAnnotation("")
@ApiOperation(value = "注册企业新增医疗器械信息", response = BaseResponse.class)
@PostMapping("udi/basic/rel/save")
@ -174,15 +174,29 @@ public class UdiSyncController extends BaseController {
@PostMapping("udi/basic/rel/batch/save")
public BaseResponse batchSaveRel(@RequestBody UdiSelectRequest udiSelectRequest) {
String userId = customerService.getUserId() + "";
if (CollUtil.isNotEmpty(udiSelectRequest.getKeys())) {
for (String uuid : udiSelectRequest.getKeys()) {
BasicUdiRelEntity basicUdiRelEntity = new BasicUdiRelEntity();
basicUdiRelEntity.setUuid(uuid);
basicUdiRelEntity.setCompanyIdFk(udiSelectRequest.getCompanyId());
basicUdiRelEntity.setUpdateTime(new Date());
basicUdiRelEntity.setUpdateUser(userId);
basicUdiRelEntity.setId(IdUtil.getSnowflakeNextId());
basicUdiRelService.save(basicUdiRelEntity);
if (CollUtil.isNotEmpty(udiSelectRequest.getProducts())) {
for (BasicUdiRelRequest basicUdiRelRequest : udiSelectRequest.getProducts()) {
if (!basicUdiRelService.isExit(basicUdiRelRequest.getUuid(), udiSelectRequest.getCompanyId())) {
BasicUdiRelEntity basicUdiRelEntity = new BasicUdiRelEntity();
basicUdiRelEntity.setUuid(basicUdiRelRequest.getUuid());
basicUdiRelEntity.setCompanyIdFk(udiSelectRequest.getCompanyId());
basicUdiRelEntity.setUpdateTime(new Date());
basicUdiRelEntity.setUpdateUser(userId);
basicUdiRelEntity.setId(IdUtil.getSnowflakeNextId());
basicUdiRelService.save(basicUdiRelEntity);
List<ProductInfoEntity> productInfoEntities = productInfoService.selectByUuid(basicUdiRelRequest.getUuid());
if (CollUtil.isNotEmpty(productInfoEntities)) {
for (ProductInfoEntity productInfoEntity : productInfoEntities) {
// basicUdiProductService
BasicUdiProductEntity basicUdiProductEntity = new BasicUdiProductEntity();
BeanUtils.copyProperties(productInfoEntity, basicUdiProductEntity);
basicUdiProductEntity.setId(IdUtil.getSnowflakeNextId());
basicUdiProductService.save(basicUdiProductEntity);
}
}
}
}
}
return ResultVOUtils.success("添加成功!");
@ -198,7 +212,10 @@ public class UdiSyncController extends BaseController {
//产品信息关联修改
@AuthRuleAnnotation("")
@PostMapping("udi/basic/rel/update")
public BaseResponse updateRel(@RequestBody BasicUdiRelEntity basicUdiRelEntity) {
public BaseResponse updateRel(@RequestBody BasicUdiRelRequest basicUdiRelRequest) {
BasicUdiRelEntity basicUdiRelEntity = new BasicUdiRelEntity();
BeanUtils.copyProperties(basicUdiRelRequest, basicUdiRelEntity);
basicUdiRelEntity.setUpdateTime(new Date());
basicUdiRelEntity.setUpdateUser(customerService.getUserId() + "");
basicUdiRelService.updateById(basicUdiRelEntity);

@ -0,0 +1,9 @@
package com.glxp.api.dao.basic;
import com.baomidou.mybatisplus.core.mapper.BaseMapper;
import com.glxp.api.entity.basic.BasicUdiProductEntity;
import org.apache.ibatis.annotations.Mapper;
@Mapper
public interface BasicUdiProductMapper extends BaseMapper<BasicUdiProductEntity> {
}

@ -0,0 +1,305 @@
package com.glxp.api.entity.basic;
import com.baomidou.mybatisplus.annotation.IdType;
import com.baomidou.mybatisplus.annotation.TableField;
import com.baomidou.mybatisplus.annotation.TableId;
import com.baomidou.mybatisplus.annotation.TableName;
import java.io.Serializable;
import java.util.Date;
import lombok.Data;
@Data
@TableName(value = "basic_udi_product")
public class BasicUdiProductEntity implements Serializable {
@TableId(value = "id", type = IdType.INPUT)
private Long id;
/**
*
*/
@TableField(value = "nameCode")
private String nameCode;
/**
*
*/
@TableField(value = "packRatio")
private String packRatio;
/**
*
*/
@TableField(value = "packLevel")
private String packLevel;
/**
*
*/
@TableField(value = "bhxjsl")
private Integer bhxjsl;
/**
*
*/
@TableField(value = "bhzxxsbzsl")
private Integer bhzxxsbzsl;
/**
* 使:
使
*/
@TableField(value = "zxxsbzbhsydysl")
private Integer zxxsbzbhsydysl;
/**
*
*/
@TableField(value = "bhxjcpbm")
private String bhxjcpbm;
/**
*
*/
@TableField(value = "bzcj")
private String bzcj;
/**
* ERPID
*/
@TableField(value = "thirdProductNo")
private String thirdProductNo;
/**
* 1.2
*/
@TableField(value = "addType")
private Integer addType;
/**
* key
*/
@TableField(value = "deviceRecordKey")
private String deviceRecordKey;
/**
* 使
*/
@TableField(value = "isUseDy")
private Byte isUseDy;
/**
* ERP
*/
@TableField(value = "thirdProductName")
private String thirdProductName;
/**
*
*/
@TableField(value = "cpmctymc")
private String cpmctymc;
/**
*
*/
@TableField(value = "cplb")
private String cplb;
/**
*
*/
@TableField(value = "flbm")
private String flbm;
/**
*
*/
@TableField(value = "ggxh")
private String ggxh;
/**
*
*/
@TableField(value = "qxlb")
private String qxlb;
/**
*
*/
@TableField(value = "tyshxydm")
private String tyshxydm;
/**
* /
*/
@TableField(value = "ylqxzcrbarmc")
private String ylqxzcrbarmc;
/**
* "/
*/
@TableField(value = "zczbhhzbapzbh")
private String zczbhhzbapzbh;
/**
* /
*/
@TableField(value = "ylqxzcrbarywmc")
private String ylqxzcrbarywmc;
/**
* 使
*/
@TableField(value = "sydycpbs")
private String sydycpbs;
/**
* UUID
*/
@TableField(value = "uuid")
private String uuid;
/**
*
*/
@TableField(value = "sjcpbm")
private String sjcpbm;
/**
*
*/
@TableField(value = "versionNumber")
private Integer versionNumber;
/**
* 1.2使3.4
*/
@TableField(value = "diType")
private Byte diType;
/**
*
*/
@TableField(value = "scbssfbhph")
private String scbssfbhph;
/**
*
*/
@TableField(value = "scbssfbhxlh")
private String scbssfbhxlh;
/**
*
*/
@TableField(value = "scbssfbhscrq")
private String scbssfbhscrq;
/**
*
*/
@TableField(value = "scbssfbhsxrq")
private String scbssfbhsxrq;
/**
*
*/
@TableField(value = "ybbm")
private String ybbm;
/**
*
*/
@TableField(value = "spmc")
private String spmc;
@TableField(value = "cphhhbh")
private String cphhhbh;
@TableField(value = "cpms")
private String cpms;
@TableField(value = "cpbsbmtxmc")
private String cpbsbmtxmc;
/**
*
*/
@TableField(value = "isNewest")
private Byte isNewest;
/**
*
*/
@TableField(value = "updateTime")
private Date updateTime;
/**
*
*/
@TableField(value = "cplx")
private String cplx;
/**
*
*/
@TableField(value = "hchzsb")
private String hchzsb;
/**
* / 1 0
*/
@TableField(value = "sfwblztlcp")
private String sfwblztlcp;
/**
* MR 0 1 28
3 MR
*/
@TableField(value = "cgzmraqxgxx")
private String cgzmraqxgxx;
/**
* 使:0 1
*/
@TableField(value = "sfbjwycxsy")
private String sfbjwycxsy;
/**
* 使
*/
@TableField(value = "zdcfsycs")
private String zdcfsycs;
/**
* :1 0
*/
@TableField(value = "sfwwjbz")
private String sfwwjbz;
/**
* 使:1 0
*/
@TableField(value = "syqsfxyjxmj")
private String syqsfxyjxmj;
/**
*
*/
@TableField(value = "mjfs")
private String mjfs;
/**
*
*/
@TableField(value = "qtxxdwzlj")
private String qtxxdwzlj;
/**
*
*/
@TableField(value = "categoryName")
private String categoryName;
private static final long serialVersionUID = 1L;
}

@ -46,11 +46,19 @@ public class BasicUdiRelEntity implements Serializable {
@TableField(value = "updateUser")
private String updateUser;
// -------------企业自定义设置------------------------
/**
* 1./2./3.
*/
@TableField(value = "companyType")
private String companyType;
private Integer companyType;
@TableField(value = "agengtStartDate")
private Date agengtStartDate;
@TableField(value = "agengtEndDate")
private Date agengtEndDate;
private static final long serialVersionUID = 1L;
}

@ -0,0 +1,48 @@
package com.glxp.api.req.basic;
import com.baomidou.mybatisplus.annotation.TableField;
import lombok.Data;
import java.util.Date;
@Data
public class BasicUdiRelRequest {
private Long id;
/**
* uuid
*/
private String uuid;
/**
* ID
*/
private Long companyIdFk;
/**
*
*/
private Date updateTime;
/**
*
*/
private String remark;
/**
*
*/
private String updateUser;
// -------------企业自定义设置------------------------
/**
* 1./2./3.
*/
private Integer companyType;
private Date agengtStartDate;
private Date agengtEndDate;
}

@ -7,6 +7,8 @@ import java.util.List;
@Data
public class UdiSelectRequest {
List<String> keys;
List<BasicUdiRelRequest> products;
private Long companyId;
}

@ -1,5 +1,6 @@
package com.glxp.api.res.basic;
import com.baomidou.mybatisplus.annotation.TableField;
import lombok.Data;
import java.util.Date;
@ -35,7 +36,7 @@ public class BasicUdiRelResponse {
*/
private String updateUser;
private String companyType;
private Integer companyType;
private String companyName;
@ -97,4 +98,8 @@ public class BasicUdiRelResponse {
private String mjfs;
private Date agengtStartDate;
private Date agengtEndDate;
}

@ -0,0 +1,8 @@
package com.glxp.api.service.basic;
import com.glxp.api.entity.basic.BasicUdiProductEntity;
import com.baomidou.mybatisplus.extension.service.IService;
public interface BasicUdiProductService extends IService<BasicUdiProductEntity>{
}

@ -0,0 +1,11 @@
package com.glxp.api.service.basic;
import org.springframework.stereotype.Service;
import com.baomidou.mybatisplus.extension.service.impl.ServiceImpl;
import com.glxp.api.dao.basic.BasicUdiProductMapper;
import com.glxp.api.entity.basic.BasicUdiProductEntity;
@Service
public class BasicUdiProductServiceImpl extends ServiceImpl<BasicUdiProductMapper, BasicUdiProductEntity> implements BasicUdiProductService{
}

@ -34,10 +34,10 @@ spring:
max-request-size: 500MB
rabbitmq:
host: 127.0.0.1
host: 192.168.0.66
port: 5672
username: cpt
password: 123456
username: glxp
password: glxp1234
virtual-host: /
publisher-confirms: false
connection-timeout: 15000

@ -0,0 +1,4 @@
<?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.api.dao.basic.BasicUdiProductMapper">
</mapper>
Loading…
Cancel
Save