1、阿里一些对象先上传 初始化一些访问接口方法

2、杰哥改的东西上传
3、循环导入药品没加类型查的问题
dev_unify
qiuyt 4 months ago
parent f2ebe1872b
commit ec747944bf

@ -0,0 +1,73 @@
package com.glxp.api.entity.alihealth;
import com.baomidou.mybatisplus.annotation.TableField;
import io.swagger.annotations.ApiModelProperty;
import lombok.Data;
import java.util.Date;
import java.util.List;
@Data
public class AliYljgBillDetail {
/**
*
*/
private String billCode;
/**
*
*/
private String billTypeName;
/**
*
*/
private String billType;
/**
*
*/
private String entSendName;
/**
*
*/
private String entRecvName;
/**
* refEntId
*/
private String entRecvId;
/**
*
*/
private String storeOutDate;
/**
*
*/
private String updateDate;
/**
*
*/
private List<AliYljgBillDetailDrug> aliYljgBillDetailDrugList;
private String erpId;
/**
*
*/
@TableField(value = "createTime")
@ApiModelProperty(value = "创建时间")
private Date createTime;
/**
*
*/
@TableField(value = "updateTime")
@ApiModelProperty(value = "更新时间")
private Date updateTime;
}

@ -0,0 +1,98 @@
package com.glxp.api.entity.alihealth;
import lombok.Data;
import java.util.List;
@Data
public class AliYljgBillDetailDrug {
/**
*
*/
private String produceDate;
/**
*
*/
private String productEntName;
/**
*
*/
private String packageSpec;
/**
*
*/
private String prodName;
/**
*
*/
private String physicName;
/**
*
*/
private String prepnSpec;
/**
*
*/
private String prepnUnit;
/**
*
*/
private String produceBatchNo;
/**
*
*/
private String prodSeqNo;
/**
*
*/
private String drugEntBaseInfoId;
/**
*
*/
private String validEndDate;
/**
*
*/
private String leastPkgAmount;
/**
*
*/
private String leastPrepnAmount;
/**
*
*/
private String approvalNo;
/**
*
*/
private String physicType;
/**
*
*/
private String physicTypeName;
/**
*
*/
private String preparationsUnit;
/**
*
*/
private String prepnTypeDesc;
/**
*
*/
private List<AliYljgBillDetailDrugCode> aliYljgBillDetailDrugCodeList;
/**
*
*/
private String pkgUnitDesc;
}

@ -0,0 +1,39 @@
package com.glxp.api.entity.alihealth;
import lombok.Data;
@Data
public class AliYljgBillDetailDrugCode {
/**
*
*/
private String prepnSpec;
/**
*
*/
private String prepnAmount;
/**
*
*/
private String pkgAmount;
/**
*
*/
private String codeLevel;
/**
*
*/
private String code;
}

@ -0,0 +1,130 @@
package com.glxp.api.entity.alihealth;
import com.baomidou.mybatisplus.annotation.TableField;
import io.swagger.annotations.ApiModelProperty;
import lombok.Data;
import java.util.Date;
@Data
public class AliYljgSearchbill {
/**
*
*/
private String fromEntName;
/**
*
*/
private String codeCount;
/**
*
*/
private String exprieDate;
/**
*
*/
private String produceEntName;
/**
*
*/
private String produceDate;
/**
*
*/
private String produceBatchNo;
/**
*
*/
private String pkgSpec;
/**
*
*/
private String physicInfo;
/**
*
*/
private String physicName;
/**
*
*/
private String prepnCount;
/**
* REFENTID
*/
private String fromRefUserId;
/**
* REFENTID
*/
private String toRefUserId;
/**
*
*/
private String billTime;
/**
*
*/
private String billCode;
/**
*
*/
private String billType;
/**
*
*/
private String toUserName;
/**
*
*/
private String fromUserName;
/**
*
*/
private String exprieDateFormat;
/**
*
*/
private String billTimeFormat;
/**
* ID
*/
private String billOutId;
/**
*
*/
private String prepnUnit;
/**
*
*/
private String prepnSpec;
/**
* ID
*/
private String drugEntBaseInfoId;
/**
*
*/
private String produceDateFormat;
/**
* 12
*/
private String status;
private String erpId;
/**
*
*/
@TableField(value = "createTime")
@ApiModelProperty(value = "创建时间")
private Date createTime;
/**
*
*/
@TableField(value = "updateTime")
@ApiModelProperty(value = "更新时间")
private Date updateTime;
}

