|
|
@@ -1,12 +1,7 @@
|
|
|
package org.jeecg.modules.smscheck.controller;
|
|
|
-
|
|
|
-
|
|
|
import cn.hutool.core.bean.BeanUtil;
|
|
|
import cn.hutool.core.lang.Dict;
|
|
|
-import cn.hutool.core.lang.Tuple;
|
|
|
-import cn.hutool.core.util.ObjectUtil;
|
|
|
import cn.hutool.core.util.StrUtil;
|
|
|
-import com.alibaba.druid.sql.visitor.functions.If;
|
|
|
import com.baomidou.mybatisplus.core.conditions.query.LambdaQueryWrapper;
|
|
|
import com.baomidou.mybatisplus.core.conditions.query.QueryWrapper;
|
|
|
import com.baomidou.mybatisplus.core.metadata.IPage;
|
|
|
@@ -14,7 +9,6 @@ import com.baomidou.mybatisplus.core.toolkit.StringUtils;
|
|
|
import com.baomidou.mybatisplus.extension.plugins.pagination.Page;
|
|
|
import io.swagger.annotations.Api;
|
|
|
import io.swagger.annotations.ApiOperation;
|
|
|
-import io.swagger.models.auth.In;
|
|
|
import lombok.extern.slf4j.Slf4j;
|
|
|
import org.apache.commons.beanutils.PropertyUtils;
|
|
|
import org.apache.shiro.SecurityUtils;
|
|
|
@@ -22,24 +16,17 @@ import org.jeecg.common.api.vo.Result;
|
|
|
import org.jeecg.common.aspect.annotation.AutoLog;
|
|
|
import org.jeecg.common.aspect.annotation.PermissionData;
|
|
|
import org.jeecg.common.constant.CommonConstant;
|
|
|
-import org.jeecg.common.exception.JeecgBootException;
|
|
|
import org.jeecg.common.system.api.ISysBaseAPI;
|
|
|
import org.jeecg.common.system.base.controller.JeecgController;
|
|
|
import org.jeecg.common.system.query.QueryGenerator;
|
|
|
-import org.jeecg.common.system.vo.DictModel;
|
|
|
import org.jeecg.common.system.vo.LoginUser;
|
|
|
-import org.jeecg.common.util.MinioUtil;
|
|
|
-import org.jeecg.common.util.SpringContextUtils;
|
|
|
import org.jeecg.common.util.UUIDGenerator;
|
|
|
import org.jeecg.common.util.oConvertUtils;
|
|
|
-import org.jeecg.config.shiro.ShiroRealm;
|
|
|
import org.jeecg.modules.smscheck.configs.CheckStateCode;
|
|
|
import org.jeecg.modules.smscheck.configs.CheckTypeCode;
|
|
|
-import org.jeecg.modules.smscheck.configs.ShutdownLabelByCode;
|
|
|
import org.jeecg.modules.smscheck.entity.*;
|
|
|
import org.jeecg.modules.smscheck.entity.excel.SpecialExaminationExport;
|
|
|
import org.jeecg.modules.smscheck.service.*;
|
|
|
-import org.jeecg.modules.smscheck.vo.SmsCheckCustomerInfoVo;
|
|
|
import org.jeecg.modules.smscheck.vo.SpecialExaminationCustomerVo;
|
|
|
import org.jeecg.modules.smscheck.vo.SpecialExaminationVo;
|
|
|
import org.jeecgframework.poi.excel.ExcelImportUtil;
|
|
|
@@ -51,12 +38,10 @@ import org.springframework.beans.factory.annotation.Autowired;
|
|
|
import org.springframework.beans.factory.annotation.Value;
|
|
|
import org.springframework.web.bind.annotation.*;
|
|
|
import org.springframework.web.multipart.MultipartFile;
|
|
|
-import org.springframework.web.multipart.MultipartHttpServletRequest;
|
|
|
import org.springframework.web.servlet.ModelAndView;
|
|
|
|
|
|
import javax.annotation.Resource;
|
|
|
import javax.servlet.http.HttpServletRequest;
|
|
|
-import java.lang.reflect.Field;
|
|
|
import java.text.SimpleDateFormat;
|
|
|
import java.util.*;
|
|
|
import java.util.function.Function;
|
|
|
@@ -72,7 +57,6 @@ public class SpecialExaminationContrller extends JeecgController<SmsCheckCustome
|
|
|
@Resource
|
|
|
private SpecialExaminationService specialExaminationService;
|
|
|
|
|
|
-
|
|
|
@Autowired
|
|
|
private ISmsCheckCustomerInfoService customerInfoService;
|
|
|
|
|
|
@@ -89,11 +73,9 @@ public class SpecialExaminationContrller extends JeecgController<SmsCheckCustome
|
|
|
*/
|
|
|
@Autowired
|
|
|
private ISmsCheckCustomerInfoService infoService;
|
|
|
- /**
|
|
|
- * 底层共通业务API,提供其他独立模块调用
|
|
|
- */
|
|
|
- @Autowired
|
|
|
- private ISysBaseAPI sysBaseApi;
|
|
|
+
|
|
|
+
|
|
|
+
|
|
|
|
|
|
|
|
|
@ApiOperation(value = "客户资料-信息查询查询", notes = "客户资料-个人列表查询")
|