|
|
@ -1,53 +1,25 @@
|
|
|
|
package com.glxp.api.controller.purchase;
|
|
|
|
package com.glxp.api.controller.purchase;
|
|
|
|
|
|
|
|
|
|
|
|
import cn.hutool.core.collection.CollUtil;
|
|
|
|
|
|
|
|
import cn.hutool.core.util.IdUtil;
|
|
|
|
|
|
|
|
import cn.hutool.core.util.StrUtil;
|
|
|
|
|
|
|
|
import cn.hutool.extra.pinyin.PinyinUtil;
|
|
|
|
|
|
|
|
import com.baomidou.mybatisplus.core.conditions.query.QueryWrapper;
|
|
|
|
|
|
|
|
import com.github.pagehelper.PageInfo;
|
|
|
|
import com.github.pagehelper.PageInfo;
|
|
|
|
import com.glxp.api.annotation.AuthRuleAnnotation;
|
|
|
|
import com.glxp.api.annotation.AuthRuleAnnotation;
|
|
|
|
import com.glxp.api.annotation.Log;
|
|
|
|
|
|
|
|
import com.glxp.api.common.enums.ResultEnum;
|
|
|
|
|
|
|
|
import com.glxp.api.common.res.BaseResponse;
|
|
|
|
import com.glxp.api.common.res.BaseResponse;
|
|
|
|
import com.glxp.api.common.util.ResultVOUtils;
|
|
|
|
import com.glxp.api.common.util.ResultVOUtils;
|
|
|
|
import com.glxp.api.constant.BusinessType;
|
|
|
|
|
|
|
|
import com.glxp.api.constant.ConstantStatus;
|
|
|
|
|
|
|
|
import com.glxp.api.entity.auth.AuthAdmin;
|
|
|
|
|
|
|
|
import com.glxp.api.entity.auth.CustomerInfoEntity;
|
|
|
|
|
|
|
|
import com.glxp.api.entity.basic.BasicCorpEntity;
|
|
|
|
|
|
|
|
import com.glxp.api.entity.purchase.CustomerContactEntity;
|
|
|
|
|
|
|
|
import com.glxp.api.entity.purchase.SupCertEntity;
|
|
|
|
|
|
|
|
import com.glxp.api.entity.purchase.SupCertSetEntity;
|
|
|
|
|
|
|
|
import com.glxp.api.entity.purchase.SupCompanyEntity;
|
|
|
|
import com.glxp.api.entity.purchase.SupCompanyEntity;
|
|
|
|
import com.glxp.api.exception.JsonException;
|
|
|
|
|
|
|
|
import com.glxp.api.req.purchase.FilterCertSetsRequest;
|
|
|
|
|
|
|
|
import com.glxp.api.req.purchase.FilterSupCertRequest;
|
|
|
|
|
|
|
|
import com.glxp.api.req.purchase.FilterSupCompanyRequest;
|
|
|
|
import com.glxp.api.req.purchase.FilterSupCompanyRequest;
|
|
|
|
import com.glxp.api.req.purchase.SelectCorpBindRequest;
|
|
|
|
|
|
|
|
import com.glxp.api.req.system.DeleteRequest;
|
|
|
|
|
|
|
|
import com.glxp.api.res.PageSimpleResponse;
|
|
|
|
import com.glxp.api.res.PageSimpleResponse;
|
|
|
|
import com.glxp.api.service.auth.AuthAdminService;
|
|
|
|
import com.glxp.api.service.auth.AuthAdminService;
|
|
|
|
import com.glxp.api.service.auth.CustomerInfoService;
|
|
|
|
|
|
|
|
import com.glxp.api.service.basic.BasicCorpService;
|
|
|
|
import com.glxp.api.service.basic.BasicCorpService;
|
|
|
|
import com.glxp.api.service.purchase.CustomerContactService;
|
|
|
|
import com.glxp.api.service.purchase.CustomerContactService;
|
|
|
|
import com.glxp.api.service.purchase.SupCertService;
|
|
|
|
import com.glxp.api.service.purchase.SupCertService;
|
|
|
|
import com.glxp.api.service.purchase.SupCertSetService;
|
|
|
|
import com.glxp.api.service.purchase.SupCertSetService;
|
|
|
|
import com.glxp.api.service.purchase.SupCompanyService;
|
|
|
|
import com.glxp.api.service.purchase.SupCompanyService;
|
|
|
|
import com.glxp.api.util.CustomUtil;
|
|
|
|
|
|
|
|
import org.springframework.beans.factory.annotation.Value;
|
|
|
|
import org.springframework.beans.factory.annotation.Value;
|
|
|
|
import org.springframework.web.bind.annotation.GetMapping;
|
|
|
|
import org.springframework.web.bind.annotation.GetMapping;
|
|
|
|
import org.springframework.web.bind.annotation.PostMapping;
|
|
|
|
|
|
|
|
import org.springframework.web.bind.annotation.RequestBody;
|
|
|
|
|
|
|
|
import org.springframework.web.bind.annotation.RestController;
|
|
|
|
import org.springframework.web.bind.annotation.RestController;
|
|
|
|
import org.springframework.web.context.request.RequestContextHolder;
|
|
|
|
|
|
|
|
import org.springframework.web.context.request.ServletRequestAttributes;
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
import javax.annotation.Resource;
|
|
|
|
import javax.annotation.Resource;
|
|
|
|
import javax.servlet.http.HttpServletRequest;
|
|
|
|
|
|
|
|
import java.util.Date;
|
|
|
|
|
|
|
|
import java.util.List;
|
|
|
|
import java.util.List;
|
|
|
|
import java.util.ListIterator;
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
@RestController
|
|
|
|
@RestController
|
|
|
|
public class SupCompanyController {
|
|
|
|
public class SupCompanyController {
|
|
|
@ -59,18 +31,18 @@ public class SupCompanyController {
|
|
|
|
private AuthAdminService authAdminService;
|
|
|
|
private AuthAdminService authAdminService;
|
|
|
|
@Resource
|
|
|
|
@Resource
|
|
|
|
private SupCompanyService companyService;
|
|
|
|
private SupCompanyService companyService;
|
|
|
|
@Resource
|
|
|
|
// @Resource
|
|
|
|
private CustomerContactService customerContactService;
|
|
|
|
// private CustomerContactService customerContactService;
|
|
|
|
@Resource
|
|
|
|
// @Resource
|
|
|
|
private SupCertService supCertService;
|
|
|
|
// private SupCertService supCertService;
|
|
|
|
@Resource
|
|
|
|
// @Resource
|
|
|
|
BasicCorpService basicCorpService;
|
|
|
|
// BasicCorpService basicCorpService;
|
|
|
|
@Resource
|
|
|
|
// @Resource
|
|
|
|
SupCertSetService supCertSetService;
|
|
|
|
// SupCertSetService supCertSetService;
|
|
|
|
@Resource
|
|
|
|
// @Resource
|
|
|
|
SupCompanyService supCompanyService;
|
|
|
|
// SupCompanyService supCompanyService;
|
|
|
|
@Resource
|
|
|
|
// @Resource
|
|
|
|
CustomerInfoService customerInfoService;
|
|
|
|
// CustomerInfoService customerInfoService;
|
|
|
|
// @Resource
|
|
|
|
// @Resource
|
|
|
|
// AuthRoleAdminService authRoleAdminService;
|
|
|
|
// AuthRoleAdminService authRoleAdminService;
|
|
|
|
|
|
|
|
|
|
|
|