新增医疗器械信息维护,区分注册医疗企业信息维护
parent
8a3e3426a2
commit
8027700c2f
@ -0,0 +1,58 @@
|
|||||||
|
package com.glxp.api.controller.trace;
|
||||||
|
|
||||||
|
import com.github.pagehelper.PageInfo;
|
||||||
|
import com.glxp.api.annotation.AuthRuleAnnotation;
|
||||||
|
import com.glxp.api.common.res.BaseResponse;
|
||||||
|
import com.glxp.api.common.util.ResultVOUtils;
|
||||||
|
import com.glxp.api.req.trace.TraceManuDetailRequest;
|
||||||
|
import com.glxp.api.req.trace.TraceManuOrderRequest;
|
||||||
|
import com.glxp.api.req.trace.TraceRecordRequest;
|
||||||
|
import com.glxp.api.res.PageSimpleResponse;
|
||||||
|
import com.glxp.api.res.trace.TraceManuCodeRellResponse;
|
||||||
|
import com.glxp.api.res.trace.TraceManuOrderResponse;
|
||||||
|
import com.glxp.api.res.trace.TraceRecordResponse;
|
||||||
|
import com.glxp.api.service.trace.TraceManuCodeRelService;
|
||||||
|
import com.glxp.api.service.trace.TraceManuOrderService;
|
||||||
|
import lombok.extern.slf4j.Slf4j;
|
||||||
|
import org.springframework.web.bind.annotation.GetMapping;
|
||||||
|
import org.springframework.web.bind.annotation.RestController;
|
||||||
|
import springfox.documentation.annotations.ApiIgnore;
|
||||||
|
|
||||||
|
import javax.annotation.Resource;
|
||||||
|
import java.util.List;
|
||||||
|
|
||||||
|
@ApiIgnore
|
||||||
|
@RestController
|
||||||
|
@Slf4j
|
||||||
|
public class TraceManuOrderController {
|
||||||
|
@Resource
|
||||||
|
TraceManuOrderService traceManuOrderService;
|
||||||
|
@Resource
|
||||||
|
TraceManuCodeRelService traceManuCodeRelService;
|
||||||
|
|
||||||
|
@AuthRuleAnnotation("udi/trace/manu/order/filter")
|
||||||
|
@GetMapping("udi/trace/manu/order/filter")
|
||||||
|
public BaseResponse filterLogs(TraceManuOrderRequest traceManuOrderRequest) {
|
||||||
|
|
||||||
|
List<TraceManuOrderResponse> traceManuOrderResponses = traceManuOrderService.filterTraces(traceManuOrderRequest);
|
||||||
|
PageInfo<TraceManuOrderResponse> pageInfo = new PageInfo<>(traceManuOrderResponses);
|
||||||
|
PageSimpleResponse<TraceManuOrderResponse> pageSimpleResponse = new PageSimpleResponse<>();
|
||||||
|
pageSimpleResponse.setTotal(pageInfo.getTotal());
|
||||||
|
pageSimpleResponse.setList(traceManuOrderResponses);
|
||||||
|
return ResultVOUtils.success(pageSimpleResponse);
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
|
@AuthRuleAnnotation("udi/trace/manu/order/relCode")
|
||||||
|
@GetMapping("udi/trace/manu/order/relCode")
|
||||||
|
public BaseResponse filterDetail(TraceManuDetailRequest traceManuDetailRequest) {
|
||||||
|
|
||||||
|
List<TraceManuCodeRellResponse> traceManuCodeRellResponses = traceManuCodeRelService.filterList(traceManuDetailRequest);
|
||||||
|
PageInfo<TraceManuCodeRellResponse> pageInfo = new PageInfo<>(traceManuCodeRellResponses);
|
||||||
|
PageSimpleResponse<TraceManuCodeRellResponse> pageSimpleResponse = new PageSimpleResponse<>();
|
||||||
|
pageSimpleResponse.setTotal(pageInfo.getTotal());
|
||||||
|
pageSimpleResponse.setList(traceManuCodeRellResponses);
|
||||||
|
return ResultVOUtils.success(pageSimpleResponse);
|
||||||
|
}
|
||||||
|
|
||||||
|
}
|
@ -1,9 +0,0 @@
|
|||||||
package com.glxp.api.dao.basic;
|
|
||||||
|
|
||||||
import com.baomidou.mybatisplus.core.mapper.BaseMapper;
|
|
||||||
import com.glxp.api.entity.basic.BasicUdiRelEntity;
|
|
||||||
import org.apache.ibatis.annotations.Mapper;
|
|
||||||
|
|
||||||
@Mapper
|
|
||||||
public interface BasicUdiRelEntityMapper extends BaseMapper<BasicUdiRelEntity> {
|
|
||||||
}
|
|
@ -0,0 +1,12 @@
|
|||||||
|
package com.glxp.api.req.basic;
|
||||||
|
|
||||||
|
import lombok.Data;
|
||||||
|
|
||||||
|
import java.util.List;
|
||||||
|
|
||||||
|
@Data
|
||||||
|
public class BasicDictSelectRequest {
|
||||||
|
|
||||||
|
private String uuid;
|
||||||
|
private List<String> uuids;
|
||||||
|
}
|
@ -0,0 +1,53 @@
|
|||||||
|
package com.glxp.api.req.trace;
|
||||||
|
|
||||||
|
import com.baomidou.mybatisplus.annotation.IdType;
|
||||||
|
import com.baomidou.mybatisplus.annotation.TableField;
|
||||||
|
import com.baomidou.mybatisplus.annotation.TableId;
|
||||||
|
import lombok.Data;
|
||||||
|
|
||||||
|
@Data
|
||||||
|
public class TraceManuDetailRequest {
|
||||||
|
private Long id;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* UDI码
|
||||||
|
*/
|
||||||
|
private String code;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* 父码
|
||||||
|
*/
|
||||||
|
private String pcode;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* 批次号
|
||||||
|
*/
|
||||||
|
private String batchNo;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* 生产日期
|
||||||
|
*/
|
||||||
|
private String produceDate;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* 失效日期
|
||||||
|
*/
|
||||||
|
private String expireDate;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* 序列号
|
||||||
|
*/
|
||||||
|
private String serialNo;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* 1.满箱;2:零箱 3:拼箱满箱 4:拼箱零箱
|
||||||
|
*/
|
||||||
|
private Integer packState;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* 包装层级
|
||||||
|
*/
|
||||||
|
private Integer bzcj;
|
||||||
|
|
||||||
|
|
||||||
|
}
|
@ -0,0 +1,77 @@
|
|||||||
|
package com.glxp.api.req.trace;
|
||||||
|
|
||||||
|
import com.glxp.api.util.page.ListPageRequest;
|
||||||
|
import lombok.Data;
|
||||||
|
|
||||||
|
import java.util.Date;
|
||||||
|
|
||||||
|
@Data
|
||||||
|
public class TraceManuOrderRequest extends ListPageRequest {
|
||||||
|
|
||||||
|
private Long id;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* 生产订单号
|
||||||
|
*/
|
||||||
|
private String billNo;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* 订单日期
|
||||||
|
*/
|
||||||
|
private String billDate;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* 产品名称
|
||||||
|
*/
|
||||||
|
private String cpmctymc;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* 规格型号
|
||||||
|
*/
|
||||||
|
private String ggxh;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* 产品描述
|
||||||
|
*/
|
||||||
|
private String cpms;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* 注册/备案证号
|
||||||
|
*/
|
||||||
|
private String zczbhhzbapzbh;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* DI
|
||||||
|
*/
|
||||||
|
private String nameCode;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* 国家库UUID
|
||||||
|
*/
|
||||||
|
private String uuid;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* 医疗器械注册人
|
||||||
|
*/
|
||||||
|
private String ylqxzcrbarmc;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* 生产企业
|
||||||
|
*/
|
||||||
|
private String manufactory;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* 更新时间
|
||||||
|
*/
|
||||||
|
private Date updateTime;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* 企业信息ID外键
|
||||||
|
*/
|
||||||
|
private Long companyIdFk;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* 上传者ID
|
||||||
|
*/
|
||||||
|
private Long uploadUser;
|
||||||
|
}
|
@ -0,0 +1,79 @@
|
|||||||
|
package com.glxp.api.res.trace;
|
||||||
|
|
||||||
|
import lombok.Data;
|
||||||
|
|
||||||
|
import java.util.Date;
|
||||||
|
|
||||||
|
@Data
|
||||||
|
public class TraceManuCodeRellResponse {
|
||||||
|
|
||||||
|
|
||||||
|
private Long id;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* 生产订单号
|
||||||
|
*/
|
||||||
|
private String billNo;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* 订单日期
|
||||||
|
*/
|
||||||
|
private String billDate;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* 产品名称
|
||||||
|
*/
|
||||||
|
private String cpmctymc;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* 规格型号
|
||||||
|
*/
|
||||||
|
private String ggxh;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* 产品描述
|
||||||
|
*/
|
||||||
|
private String cpms;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* 注册/备案证号
|
||||||
|
*/
|
||||||
|
private String zczbhhzbapzbh;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* DI
|
||||||
|
*/
|
||||||
|
private String nameCode;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* 国家库UUID
|
||||||
|
*/
|
||||||
|
private String uuid;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* 医疗器械注册人
|
||||||
|
*/
|
||||||
|
private String ylqxzcrbarmc;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* 生产企业
|
||||||
|
*/
|
||||||
|
private String manufactory;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* 更新时间
|
||||||
|
*/
|
||||||
|
private Date updateTime;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* 企业信息ID外键
|
||||||
|
*/
|
||||||
|
private Long companyIdFk;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* 上传者ID
|
||||||
|
*/
|
||||||
|
private Long uploadUser;
|
||||||
|
|
||||||
|
|
||||||
|
}
|
@ -0,0 +1,80 @@
|
|||||||
|
package com.glxp.api.res.trace;
|
||||||
|
|
||||||
|
import com.baomidou.mybatisplus.annotation.IdType;
|
||||||
|
import com.baomidou.mybatisplus.annotation.TableField;
|
||||||
|
import com.baomidou.mybatisplus.annotation.TableId;
|
||||||
|
import lombok.Data;
|
||||||
|
|
||||||
|
import java.util.Date;
|
||||||
|
|
||||||
|
@Data
|
||||||
|
public class TraceManuOrderResponse {
|
||||||
|
|
||||||
|
|
||||||
|
private Long id;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* 生产订单号
|
||||||
|
*/
|
||||||
|
private String billNo;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* 订单日期
|
||||||
|
*/
|
||||||
|
private String billDate;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* 产品名称
|
||||||
|
*/
|
||||||
|
private String cpmctymc;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* 规格型号
|
||||||
|
*/
|
||||||
|
private String ggxh;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* 产品描述
|
||||||
|
*/
|
||||||
|
private String cpms;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* 注册/备案证号
|
||||||
|
*/
|
||||||
|
private String zczbhhzbapzbh;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* DI
|
||||||
|
*/
|
||||||
|
private String nameCode;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* 国家库UUID
|
||||||
|
*/
|
||||||
|
private String uuid;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* 医疗器械注册人
|
||||||
|
*/
|
||||||
|
private String ylqxzcrbarmc;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* 生产企业
|
||||||
|
*/
|
||||||
|
private String manufactory;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* 更新时间
|
||||||
|
*/
|
||||||
|
private Date updateTime;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* 企业信息ID外键
|
||||||
|
*/
|
||||||
|
private Long companyIdFk;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* 上传者ID
|
||||||
|
*/
|
||||||
|
private Long uploadUser;
|
||||||
|
}
|
@ -1,8 +1,16 @@
|
|||||||
package com.glxp.api.service.basic;
|
package com.glxp.api.service.basic;
|
||||||
|
|
||||||
import com.glxp.api.entity.basic.BasicUdiProductEntity;
|
|
||||||
import com.baomidou.mybatisplus.extension.service.IService;
|
import com.baomidou.mybatisplus.extension.service.IService;
|
||||||
public interface BasicUdiProductService extends IService<BasicUdiProductEntity>{
|
import com.glxp.api.entity.basic.BasicUdiProductEntity;
|
||||||
|
import com.glxp.api.req.basic.FilterUdiRelRequest;
|
||||||
|
import com.glxp.api.res.basic.BasicUdiRelResponse;
|
||||||
|
|
||||||
|
import java.util.List;
|
||||||
|
|
||||||
|
public interface BasicUdiProductService extends IService<BasicUdiProductEntity> {
|
||||||
|
|
||||||
|
public boolean isExit(String uuid);
|
||||||
|
|
||||||
|
public List<BasicUdiProductEntity> filterList(FilterUdiRelRequest filterUdiRelRequest);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -1,11 +1,32 @@
|
|||||||
package com.glxp.api.service.basic;
|
package com.glxp.api.service.basic;
|
||||||
|
|
||||||
|
import com.baomidou.mybatisplus.core.conditions.query.QueryWrapper;
|
||||||
|
import com.github.pagehelper.PageHelper;
|
||||||
|
import com.glxp.api.entity.basic.BasicUdiRelEntity;
|
||||||
|
import com.glxp.api.req.basic.FilterUdiRelRequest;
|
||||||
import org.springframework.stereotype.Service;
|
import org.springframework.stereotype.Service;
|
||||||
import com.baomidou.mybatisplus.extension.service.impl.ServiceImpl;
|
import com.baomidou.mybatisplus.extension.service.impl.ServiceImpl;
|
||||||
import com.glxp.api.dao.basic.BasicUdiProductMapper;
|
import com.glxp.api.dao.basic.BasicUdiProductMapper;
|
||||||
import com.glxp.api.entity.basic.BasicUdiProductEntity;
|
import com.glxp.api.entity.basic.BasicUdiProductEntity;
|
||||||
|
|
||||||
|
import javax.annotation.Resource;
|
||||||
|
import java.util.List;
|
||||||
|
|
||||||
@Service
|
@Service
|
||||||
public class BasicUdiProductServiceImpl extends ServiceImpl<BasicUdiProductMapper, BasicUdiProductEntity> implements BasicUdiProductService{
|
public class BasicUdiProductServiceImpl extends ServiceImpl<BasicUdiProductMapper, BasicUdiProductEntity> implements BasicUdiProductService {
|
||||||
|
@Resource
|
||||||
|
BasicUdiProductMapper basicUdiProductMapper;
|
||||||
|
|
||||||
|
@Override
|
||||||
|
public boolean isExit(String uuid) {
|
||||||
|
return basicUdiProductMapper.exists(new QueryWrapper<BasicUdiProductEntity>().eq("uuid", uuid));
|
||||||
|
}
|
||||||
|
|
||||||
|
@Override
|
||||||
|
public List<BasicUdiProductEntity> filterList(FilterUdiRelRequest filterUdiRelRequest) {
|
||||||
|
if (null != filterUdiRelRequest.getPage() && null != filterUdiRelRequest.getLimit()) {
|
||||||
|
PageHelper.offsetPage((filterUdiRelRequest.getPage() - 1) * filterUdiRelRequest.getLimit(), filterUdiRelRequest.getLimit());
|
||||||
|
}
|
||||||
|
return basicUdiProductMapper.filterList(filterUdiRelRequest);
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
@ -1,11 +1,19 @@
|
|||||||
package com.glxp.api.service.trace;
|
package com.glxp.api.service.trace;
|
||||||
|
|
||||||
|
import com.glxp.api.req.trace.TraceManuDetailRequest;
|
||||||
|
import com.glxp.api.res.trace.TraceManuCodeRellResponse;
|
||||||
import org.springframework.stereotype.Service;
|
import org.springframework.stereotype.Service;
|
||||||
import com.baomidou.mybatisplus.extension.service.impl.ServiceImpl;
|
import com.baomidou.mybatisplus.extension.service.impl.ServiceImpl;
|
||||||
import com.glxp.api.entity.trace.TraceManuCodeRelEntity;
|
import com.glxp.api.entity.trace.TraceManuCodeRelEntity;
|
||||||
import com.glxp.api.dao.trace.TraceManuCodeRelMapper;
|
import com.glxp.api.dao.trace.TraceManuCodeRelMapper;
|
||||||
|
|
||||||
|
import java.util.List;
|
||||||
|
|
||||||
@Service
|
@Service
|
||||||
public class TraceManuCodeRelServiceImpl extends ServiceImpl<TraceManuCodeRelMapper, TraceManuCodeRelEntity> implements TraceManuCodeRelService{
|
public class TraceManuCodeRelServiceImpl extends ServiceImpl<TraceManuCodeRelMapper, TraceManuCodeRelEntity> implements TraceManuCodeRelService {
|
||||||
|
|
||||||
|
@Override
|
||||||
|
public List<TraceManuCodeRellResponse> filterList(TraceManuDetailRequest traceManuDetailRequest) {
|
||||||
|
return null;
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
@ -1,11 +0,0 @@
|
|||||||
package com.glxp.api.service.trace;
|
|
||||||
|
|
||||||
import org.springframework.stereotype.Service;
|
|
||||||
import com.baomidou.mybatisplus.extension.service.impl.ServiceImpl;
|
|
||||||
import com.glxp.api.entity.trace.TraceManuOrderEntity;
|
|
||||||
import com.glxp.api.dao.trace.TraceManuOrderMapper;
|
|
||||||
|
|
||||||
@Service
|
|
||||||
public class TraceManuOrderServiceImpl extends ServiceImpl<TraceManuOrderMapper, TraceManuOrderEntity> implements TraceManuOrderService{
|
|
||||||
|
|
||||||
}
|
|
@ -0,0 +1,39 @@
|
|||||||
|
package com.glxp.api.service.trace.impl;
|
||||||
|
|
||||||
|
import com.github.pagehelper.PageHelper;
|
||||||
|
import com.glxp.api.dao.trace.TraceRecordMapper;
|
||||||
|
import com.glxp.api.req.trace.TraceManuOrderRequest;
|
||||||
|
import com.glxp.api.req.trace.TraceRecordRequest;
|
||||||
|
import com.glxp.api.res.trace.TraceManuOrderResponse;
|
||||||
|
import com.glxp.api.res.trace.TraceRecordResponse;
|
||||||
|
import com.glxp.api.service.trace.TraceManuOrderService;
|
||||||
|
import org.springframework.stereotype.Service;
|
||||||
|
import com.baomidou.mybatisplus.extension.service.impl.ServiceImpl;
|
||||||
|
import com.glxp.api.entity.trace.TraceManuOrderEntity;
|
||||||
|
import com.glxp.api.dao.trace.TraceManuOrderMapper;
|
||||||
|
|
||||||
|
import javax.annotation.Resource;
|
||||||
|
import java.util.Collections;
|
||||||
|
import java.util.List;
|
||||||
|
|
||||||
|
@Service
|
||||||
|
public class TraceManuOrderServiceImpl extends ServiceImpl<TraceManuOrderMapper, TraceManuOrderEntity> implements TraceManuOrderService {
|
||||||
|
|
||||||
|
|
||||||
|
@Resource
|
||||||
|
TraceManuOrderMapper traceManuOrderMapper;
|
||||||
|
|
||||||
|
@Override
|
||||||
|
public List<TraceManuOrderResponse> filterTraces(TraceManuOrderRequest traceManuOrderRequest) {
|
||||||
|
if (traceManuOrderRequest == null) {
|
||||||
|
return Collections.emptyList();
|
||||||
|
}
|
||||||
|
if (traceManuOrderRequest.getPage() != null) {
|
||||||
|
int offset = (traceManuOrderRequest.getPage() - 1) * traceManuOrderRequest.getLimit();
|
||||||
|
PageHelper.offsetPage(offset, traceManuOrderRequest.getLimit());
|
||||||
|
}
|
||||||
|
return traceManuOrderMapper.filterTraces(traceManuOrderRequest);
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
|
}
|
@ -1,11 +1,12 @@
|
|||||||
package com.glxp.api.service.trace;
|
package com.glxp.api.service.trace.impl;
|
||||||
|
|
||||||
|
import com.glxp.api.service.trace.TraceTaskNoticeService;
|
||||||
import org.springframework.stereotype.Service;
|
import org.springframework.stereotype.Service;
|
||||||
import com.baomidou.mybatisplus.extension.service.impl.ServiceImpl;
|
import com.baomidou.mybatisplus.extension.service.impl.ServiceImpl;
|
||||||
import com.glxp.api.entity.trace.TraceTaskNoticeEntity;
|
import com.glxp.api.entity.trace.TraceTaskNoticeEntity;
|
||||||
import com.glxp.api.dao.trace.TraceTaskNoticeMapper;
|
import com.glxp.api.dao.trace.TraceTaskNoticeMapper;
|
||||||
|
|
||||||
@Service
|
@Service
|
||||||
public class TraceTaskNoticeServiceImpl extends ServiceImpl<TraceTaskNoticeMapper, TraceTaskNoticeEntity> implements TraceTaskNoticeService{
|
public class TraceTaskNoticeServiceImpl extends ServiceImpl<TraceTaskNoticeMapper, TraceTaskNoticeEntity> implements TraceTaskNoticeService {
|
||||||
|
|
||||||
}
|
}
|
@ -1,4 +1,48 @@
|
|||||||
<?xml version="1.0" encoding="UTF-8"?>
|
<?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">
|
<!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 namespace="com.glxp.api.dao.basic.BasicUdiProductMapper">
|
||||||
|
<select id="filterList" parameterType="com.glxp.api.req.basic.FilterUdiRelRequest"
|
||||||
|
resultType="com.glxp.api.entity.basic.BasicUdiProductEntity">
|
||||||
|
select *
|
||||||
|
FROM basic_udi_product
|
||||||
|
<where>
|
||||||
|
<if test="ylqxzcrbarmc != '' and ylqxzcrbarmc != null">
|
||||||
|
AND ylqxzcrbarmc LIKE concat('%', #{ylqxzcrbarmc}, '%')
|
||||||
|
</if>
|
||||||
|
<if test="cpmctymc != '' and cpmctymc != null">
|
||||||
|
AND cpmctymc LIKE concat('%', #{cpmctymc}, '%')
|
||||||
|
</if>
|
||||||
|
<if test="nameCode != '' and nameCode != null">
|
||||||
|
AND nameCode LIKE concat(#{nameCode}, '%')
|
||||||
|
</if>
|
||||||
|
<if test="uuid != '' and uuid != null">
|
||||||
|
AND uuid = #{uuid}
|
||||||
|
</if>
|
||||||
|
<if test="id != '' and id != null">
|
||||||
|
AND id = #{id}
|
||||||
|
</if>
|
||||||
|
<if test="diType != null">
|
||||||
|
AND diType = #{diType}
|
||||||
|
</if>
|
||||||
|
<if test="zczbhhzbapzbh != '' and zczbhhzbapzbh != null">
|
||||||
|
AND zczbhhzbapzbh LIKE concat(#{zczbhhzbapzbh}, '%')
|
||||||
|
</if>
|
||||||
|
<if test="lastUpdateTime != null and lastUpdateTime != ''">
|
||||||
|
<![CDATA[
|
||||||
|
and DATE_FORMAT(updateTime, '%Y-%m-%d %H:%i:%S') >=
|
||||||
|
DATE_FORMAT(#{lastUpdateTime}, '%Y-%m-%d %H:%i:%S')
|
||||||
|
]]>
|
||||||
|
</if>
|
||||||
|
<if test="unionFilterStr != '' and unionFilterStr != null">
|
||||||
|
or cpmctymc LIKE concat('%', #{unionFilterStr}, '%')
|
||||||
|
or ylqxzcrbarmc LIKE concat('%', #{unionFilterStr}, '%')
|
||||||
|
or ggxh LIKE concat('%', #{unionFilterStr}, '%')
|
||||||
|
or zczbhhzbapzbh LIKE concat('%', #{unionFilterStr}, '%')
|
||||||
|
</if>
|
||||||
|
<if test="uniqueNameCode != '' and uniqueNameCode != null">
|
||||||
|
AND nameCode = #{uniqueNameCode}
|
||||||
|
</if>
|
||||||
|
</where>
|
||||||
|
ORDER BY updateTime DESC
|
||||||
|
</select>
|
||||||
</mapper>
|
</mapper>
|
||||||
|
@ -1,18 +0,0 @@
|
|||||||
<?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.BasicUdiRelEntityMapper">
|
|
||||||
<resultMap id="BaseResultMap" type="com.glxp.api.entity.basic.BasicUdiRelEntity">
|
|
||||||
<!--@mbg.generated-->
|
|
||||||
<!--@Table basic_udi_rel-->
|
|
||||||
<id column="id" jdbcType="BIGINT" property="id" />
|
|
||||||
<result column="uuid" jdbcType="VARCHAR" property="uuid" />
|
|
||||||
<result column="companyIdFk" jdbcType="BIGINT" property="companyIdFk" />
|
|
||||||
<result column="updateTime" jdbcType="TIMESTAMP" property="updateTime" />
|
|
||||||
<result column="remark" jdbcType="VARCHAR" property="remark" />
|
|
||||||
<result column="updateUser" jdbcType="VARCHAR" property="updateUser" />
|
|
||||||
</resultMap>
|
|
||||||
<sql id="Base_Column_List">
|
|
||||||
<!--@mbg.generated-->
|
|
||||||
id, uuid, companyIdFk, updateTime, remark, updateUser
|
|
||||||
</sql>
|
|
||||||
</mapper>
|
|
@ -1,4 +1,48 @@
|
|||||||
<?xml version="1.0" encoding="UTF-8"?>
|
<?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">
|
<!DOCTYPE mapper PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN" "http://mybatis.org/dtd/mybatis-3-mapper.dtd">
|
||||||
<mapper namespace="com.glxp.api.dao.trace.TraceManuOrderMapper">
|
<mapper namespace="com.glxp.api.dao.trace.TraceManuOrderMapper">
|
||||||
|
<select id="filterTraces" parameterType="com.glxp.api.req.trace.TraceManuOrderRequest"
|
||||||
|
resultType="com.glxp.api.res.trace.TraceManuOrderResponse">
|
||||||
|
select *
|
||||||
|
from trace_manu_order
|
||||||
|
<where>
|
||||||
|
<if test="id != '' and id != null">
|
||||||
|
and id = #{id}
|
||||||
|
</if>
|
||||||
|
<if test="billNo != '' and billNo != null">
|
||||||
|
and billNo = #{billNo}
|
||||||
|
</if>
|
||||||
|
<if test="cpmctymc != '' and cpmctymc != null">
|
||||||
|
and cpmctymc = #{cpmctymc}
|
||||||
|
</if>
|
||||||
|
<if test="ggxh != '' and ggxh != null">
|
||||||
|
and `ggxh` = #{ggxh}
|
||||||
|
</if>
|
||||||
|
<if test="zczbhhzbapzbh != '' and zczbhhzbapzbh != null">
|
||||||
|
and zczbhhzbapzbh = #{zczbhhzbapzbh}
|
||||||
|
</if>
|
||||||
|
<if test="nameCode != '' and nameCode != null">
|
||||||
|
and nameCode = #{nameCode}
|
||||||
|
</if>
|
||||||
|
<if test="uuid != '' and uuid != null">
|
||||||
|
and uuid = #{uuid}
|
||||||
|
</if>
|
||||||
|
<if test="ylqxzcrbarmc != '' and ylqxzcrbarmc != null">
|
||||||
|
and `ylqxzcrbarmc` = #{ylqxzcrbarmc}
|
||||||
|
</if>
|
||||||
|
<if test="nameCode != '' and nameCode != null">
|
||||||
|
and nameCode = #{nameCode}
|
||||||
|
</if>
|
||||||
|
<if test="cpmctymc != '' and cpmctymc != null">
|
||||||
|
and cpmctymc = #{cpmctymc}
|
||||||
|
</if>
|
||||||
|
<if test="ggxh != '' and ggxh != null">
|
||||||
|
and ggxh = #{ggxh}
|
||||||
|
</if>
|
||||||
|
<if test="manufactory != '' and manufactory != null">
|
||||||
|
and `manufactory` = #{manufactory}
|
||||||
|
</if>
|
||||||
|
</where>
|
||||||
|
ORDER BY id DESC
|
||||||
|
</select>
|
||||||
</mapper>
|
</mapper>
|
||||||
|
Loading…
Reference in New Issue