|
@@ -1,10 +1,10 @@
|
|
package org.jeecg.modules.weituo.service.impl;
|
|
package org.jeecg.modules.weituo.service.impl;
|
|
|
|
|
|
import cn.hutool.core.io.IoUtil;
|
|
import cn.hutool.core.io.IoUtil;
|
|
-import com.baomidou.mybatisplus.core.conditions.Wrapper;
|
|
|
|
import com.baomidou.mybatisplus.core.conditions.query.QueryWrapper;
|
|
import com.baomidou.mybatisplus.core.conditions.query.QueryWrapper;
|
|
import com.baomidou.mybatisplus.core.toolkit.Wrappers;
|
|
import com.baomidou.mybatisplus.core.toolkit.Wrappers;
|
|
import com.baomidou.mybatisplus.extension.service.impl.ServiceImpl;
|
|
import com.baomidou.mybatisplus.extension.service.impl.ServiceImpl;
|
|
|
|
+import org.apache.ibatis.annotations.Param;
|
|
import org.jeecg.common.exception.JeecgBootException;
|
|
import org.jeecg.common.exception.JeecgBootException;
|
|
import org.jeecg.modules.baogao.dto.ItdmBaogaoCreateDTO;
|
|
import org.jeecg.modules.baogao.dto.ItdmBaogaoCreateDTO;
|
|
import org.jeecg.modules.baogao.service.IItdmBaogaoService;
|
|
import org.jeecg.modules.baogao.service.IItdmBaogaoService;
|
|
@@ -27,7 +27,6 @@ import org.springframework.stereotype.Service;
|
|
import org.springframework.transaction.annotation.Transactional;
|
|
import org.springframework.transaction.annotation.Transactional;
|
|
|
|
|
|
import javax.servlet.http.HttpServletResponse;
|
|
import javax.servlet.http.HttpServletResponse;
|
|
-import java.io.FileInputStream;
|
|
|
|
import java.io.IOException;
|
|
import java.io.IOException;
|
|
import java.io.InputStream;
|
|
import java.io.InputStream;
|
|
import java.io.OutputStream;
|
|
import java.io.OutputStream;
|
|
@@ -50,21 +49,33 @@ public class ItdmWeituoInfoServiceImpl extends ServiceImpl<ItdmWeituoInfoMapper,
|
|
|
|
|
|
|
|
|
|
@Autowired
|
|
@Autowired
|
|
|
|
+ @SuppressWarnings("all")
|
|
private ItdmWeituoYangpinMapper yangpinMapper;
|
|
private ItdmWeituoYangpinMapper yangpinMapper;
|
|
|
|
|
|
@Autowired
|
|
@Autowired
|
|
|
|
+ @SuppressWarnings("all")
|
|
private ItdmWeituoYangpinExtendMapper yangpinExtendMapper;
|
|
private ItdmWeituoYangpinExtendMapper yangpinExtendMapper;
|
|
|
|
|
|
@Autowired
|
|
@Autowired
|
|
|
|
+ @SuppressWarnings("all")
|
|
private ItdmWeituoInfoMapper itdmWeituoInfoMapper;
|
|
private ItdmWeituoInfoMapper itdmWeituoInfoMapper;
|
|
|
|
+
|
|
@Autowired
|
|
@Autowired
|
|
|
|
+ @SuppressWarnings("all")
|
|
private ItdmTaskMapper taskMapper;
|
|
private ItdmTaskMapper taskMapper;
|
|
|
|
|
|
@Autowired
|
|
@Autowired
|
|
-
|
|
|
|
|
|
+ @SuppressWarnings("all")
|
|
private IItdmBaogaoService itdmBaogaoService;
|
|
private IItdmBaogaoService itdmBaogaoService;
|
|
|
|
|
|
/**
|
|
/**
|
|
|
|
+ * 根据委托编号修改委托状态(0未完结1已完结)
|
|
|
|
+ */
|
|
|
|
+ public void updateCompleteStatusByWeituoNo(@Param("weituoNo") String weituoNo){
|
|
|
|
+ itdmWeituoInfoMapper.updateCompleteStatusByWeituoNo(weituoNo);
|
|
|
|
+ }
|
|
|
|
+
|
|
|
|
+ /**
|
|
* 根据委托单位查询委托信息列表
|
|
* 根据委托单位查询委托信息列表
|
|
*/
|
|
*/
|
|
public List<ItdmWeituoInfo> selectWTListByClient(String weituoClient) {
|
|
public List<ItdmWeituoInfo> selectWTListByClient(String weituoClient) {
|