@ -0,0 +1,14 @@
package com.glxp.api.req.alihealth;
import com.glxp.api.req.alihealth.local.AlihealthYljgLocaCodedetailReqeust;
import lombok.Data;
@Data
public class AlihealthYljgCodedetailReqeust extends AlihealthKytCommonParametersReqeust {
private String ref_ent_id;
private String codes;
public AlihealthYljgCodedetailReqeust(){
this.setMethod("alibaba.alihealth.drugtrace.top.yljg.query.codedetail");
}
}

@ -0,0 +1,29 @@
package com.glxp.api.req.alihealth;
import lombok.Data;
@Data
public class AlihealthYljgListupoutDetailReqeust extends AlihealthKytCommonParametersReqeust {
/**
* ID
*/
private String ref_ent_id;
/**
*
*/
private String bill_code;
/**
* renEntId
*/
private String from_ref_user_id;
/**
* refEntId
*/
private String to_ref_user_id;
public AlihealthYljgListupoutDetailReqeust(){
this.setMethod("alibaba.alihealth.drugtrace.top.yljg.listupout.detail");
}
}

@ -1,10 +1,9 @@
package com.glxp.api.req.alihealth;
import com.glxp.api.req.alihealth.AlihealthKytCommonParametersReqeust;
import lombok.Data;
@Data
public class AlihealthLsydListupoutReqeust extends AlihealthKytCommonParametersReqeust {
public class AlihealthYljgListupoutReqeust extends AlihealthKytCommonParametersReqeust {
/**
* ID
*/
@ -51,7 +50,7 @@ public class AlihealthLsydListupoutReqeust extends AlihealthKytCommonParametersR
private Integer page_size;
public AlihealthLsydListupoutReqeust(){
this.setMethod("alibaba.alihealth.drugtrace.top.lsyd.listupout");
public AlihealthYljgListupoutReqeust(){
this.setMethod("alibaba.alihealth.drugtrace.top.yljg.listupout");
}
}

@ -0,0 +1,14 @@
package com.glxp.api.req.alihealth;
import lombok.Data;
@Data
public class AlihealthYljgSinglerelationReqeust extends AlihealthKytCommonParametersReqeust {
private String ref_ent_id;
private String des_ref_ent_id;
private String code;
public AlihealthYljgSinglerelationReqeust(){
this.setMethod("alibaba.alihealth.drugtrace.top.yljg.query.relation");
}
}

@ -0,0 +1,50 @@
package com.glxp.api.req.alihealth;
import com.glxp.api.req.alihealth.AlihealthKytCommonParametersReqeust;
import lombok.Data;
@Data
public class AlihealthYljgUploadinoutbillReqeust extends AlihealthKytCommonParametersReqeust {
private String bill_code;
private String bill_time;
private String bill_type;
private String physic_type;
private String ref_user_id;
private String agent_ref_user_id;
private String from_user_id;
private String to_user_id;
private String dest_user_id;
private String oper_ic_code;
private String oper_ic_name;
private String warehouse_id;
private String drug_id;
private String trace_codes;
private String client_type;
private String return_reason_code;
private String return_reason_des;
private String cancel_reason_code;
private String cancel_reason_des;
private String executer_name;
private String executer_code;
private String superviser_name;
private String superviser_code;
private String from_address;
private String to_address;
private String from_bill_code;
private String order_code;
private String from_person;
private String to_person;
private String dis_ref_ent_id;
private String dis_ent_id;
private String qu_receivable;
private String xt_is_check;
private String xt_check_code;
private String xt_check_code_desc;
private String drug_list_json;
private String ass_ref_ent_id;
private String ass_ent_id;
public AlihealthYljgUploadinoutbillReqeust(){
this.setMethod("alibaba.alihealth.drugtrace.top.yljg.uploadinoutbill");
}
}

@ -0,0 +1,16 @@
package com.glxp.api.req.alihealth.local;
import com.glxp.api.req.alihealth.AlihealthKytDrugrescodeReqeust;
import com.glxp.api.req.alihealth.AlihealthYljgUploadinoutbillReqeust;
import lombok.Data;
@Data
public class AlihealthRelCodeInsertYljgReqeust {
/**
*
*/
private String erpId;
private String appSecret;
private AlihealthYljgUploadinoutbillReqeust alihealthYljgUploadinoutbillReqeust;
}

@ -0,0 +1,11 @@
package com.glxp.api.req.alihealth.local;
import com.glxp.api.req.alihealth.AlihealthYljgCodedetailReqeust;
import lombok.Data;
@Data
public class AlihealthYljgLocaCodedetailReqeust {
private String erpId;
private String appSecret;
private AlihealthYljgCodedetailReqeust alihealthYljgCodedetailReqeust;
}

@ -0,0 +1,12 @@
package com.glxp.api.req.alihealth.local;
import com.glxp.api.req.alihealth.AlihealthYljgUploadinoutbillReqeust;
import lombok.Data;
@Data
public class AlihealthYljgLocalUploadinoutbillReqeust {
private String erpId;
private String appSecret;
private AlihealthYljgUploadinoutbillReqeust alihealthYljgUploadinoutbillReqeust;
}

@ -0,0 +1,50 @@
package com.glxp.api.res.alihealth;
import cn.hutool.json.JSONArray;
import cn.hutool.json.JSONObject;
import cn.hutool.json.JSONUtil;
import lombok.Data;
import org.apache.commons.lang3.StringUtils;
import org.springframework.beans.BeanUtils;
import java.util.Objects;
@Data
public class AlihealthLsydListupoutDetailResponse extends AlihealthKytCommonParametersResponse {
private JSONArray bill_up_out_detail_do;
private Integer total_num;
public AlihealthLsydListupoutDetailResponse(String json) {
// 初始化请求的值
JSONObject jsonObject = JSONUtil.parseObj(json);
JSONObject jsonObjectResult = null;
for (String s : jsonObject.keySet()) {
jsonObjectResult = jsonObject.getJSONObject(s).getJSONObject("result");
}
AlihealthKytCommonParametersResponse alihealthKytCommonParametersResponse = JSONUtil.toBean(jsonObjectResult.toString(),
AlihealthKytCommonParametersResponse.class);
BeanUtils.copyProperties(alihealthKytCommonParametersResponse, this);
if (StringUtils.isNotEmpty(this.getMsg_info())
&& this.getMsg_info().equals("调用成功")
) {
this.disposeResult(jsonObjectResult);
}
}
public void disposeResult(JSONObject jsonObjectResult) {
JSONObject jsonObjectModel = jsonObjectResult.getJSONObject("model");
if (!Objects.isNull(jsonObjectModel)) {
this.setTotal_num(jsonObjectModel.getInt("total_num"));
this.setBill_up_out_detail_do(jsonObjectModel.getJSONObject("result_list").getJSONArray("bill_up_out_detail_do"));
}
}
public void disposeAliKytBillDetail(JSONObject jsonObjectResult) {
JSONObject jsonObjectModel = jsonObjectResult.getJSONObject("model");
if (!Objects.isNull(jsonObjectModel)) {
this.setTotal_num(jsonObjectModel.getInt("total_num"));
this.setBill_up_out_detail_do(jsonObjectModel.getJSONObject("result_list").getJSONArray("bill_up_out_detail_do"));
}
}
}

@ -11,9 +11,39 @@ import java.util.Objects;
@Data
public class AlihealthLsydListupoutResponse extends AlihealthKytCommonParametersResponse {
private JSONArray bill_up_out_detail_do;
private Integer total_num;
/**
*
*/
private String bill_code;
/**
*
*/
private String bill_type_name;
/**
*
*/
private String bill_type;
/**
*
*/
private String ent_send_name;
/**
*
*/
private String ent_recv_name;
/**
* ref_ent_id
*/
private String ent_recv_id;
/**
*
*/
private String store_out_date;
/**
*
*/
private String update_date;
private JSONArray drug_infos_dto_list;
public AlihealthLsydListupoutResponse(String json) {
// 初始化请求的值
cn.hutool.json.JSONObject jsonObject = JSONUtil.parseObj(json);
@ -36,8 +66,14 @@ public class AlihealthLsydListupoutResponse extends AlihealthKytCommonParameter
public void disposeResult(JSONObject jsonObjectResult) {
JSONObject jsonObjectModel = jsonObjectResult.getJSONObject("model");
if (!Objects.isNull(jsonObjectModel)) {
this.setTotal_num(jsonObjectModel.getInt("total_num"));
this.setBill_up_out_detail_do(jsonObjectModel.getJSONObject("result_list").getJSONArray("bill_up_out_detail_do"));
BeanUtils.copyProperties(jsonObjectModel,this);
}
}
// public void disposeAliKytBillDetail() {
// JSONObject jsonObjectModel = jsonObjectResult.getJSONObject("model");
// if (!Objects.isNull(jsonObjectModel)) {
// this.setTotal_num(jsonObjectModel.getInt("total_num"));
// this.setBill_up_out_detail_do(jsonObjectModel.getJSONObject("result_list").getJSONArray("bill_up_out_detail_do"));
// }
// }
}

@ -0,0 +1,92 @@
package com.glxp.api.res.alihealth;
import cn.hutool.json.JSONArray;
import cn.hutool.json.JSONObject;
import cn.hutool.json.JSONUtil;
import com.glxp.api.entity.collect.RelCodeBatch;
import com.glxp.api.util.udi.FilterUdiUtils;
import lombok.Data;
import org.apache.commons.lang3.StringUtils;
import org.springframework.beans.BeanUtils;
import java.util.*;
@Data
public class AlihealthYljgCodedetailResponse extends AlihealthKytCommonParametersResponse{
private JSONArray code_full_info_dto;
public AlihealthYljgCodedetailResponse(String json) {
// 初始化请求的值
JSONObject jsonObject = JSONUtil.parseObj(json);
JSONObject jsonObjectResult = null;
for (String s : jsonObject.keySet()) {
jsonObjectResult = jsonObject.getJSONObject(s).getJSONObject("result");
}
AlihealthKytCommonParametersResponse alihealthKytCommonParametersResponse = JSONUtil.toBean(jsonObjectResult.toString(),
AlihealthKytCommonParametersResponse.class);
BeanUtils.copyProperties(alihealthKytCommonParametersResponse, this);
if (StringUtils.isNotEmpty(this.getMsg_info())
&& this.getMsg_info().equals("调用成功")
) {
this.disposeResult(jsonObjectResult);
}
}
public void disposeResult(JSONObject jsonObjectResult) {
JSONObject jsonObjectModel = jsonObjectResult.getJSONObject("models");
if (!Objects.isNull(jsonObjectModel)) {
this.code_full_info_dto = jsonObjectResult.getJSONArray("code_full_info_dto");
// this.setTotal_num(jsonObjectModel.getInt("total_num"));
// this.setBill_up_out_detail_do(jsonObjectModel.getJSONObject("result_list").getJSONArray("bill_up_out_detail_do"));
}
}
public List<RelCodeBatch> disposeRelCodeBatch(String customerId){
List<RelCodeBatch> relCodeBatchList =new ArrayList<>();
List<JSONObject> list = (List)this.getCode_full_info_dto();
if(list != null & list.size() >0){
for (JSONObject jsonObject : list) {
RelCodeBatch relCodeBatch = new RelCodeBatch();
relCodeBatch.setProductCode(FilterUdiUtils.getUdi(jsonObject.getStr("code")).getUdi());
// relCodeBatch.setSubTypeNo();
// relCodeBatch.setCascadeRatio();
relCodeBatch.setPackageSpec(jsonObject.getStr("pkg_spec_crit"));
// relCodeBatch.setComment();
List<JSONObject> jsonArray = (List) jsonObject.getJSONObject("code_produce_info_d_t_o").getJSONArray("produce_info_list");
JSONObject produceInfo =jsonArray.get(0);
relCodeBatch.setBatchNo(produceInfo.getStr("batch_no"));
relCodeBatch.setMadeDate(produceInfo.getStr("produce_date_str"));
relCodeBatch.setValidateDate(produceInfo.getStr("expire_date"));
relCodeBatch.setWorkShop(jsonObject.getJSONObject("p_user_ent_d_t_o").getStr("ent_name"));
// relCodeBatch.setLineName();
// relCodeBatch.setLineManager();
// relCodeBatch.setCreateTime();
// relCodeBatch.setCreateUser();
relCodeBatch.setUpdateTime(new Date());
relCodeBatch.setUpdateUser(customerId);
relCodeBatch.setUploadFlagUp(0);
relCodeBatch.setUploadFlagDown(0);
relCodeBatch.setParentCode(null);
relCodeBatch.setErpId(customerId);
relCodeBatch.setCurCode(jsonObject.getStr("code"));
// if(jsonObject.getJSONObject("p_user_ent_d_t_o").equals("1")){
//
// }else if(jsonObject.getJSONObject("p_user_ent_d_t_o").equals("2")){
//
// }
relCodeBatch.setOneLevelCount(0);
relCodeBatch.setTwoLevelCount(0);
relCodeBatch.setThreeLevelCount(0);
relCodeBatchList.add(relCodeBatch);
}
}
return relCodeBatchList;
}
}

@ -0,0 +1,14 @@
package com.glxp.api.res.alihealth;
import cn.hutool.json.JSONObject;
import cn.hutool.json.JSONUtil;
import org.apache.commons.lang3.StringUtils;
import org.springframework.beans.BeanUtils;
import javax.annotation.Resource;
@Resource
public class AlihealthYljgUploadinoutbillResponse extends AlihealthKytCommonParametersResponse{
private String response_success;
}

@ -461,7 +461,11 @@ public class UdiProductServiceImpl implements UdiProductService {
List<UdiProductEntity> udiInfoEntities = findByUuids(udiRelevanceEntity.getUuid());
List<DiLevelResponse> diLevelResponses = new ArrayList<>();
if (CollUtil.isNotEmpty(udiInfoEntities)) {
for (UdiProductEntity udiProductEntity:udiInfoEntities){
if(udiProductEntity.getPackLevel() == null){
udiProductEntity.setPackLevel("1");
}
}
Map<String, List<UdiProductEntity>> groupedByLevel = udiInfoEntities.stream()
.collect(Collectors.groupingBy(UdiProductEntity::getPackLevel));
groupedByLevel.forEach((level, entities) -> {

@ -247,13 +247,13 @@ public class ThirdAliDrugService extends ServiceImpl<ThirdAliDrugMapper, ThirdAl
}
public boolean addOrUpdate(List<ThirdAliDrug> list) {
if(list!=null && list.size() >0){
if (list != null && list.size() > 0) {
for (ThirdAliDrug thirdAliDrug : list) {
ThirdAliDrug thirdAliDrugNew = this.getOne(new QueryWrapper<ThirdAliDrug>().eq("nameCode", thirdAliDrug.getNameCode())
.last("limit 1")
);
if (Objects.isNull(thirdAliDrugNew)) {
thirdAliDrug.setId(null);
this.save(thirdAliDrug);
} else {
@ -262,7 +262,7 @@ public class ThirdAliDrugService extends ServiceImpl<ThirdAliDrugMapper, ThirdAl
}
return true;
}else {
} else {
return false;
}
}

@ -0,0 +1,135 @@
package com.glxp.api.util.alihealth;
import cn.hutool.http.HttpUtil;
import cn.hutool.json.JSONUtil;
import com.glxp.api.common.res.BaseResponse;
import com.glxp.api.common.util.ResultVOUtils;
import com.glxp.api.entity.collect.RelCodeBatch;
import com.glxp.api.req.alihealth.*;
import com.glxp.api.req.alihealth.local.*;
import com.glxp.api.res.alihealth.*;
import com.glxp.api.service.auth.CustomerInfoService;
import com.glxp.api.service.collect.RelCodeBatchService;
import com.glxp.api.service.collect.RelCodeDetailService;
import org.springframework.beans.factory.annotation.Value;
import org.springframework.stereotype.Component;
import javax.annotation.Resource;
import java.util.List;
import java.util.Map;
@Component
public class AlihealthYljgUtils {
@Resource
private CustomerInfoService customerInfoService;
@Resource
private AlihealthUtils alihealthUtils;
@Resource
private RelCodeDetailService relCodeDetailService;
@Resource
private RelCodeBatchService relCodeBatchService;
@Value("${ALIHEALTH_URL:http://gw.api.taobao.com/router/rest}")
private String alihealthUrl;
/**
*
* @param reqeust
* @return
*/
public BaseResponse<AlihealthKytSinglerelationResponse> yljgUploadinoutbill(AlihealthYljgLocalUploadinoutbillReqeust reqeust) {
AlihealthYljgUploadinoutbillResponse alihealthYljgUploadinoutbillResponse = null;
if (reqeust != null
&& org.apache.commons.lang3.StringUtils.isNotEmpty(reqeust.getAppSecret())
&& org.apache.commons.lang3.StringUtils.isNotEmpty(reqeust.getAppSecret())
) {
try {
Map map = alihealthUtils.disposeSign(reqeust.getAlihealthYljgUploadinoutbillReqeust(), reqeust.getAppSecret());
String json = HttpUtil.get(alihealthUrl, map);
alihealthYljgUploadinoutbillResponse = JSONUtil.toBean(json, AlihealthYljgUploadinoutbillResponse.class);
} catch (Exception e) {
return ResultVOUtils.error("阿里健康接口调用失败===" + e.getMessage());
}
} else {
return ResultVOUtils.error("阿里健康接口调用失败===用户找不到或者key和秘钥为空");
}
if (alihealthYljgUploadinoutbillResponse.judgeCall()) {
return ResultVOUtils.success(alihealthYljgUploadinoutbillResponse);
} else {
return ResultVOUtils.error("阿里健康接口调用失败===" + alihealthYljgUploadinoutbillResponse.getMsg_info());
}
}
/**
*
* @param reqeust
* @return
*/
public BaseResponse<AlihealthYljgUploadinoutbillReqeust> relCodeInsert(AlihealthRelCodeInsertYljgReqeust reqeust) {
AlihealthLsydListupoutDetailResponse alihealthLsydListupoutDetailResponse = null;
AlihealthYljgUploadinoutbillReqeust alihealthYljgUploadinoutbillReqeust = reqeust.getAlihealthYljgUploadinoutbillReqeust();
if (reqeust != null
&& org.apache.commons.lang3.StringUtils.isNotEmpty(alihealthYljgUploadinoutbillReqeust.getApp_key())
&& org.apache.commons.lang3.StringUtils.isNotEmpty(reqeust.getAppSecret())
) {
try {
Map map = alihealthUtils.disposeSign(alihealthYljgUploadinoutbillReqeust, reqeust.getAppSecret());
String json = HttpUtil.get(alihealthUrl, map);
alihealthLsydListupoutDetailResponse = new AlihealthLsydListupoutDetailResponse(json);
} catch (Exception e) {
return ResultVOUtils.error("阿里健康接口调用失败===" + e.getMessage());
}
} else {
return ResultVOUtils.error("阿里健康接口调用失败===用户找不到或者key和秘钥为空");
}
if (alihealthLsydListupoutDetailResponse.judgeCall()) {
return ResultVOUtils.success(alihealthLsydListupoutDetailResponse);
} else {
return ResultVOUtils.error("阿里健康接口调用失败===" + alihealthLsydListupoutDetailResponse.getMsg_info());
}
}
/**
*
* @param reqeust
* @return
*/
public BaseResponse<List<RelCodeBatch>> codedetail(AlihealthYljgLocaCodedetailReqeust reqeust) {
AlihealthYljgCodedetailResponse alihealthYljgCodedetailResponse = null;
AlihealthYljgCodedetailReqeust alihealthYljgCodedetailReqeust = reqeust.getAlihealthYljgCodedetailReqeust();
if (reqeust != null
&& org.apache.commons.lang3.StringUtils.isNotEmpty(alihealthYljgCodedetailReqeust.getApp_key())
&& org.apache.commons.lang3.StringUtils.isNotEmpty(reqeust.getAppSecret())
) {
try {
Map map = alihealthUtils.disposeSign(alihealthYljgCodedetailReqeust, reqeust.getAppSecret());
String json = HttpUtil.get(alihealthUrl, map);
alihealthYljgCodedetailResponse = new AlihealthYljgCodedetailResponse(json);
} catch (Exception e) {
return ResultVOUtils.error("阿里健康接口调用失败===" + e.getMessage());
}
} else {
return ResultVOUtils.error("阿里健康接口调用失败===用户找不到或者key和秘钥为空");
}
if (alihealthYljgCodedetailResponse.judgeCall()) {
return ResultVOUtils.success( alihealthYljgCodedetailResponse.disposeRelCodeBatch(reqeust.getErpId()));
} else {
return ResultVOUtils.error("阿里健康接口调用失败===" + alihealthYljgCodedetailResponse.getMsg_info());
}
}
}

@ -47,6 +47,9 @@
and DATE_FORMAT(updateTime, '%Y-%m-%d %H:%i:%S') >= DATE_FORMAT(#{lastUpdateTime}, '%Y-%m-%d %H:%i:%S')
]]>
</if>
<if test="productType != '' and productType != null">
AND productType = #{productType}
</if>
</where>
</select>
<select id="filterThrProducts1" parameterType="com.glxp.api.req.thrsys.FilterThrProductsRequest"

Loading…
Cancel
Save