|
|
|
@ -2,6 +2,7 @@ package com.glxp.api.service.inout.impl;
|
|
|
|
|
|
|
|
|
|
import cn.hutool.core.util.StrUtil;
|
|
|
|
|
import com.baomidou.mybatisplus.core.conditions.query.QueryWrapper;
|
|
|
|
|
import com.baomidou.mybatisplus.extension.service.impl.ServiceImpl;
|
|
|
|
|
import com.github.pagehelper.PageHelper;
|
|
|
|
|
import com.glxp.api.dao.inout.IoCodeRelMapper;
|
|
|
|
|
import com.glxp.api.entity.inout.IoCodeRelEntity;
|
|
|
|
@ -17,7 +18,7 @@ import java.util.List;
|
|
|
|
|
|
|
|
|
|
@Service
|
|
|
|
|
@Transactional(rollbackFor = Exception.class)
|
|
|
|
|
public class IoCodeRelServiceImpl implements IoCodeRelService {
|
|
|
|
|
public class IoCodeRelServiceImpl extends ServiceImpl<IoCodeRelMapper, IoCodeRelEntity> implements IoCodeRelService {
|
|
|
|
|
|
|
|
|
|
@Resource
|
|
|
|
|
IoCodeRelMapper ioCodeRelMapper;
|
|
|
|
@ -42,41 +43,42 @@ public class IoCodeRelServiceImpl implements IoCodeRelService {
|
|
|
|
|
@Override
|
|
|
|
|
public List<IoCodeRelEntity> selectIoCodeRelByCode(String code, String parentCode) {
|
|
|
|
|
|
|
|
|
|
QueryWrapper<IoCodeRelEntity> ew=new QueryWrapper<>();
|
|
|
|
|
if(StrUtil.isNotEmpty(code)){
|
|
|
|
|
ew.eq("code",code);
|
|
|
|
|
QueryWrapper<IoCodeRelEntity> ew = new QueryWrapper<>();
|
|
|
|
|
if (StrUtil.isNotEmpty(code)) {
|
|
|
|
|
ew.eq("code", code);
|
|
|
|
|
}
|
|
|
|
|
if(StrUtil.isNotEmpty(parentCode)){
|
|
|
|
|
ew.eq("parentCode",parentCode);
|
|
|
|
|
if (StrUtil.isNotEmpty(parentCode)) {
|
|
|
|
|
ew.eq("parentCode", parentCode);
|
|
|
|
|
}
|
|
|
|
|
List<IoCodeRelEntity> list=ioCodeRelMapper.selectList(ew);
|
|
|
|
|
List<IoCodeRelEntity> list = ioCodeRelMapper.selectList(ew);
|
|
|
|
|
return list;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
@Override
|
|
|
|
|
public Long selectIoCodeRelCount(String parentCode) {
|
|
|
|
|
|
|
|
|
|
QueryWrapper<IoCodeRelEntity> ew=new QueryWrapper<>();
|
|
|
|
|
if(StrUtil.isNotEmpty(parentCode)){
|
|
|
|
|
ew.eq("parentCode",parentCode);
|
|
|
|
|
QueryWrapper<IoCodeRelEntity> ew = new QueryWrapper<>();
|
|
|
|
|
if (StrUtil.isNotEmpty(parentCode)) {
|
|
|
|
|
ew.eq("parentCode", parentCode);
|
|
|
|
|
}
|
|
|
|
|
Long count=ioCodeRelMapper.selectCount(ew);
|
|
|
|
|
Long count = ioCodeRelMapper.selectCount(ew);
|
|
|
|
|
return count;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
@Override
|
|
|
|
|
public int delIoCodeRel(String code, String parentCode) {
|
|
|
|
|
|
|
|
|
|
QueryWrapper<IoCodeRelEntity> ew=new QueryWrapper<>();
|
|
|
|
|
if(StrUtil.isNotEmpty(code)){
|
|
|
|
|
ew.eq("code",code);
|
|
|
|
|
QueryWrapper<IoCodeRelEntity> ew = new QueryWrapper<>();
|
|
|
|
|
if (StrUtil.isNotEmpty(code)) {
|
|
|
|
|
ew.eq("code", code);
|
|
|
|
|
}
|
|
|
|
|
if(StrUtil.isNotEmpty(parentCode)){
|
|
|
|
|
ew.eq("parentCode",parentCode);
|
|
|
|
|
if (StrUtil.isNotEmpty(parentCode)) {
|
|
|
|
|
ew.eq("parentCode", parentCode);
|
|
|
|
|
}
|
|
|
|
|
int count=ioCodeRelMapper.delete(ew);
|
|
|
|
|
return count;
|
|
|
|
|
int count = ioCodeRelMapper.delete(ew);
|
|
|
|
|
return count;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
@Override
|
|
|
|
|
public List<IoCodeRelResponse> selectIoCodeRelDetailList(IoOrderRelRequest ioOrderRelRequest) {
|
|
|
|
|
if (ioOrderRelRequest == null) {
|
|
|
|
|