Merge branch 'master' of http://122.51.230.86:3000/dianliang/lanan-system
This commit is contained in:
commit
87db775c31
@ -39,7 +39,7 @@ public class InspectionFileController extends BaseController
|
||||
*/
|
||||
@GetMapping("/list")
|
||||
public TableDataInfo list(InspectionFile inspectionFile) throws Exception {
|
||||
ShopMallPartners partners = partnerService.shopInfo();
|
||||
ShopMallPartners partners = partnerService.shopInfoByUserId();
|
||||
inspectionFile.setPartnerId(partners.getPartnerId());
|
||||
startPage();
|
||||
List<InspectionFile> list = inspectionFileService.selectInspectionFileList(inspectionFile);
|
||||
|
@ -129,8 +129,9 @@ public class InspectionMallPartnersController extends BaseController {
|
||||
}
|
||||
partner.setPartnerId(worker.getPartnerId());
|
||||
}
|
||||
Page<InspectionInfo> page = new Page<>(pageNum,pageSize);
|
||||
List<InspectionInfo> list = orderInfoService.workOrder(page,partner.getPartnerId(),carNum,goodsTitle, customerSource, payType,startTime,roleId,endTime);
|
||||
// Page<InspectionInfo> page = new Page<>(pageNum,pageSize);
|
||||
PageHelper.startPage(pageNum,pageSize);
|
||||
List<InspectionInfo> list = orderInfoService.workOrder(partner.getPartnerId(),carNum,goodsTitle, customerSource, payType,startTime,roleId,endTime);
|
||||
return getDataTable(list);
|
||||
}
|
||||
|
||||
@ -168,8 +169,9 @@ public class InspectionMallPartnersController extends BaseController {
|
||||
}
|
||||
partner.setPartnerId(worker.getPartnerId());
|
||||
}
|
||||
Page<InspectionInfo> page = new Page<>(pageNum,pageSize);
|
||||
List<InspectionInfo> list = orderInfoService.delworkOrder(page,partner.getPartnerId(),carNum,goodsTitle, customerSource, payType,startTime,roleId,endTime);
|
||||
// Page<InspectionInfo> page = new Page<>(pageNum,pageSize);
|
||||
PageHelper.startPage(pageNum,pageSize);
|
||||
List<InspectionInfo> list = orderInfoService.delworkOrder(partner.getPartnerId(),carNum,goodsTitle, customerSource, payType,startTime,roleId,endTime);
|
||||
return getDataTable(list);
|
||||
}
|
||||
|
||||
@ -200,7 +202,7 @@ public class InspectionMallPartnersController extends BaseController {
|
||||
int pageNum = Convert.toInt(ServletUtils.getParameter("pageNum"), 1);
|
||||
int pageSize = Convert.toInt(ServletUtils.getParameter("pageSize"), 10);
|
||||
Page<InspectionInfo> page = new Page<>(pageNum,pageSize);
|
||||
List<InspectionInfo> list = orderInfoService.workOrder(page,partner.getPartnerId(),carNum,goodsTitle, customerSource, payType,startTime,roleId,endTime);
|
||||
List<InspectionInfo> list = orderInfoService.workOrder(partner.getPartnerId(),carNum,goodsTitle, customerSource, payType,startTime,roleId,endTime);
|
||||
List<List<String>> rows =new ArrayList<>();
|
||||
Map<String, Object> stringObjectMap = orderInfoService.workOrderData(partner.getPartnerId(), carNum, goodsTitle, customerSource, payType, startTime, roleId, endTime);
|
||||
|
||||
|
@ -56,6 +56,11 @@ public class PartnerOwnController extends BaseController {
|
||||
return success(partnerList.shopInfo());
|
||||
}
|
||||
|
||||
@GetMapping("/shopInfoByUserId")
|
||||
public CommonResult shopInfoByUserId() throws Exception {
|
||||
return success(partnerList.shopInfoByUserId());
|
||||
}
|
||||
|
||||
/**
|
||||
* 获取上门取车 和 预约条数
|
||||
*/
|
||||
@ -324,8 +329,9 @@ public class PartnerOwnController extends BaseController {
|
||||
if (!partnersTmp.getUserId().equals(user.getId())){
|
||||
return null;
|
||||
}
|
||||
Page<PartnerWorker> page = new Page<>(pageNum, pageSize);
|
||||
List<PartnerWorker> workList = partnerList.getWorkList(page,partnerId,postId, workName, phoneNum);
|
||||
// Page<PartnerWorker> page = new Page<>(pageNum, pageSize);
|
||||
PageHelper.startPage(pageNum,pageSize);
|
||||
List<PartnerWorker> workList = partnerList.getWorkList(partnerId,postId, workName, phoneNum);
|
||||
return getDataTable(workList);
|
||||
}
|
||||
|
||||
@ -485,7 +491,7 @@ public class PartnerOwnController extends BaseController {
|
||||
//获取客户来源
|
||||
@GetMapping("/getCustomerSource")
|
||||
public CommonResult getCustomerSource(String searchValue) throws Exception {
|
||||
ShopMallPartners partners = partnerList.shopInfo();
|
||||
ShopMallPartners partners = partnerList.shopInfoByUserId();
|
||||
String dictStr = "customer_source-"+partners.getPartnerId();
|
||||
DictTypeDO sysDictType = dictTypeService.getDictType(dictStr);
|
||||
if (ObjectUtil.isEmpty(sysDictType)){
|
||||
@ -551,7 +557,7 @@ public class PartnerOwnController extends BaseController {
|
||||
//获取收款账号
|
||||
@GetMapping("/getBankAccountList")
|
||||
public CommonResult getBankAccountList(String searchValue) throws Exception {
|
||||
ShopMallPartners partners = partnerList.shopInfo();
|
||||
ShopMallPartners partners = partnerList.shopInfoByUserId();
|
||||
String dictStr = "partner_bankList-"+partners.getPartnerId();
|
||||
DictTypeDO sysDictType = dictTypeService.getDictType(dictStr);
|
||||
if (ObjectUtil.isEmpty(sysDictType)){
|
||||
|
@ -22,6 +22,7 @@ import cn.iocoder.yudao.module.partner.entity.PartnerWorker;
|
||||
import cn.iocoder.yudao.module.payment.entity.OrderInfo;
|
||||
import cn.iocoder.yudao.module.shop.entity.ShopMallPartners;
|
||||
import com.baomidou.mybatisplus.extension.plugins.pagination.Page;
|
||||
import com.github.pagehelper.IPage;
|
||||
import com.github.pagehelper.PageHelper;
|
||||
import org.apache.commons.lang3.ObjectUtils;
|
||||
import org.springframework.context.annotation.Lazy;
|
||||
@ -74,7 +75,7 @@ public class ShopInspectionGoodsController extends BaseController
|
||||
*/
|
||||
@GetMapping("/listPartnerGoods")
|
||||
public TableDataInfo listPartnerGoods(ShopInspectionGoods shopInspectionGoods) throws Exception {
|
||||
ShopMallPartners one = appInspectionPartnerService.shopInfo();
|
||||
ShopMallPartners one = appInspectionPartnerService.shopInfoByUserId();
|
||||
shopInspectionGoods.setPartnerId(one.getPartnerId().intValue());
|
||||
startPage();
|
||||
List<ShopInspectionGoods> list = shopInspectionGoodsService.listPartnerGoods(shopInspectionGoods);
|
||||
@ -206,8 +207,9 @@ public class ShopInspectionGoodsController extends BaseController
|
||||
shopInspectionOrder.setValidationTime(new Date());
|
||||
int pageNum = Convert.toInt(ServletUtils.getParameter("pageNum"), 1);
|
||||
int pageSize = Convert.toInt(ServletUtils.getParameter("pageSize"), 10);
|
||||
Page<OrderInfo> page = new Page<>(pageNum,pageSize);
|
||||
List<OrderInfo> list = orderInfoService.orderListSystem(page,shopInspectionOrder);
|
||||
// Page<OrderInfo> page = new Page<>(pageNum,pageSize);
|
||||
startPage();
|
||||
List<OrderInfo> list = orderInfoService.orderListSystem(shopInspectionOrder);
|
||||
return getDataTable(list);
|
||||
}
|
||||
|
||||
|
@ -5,8 +5,11 @@ import javax.servlet.http.HttpServletResponse;
|
||||
|
||||
import cn.iocoder.yudao.framework.common.pojo.CommonResult;
|
||||
import cn.iocoder.yudao.framework.tenant.core.aop.TenantIgnore;
|
||||
import cn.iocoder.yudao.module.inspection.entity.NweUsers;
|
||||
import cn.iocoder.yudao.util.ExcelUtil;
|
||||
import com.alibaba.fastjson.JSONObject;
|
||||
import com.baomidou.mybatisplus.extension.plugins.pagination.Page;
|
||||
import org.springframework.beans.BeanUtils;
|
||||
import org.springframework.security.access.prepost.PreAuthorize;
|
||||
import org.springframework.beans.factory.annotation.Autowired;
|
||||
import org.springframework.web.bind.annotation.*;
|
||||
@ -92,4 +95,30 @@ public class SiteInfoController extends BaseController
|
||||
{
|
||||
return toAjax(siteInfoService.deleteSiteInfoByIds(ids));
|
||||
}
|
||||
|
||||
/**
|
||||
* 迁移数据库:查询老表数据,并且将数据插入到新表中
|
||||
*/
|
||||
@GetMapping("/transferDB")
|
||||
public CommonResult transferDB(){
|
||||
|
||||
int sum = 0;
|
||||
|
||||
// 获取老数据表的信息,类型为JSONObject
|
||||
List<JSONObject> jsonObjects = siteInfoService.transferDB();
|
||||
|
||||
// 遍历从数据库获取的 JSON 对象列表
|
||||
for (JSONObject userObject : jsonObjects) {
|
||||
// 将 JSON 对象转换为 NweUsers 实例
|
||||
NweUsers user = userObject.toJavaObject(NweUsers.class);
|
||||
|
||||
// 使用 BeanUtils 将 JSON 对象的属性复制到 NweUsers 实例中
|
||||
BeanUtils.copyProperties(userObject,user);
|
||||
|
||||
// 将 NweUsers 实例插入到数据库中,并获取插入操作的结果
|
||||
sum += siteInfoService.addNewDB(user);
|
||||
}
|
||||
return success(sum);
|
||||
}
|
||||
|
||||
}
|
||||
|
@ -0,0 +1,82 @@
|
||||
package cn.iocoder.yudao.module.inspection.entity;
|
||||
|
||||
import lombok.Data;
|
||||
|
||||
/**
|
||||
* 迁移数据使用的新数据库User表
|
||||
*/
|
||||
@Data
|
||||
public class NweUsers {
|
||||
|
||||
/** 主键 */
|
||||
private Long Id;
|
||||
|
||||
/** 用户名 */
|
||||
private String username;
|
||||
|
||||
/** 密码 */
|
||||
private String password;
|
||||
|
||||
/** 部门编号 */
|
||||
private Long deptId;
|
||||
|
||||
/** 用户昵称 */
|
||||
private String nickName;
|
||||
|
||||
/** 用户类型(数据字典system_user_type) */
|
||||
private String userType;
|
||||
|
||||
/** 邮箱 */
|
||||
private String email;
|
||||
|
||||
/** 手机号 */
|
||||
private String mobile;
|
||||
|
||||
/** 性别 */
|
||||
private Integer sex;
|
||||
|
||||
/** 头像地址 */
|
||||
private String avatar;
|
||||
|
||||
/** 帐号状态(0正常 1停用) */
|
||||
private Integer status;
|
||||
|
||||
/** 最后登陆ip */
|
||||
private String loginIp;
|
||||
|
||||
/** 最后登录时间 */
|
||||
private String loginDate;
|
||||
|
||||
/** 创建者 */
|
||||
private String creator;
|
||||
|
||||
/** 创建时间 */
|
||||
private String createTime;
|
||||
|
||||
/** 更新者 */
|
||||
private String updater;
|
||||
|
||||
/** 微信open_id */
|
||||
private String openId;
|
||||
|
||||
/** 检测小程序open_id */
|
||||
private String jcOpenId;
|
||||
|
||||
/** 救援小程序open_id */
|
||||
private String rescueOpenId;
|
||||
|
||||
/** 微信union_id */
|
||||
private String unionId;
|
||||
|
||||
/** 身份证 */
|
||||
private String idCard;
|
||||
|
||||
/** 身份证照片 */
|
||||
private String idCardImage;
|
||||
|
||||
/** 用户年龄 */
|
||||
private Integer userAge;
|
||||
|
||||
/** 邀请者ID */
|
||||
private Integer inviteId;
|
||||
}
|
@ -32,7 +32,7 @@ public interface AppInspectionPartnerMapper extends BaseMapper<ShopMallPartners>
|
||||
List<HotGoodsVo> hotGoodsList(@Param("partnerId") Long partnerId,@Param("dateStr")String dateStr);
|
||||
List<GoodsVo> manageGoodsList(@Param("partnerId") Long partnerId, @Param("isListing")String isListing,@Param("goodsTitle") String goodsTitle);
|
||||
List<OrderAppDetail> orderList(@Param("partnerId") Long partnerId, @Param("phoneNum") String phoneNum,@Param("title") String title);
|
||||
List<PartnerWorker> getWorkList(Page<PartnerWorker> page,@Param("partnerId")Long partnerId, @Param("postId") Long postId, @Param("workName") String workName, @Param("phoneNum")String phoneNum);
|
||||
List<PartnerWorker> getWorkList(@Param("partnerId")Long partnerId, @Param("postId") Long postId, @Param("workName") String workName, @Param("phoneNum")String phoneNum);
|
||||
List<InspectionInfo> inspectionList(Page<InspectionInfo> page,@Param("partnerId")Long partnerId, @Param("status") String status, @Param("carNum")String carNum);
|
||||
List<InspectionInfo> workerInspectionList(@Param("workerId")Long workerId,@Param("status") String status, @Param("searchValue")String searchValue);
|
||||
List<OrderInfo> validationList(@Param("partnerId") Long partnerId, @Param("searchValue") String searchValue);
|
||||
|
@ -66,11 +66,11 @@ public interface InspectionInfoMapper extends BaseMapper<InspectionInfo>
|
||||
* @return 结果
|
||||
*/
|
||||
public int deleteInspectionInfoByIds(Long[] ids);
|
||||
List<InspectionInfo> workOrder(Page<InspectionInfo> page,@Param("partnerId") Long partnerId, @Param("carNum")String carNum, @Param("goodsTitle")String goodsTitle
|
||||
List<InspectionInfo> workOrder(@Param("partnerId") Long partnerId, @Param("carNum")String carNum, @Param("goodsTitle")String goodsTitle
|
||||
, @Param("customerSource")String customerSource, @Param("payType")String payType, @Param("startTime")String startTime
|
||||
, @Param("roleId") Long roleId, @Param("endTime")String endTime);
|
||||
|
||||
List<InspectionInfo> delworkOrder(Page<InspectionInfo> page,@Param("partnerId") Long partnerId, @Param("carNum")String carNum, @Param("goodsTitle")String goodsTitle
|
||||
List<InspectionInfo> delworkOrder(@Param("partnerId") Long partnerId, @Param("carNum")String carNum, @Param("goodsTitle")String goodsTitle
|
||||
,@Param("customerSource")String customerSource,@Param("payType")String payType,@Param("startTime")String startTime
|
||||
,@Param("roleId") Long roleId,@Param("endTime")String endTime);
|
||||
|
||||
|
@ -1,7 +1,10 @@
|
||||
package cn.iocoder.yudao.module.inspection.mapper;
|
||||
|
||||
import java.util.List;
|
||||
|
||||
import cn.iocoder.yudao.module.inspection.entity.NweUsers;
|
||||
import cn.iocoder.yudao.module.inspection.entity.SiteInfo;
|
||||
import com.alibaba.fastjson.JSONObject;
|
||||
import com.baomidou.mybatisplus.extension.plugins.pagination.Page;
|
||||
import org.apache.ibatis.annotations.Mapper;
|
||||
import org.apache.ibatis.annotations.Param;
|
||||
@ -62,4 +65,19 @@ public interface SiteInfoMapper
|
||||
* @return 结果
|
||||
*/
|
||||
public int deleteSiteInfoByIds(Long[] ids);
|
||||
|
||||
/**
|
||||
* 迁移数据库:查询老表数据
|
||||
*
|
||||
* @return JSONObject集合
|
||||
*/
|
||||
public List<JSONObject> selectAll();
|
||||
|
||||
/**
|
||||
* 迁移数据库:向新表中插入数据
|
||||
*
|
||||
* @return 返回影响行数
|
||||
*/
|
||||
public int addAll(NweUsers user);
|
||||
|
||||
}
|
||||
|
@ -23,6 +23,13 @@ public interface AppInspectionPartnerService extends IService<ShopMallPartners>
|
||||
PartnerListVo shopDetail(PartnerListQuery partnerListQuery);
|
||||
void addSalesNum(Long partnerId);
|
||||
ShopMallPartners shopInfo() throws Exception;
|
||||
|
||||
/**
|
||||
* 重写shopInfo()方法
|
||||
*
|
||||
*/
|
||||
ShopMallPartners shopInfoByUserId() throws Exception;
|
||||
|
||||
JSONObject getAppointAndPickNum() throws Exception;
|
||||
|
||||
void startOrEnd(Long partnerId);
|
||||
@ -53,7 +60,7 @@ public interface AppInspectionPartnerService extends IService<ShopMallPartners>
|
||||
Long orderDetailByCode(Long partnerId,String code) throws Exception;
|
||||
void takeOut(Long partnerId,Long orderId,Long workId,String carNum) throws Exception;
|
||||
void addWorker(Long partnerId,String realName,String phoneNum,Long postId) throws Exception;
|
||||
List<PartnerWorker> getWorkList(Page<PartnerWorker> page,Long partnerId, Long postId, String workName, String phoneNum);
|
||||
List<PartnerWorker> getWorkList(Long partnerId, Long postId, String workName, String phoneNum);
|
||||
|
||||
void delWorker(Long partnerId,Long workId);
|
||||
|
||||
|
@ -62,8 +62,8 @@ public interface IInspectionInfoService extends IService<InspectionInfo>
|
||||
* @return 结果
|
||||
*/
|
||||
public int deleteInspectionInfoById(Long id);
|
||||
List<InspectionInfo> workOrder(Page<InspectionInfo> page,Long partnerId, String carNum, String goodsTitle, String customerSource, String payType, String startTime, Long roleId, String endTime);
|
||||
List<InspectionInfo> delworkOrder(Page<InspectionInfo> page,Long partnerId, String carNum, String goodsTitle,String customerSource,String payType,String startTime,Long roleId,String endTime);
|
||||
List<InspectionInfo> workOrder(Long partnerId, String carNum, String goodsTitle, String customerSource, String payType, String startTime, Long roleId, String endTime);
|
||||
List<InspectionInfo> delworkOrder(Long partnerId, String carNum, String goodsTitle,String customerSource,String payType,String startTime,Long roleId,String endTime);
|
||||
|
||||
|
||||
Map<String,Object> workOrderData(Long partnerId, String carNum, String goodsTitle, String customerSource, String payType, String startTime, Long roleId, String endTime);
|
||||
|
@ -1,7 +1,10 @@
|
||||
package cn.iocoder.yudao.module.inspection.service;
|
||||
|
||||
import java.util.List;
|
||||
|
||||
import cn.iocoder.yudao.module.inspection.entity.NweUsers;
|
||||
import cn.iocoder.yudao.module.inspection.entity.SiteInfo;
|
||||
import com.alibaba.fastjson.JSONObject;
|
||||
import com.baomidou.mybatisplus.extension.plugins.pagination.Page;
|
||||
|
||||
/**
|
||||
@ -59,4 +62,20 @@ public interface ISiteInfoService
|
||||
* @return 结果
|
||||
*/
|
||||
public int deleteSiteInfoById(Long id);
|
||||
|
||||
/**
|
||||
* 迁移数据表:查询老表数据
|
||||
*
|
||||
* @return JSONObject对象集合
|
||||
*/
|
||||
public List<JSONObject> transferDB();
|
||||
|
||||
/**
|
||||
* 迁移数据表:向新表中插入数据
|
||||
*
|
||||
* @return 影响行数
|
||||
*/
|
||||
public int addNewDB(NweUsers user);
|
||||
|
||||
|
||||
}
|
||||
|
@ -38,6 +38,7 @@ import cn.iocoder.yudao.util.SendSmsUtil;
|
||||
import cn.iocoder.yudao.util.VehicleLicenseOCR;
|
||||
import com.alibaba.fastjson.JSONObject;
|
||||
import com.baomidou.mybatisplus.core.conditions.query.LambdaQueryWrapper;
|
||||
import com.baomidou.mybatisplus.core.conditions.query.QueryWrapper;
|
||||
import com.baomidou.mybatisplus.extension.plugins.pagination.Page;
|
||||
import com.baomidou.mybatisplus.extension.service.impl.ServiceImpl;
|
||||
import com.github.pagehelper.PageHelper;
|
||||
@ -186,6 +187,25 @@ public class AppInspectionPartnerServiceImpl extends ServiceImpl<AppInspectionPa
|
||||
return partner;
|
||||
}
|
||||
|
||||
/**
|
||||
* 对shopInfo方法的重写,只根据user_id进行查询
|
||||
*
|
||||
*/
|
||||
@Override
|
||||
public ShopMallPartners shopInfoByUserId() throws Exception {
|
||||
LoginUser user = SecurityFrameworkUtils.getLoginUser();
|
||||
ShopMallPartners partner = new ShopMallPartners();
|
||||
LambdaQueryWrapper<ShopMallPartners> queryWrapper = new LambdaQueryWrapper<>();
|
||||
queryWrapper.eq(ShopMallPartners::getUserId, user.getId());
|
||||
partner = this.getOne(queryWrapper);
|
||||
if (ObjectUtil.isEmpty(partner)){
|
||||
throw new Exception("未查询到信息");
|
||||
}
|
||||
return partner;
|
||||
}
|
||||
|
||||
|
||||
|
||||
@Override
|
||||
public JSONObject getAppointAndPickNum() throws Exception {
|
||||
ShopMallPartners shopMallPartners = this.shopInfo();
|
||||
@ -1058,8 +1078,8 @@ public class AppInspectionPartnerServiceImpl extends ServiceImpl<AppInspectionPa
|
||||
}
|
||||
|
||||
@Override
|
||||
public List<PartnerWorker> getWorkList(Page<PartnerWorker> page,Long partnerId,Long postId,String workName,String phoneNum) {
|
||||
return baseMapper.getWorkList(page,partnerId,postId,workName,phoneNum);
|
||||
public List<PartnerWorker> getWorkList(Long partnerId,Long postId,String workName,String phoneNum) {
|
||||
return baseMapper.getWorkList(partnerId,postId,workName,phoneNum);
|
||||
}
|
||||
|
||||
@Override
|
||||
|
@ -297,13 +297,13 @@ public class InspectionInfoServiceImpl extends ServiceImpl<InspectionInfoMapper,
|
||||
return baseMapper.deleteInspectionInfoById(id);
|
||||
}
|
||||
@Override
|
||||
public List<InspectionInfo> workOrder(Page<InspectionInfo> page,Long partnerId, String carNum, String goodsTitle, String customerSource, String payType, String startTime, Long roleId, String endTime){
|
||||
return baseMapper.workOrder(page,partnerId,carNum,goodsTitle, customerSource, payType, startTime,roleId,endTime);
|
||||
public List<InspectionInfo> workOrder(Long partnerId, String carNum, String goodsTitle, String customerSource, String payType, String startTime, Long roleId, String endTime){
|
||||
return baseMapper.workOrder(partnerId,carNum,goodsTitle, customerSource, payType, startTime,roleId,endTime);
|
||||
}
|
||||
|
||||
@Override
|
||||
public List<InspectionInfo> delworkOrder(Page<InspectionInfo> page,Long partnerId, String carNum, String goodsTitle,String customerSource,String payType,String startTime,Long roleId,String endTime){
|
||||
return baseMapper.delworkOrder(page,partnerId,carNum,goodsTitle, customerSource, payType, startTime,roleId,endTime);
|
||||
public List<InspectionInfo> delworkOrder(Long partnerId, String carNum, String goodsTitle,String customerSource,String payType,String startTime,Long roleId,String endTime){
|
||||
return baseMapper.delworkOrder(partnerId,carNum,goodsTitle, customerSource, payType, startTime,roleId,endTime);
|
||||
}
|
||||
|
||||
@Override
|
||||
|
@ -243,7 +243,7 @@ public class ShopInspectionGoodsServiceImpl extends ServiceImpl<ShopInspectionGo
|
||||
|
||||
@Override
|
||||
public List<ShopInspectionCategory> categoryList() throws Exception {
|
||||
ShopMallPartners one = appInspectionPartnerService.shopInfo();
|
||||
ShopMallPartners one = appInspectionPartnerService.shopInfoByUserId();
|
||||
List<ShopInspectionCategory> shopInspectionCategories = appInspectionPartnerService.categoryList(one.getPartnerId());
|
||||
for (ShopInspectionCategory shopInspectionCategory : shopInspectionCategories) {
|
||||
LambdaQueryWrapper<InspectionCategoryTemplate> templateLambdaQueryWrapper =new LambdaQueryWrapper<>();
|
||||
|
@ -1,8 +1,10 @@
|
||||
package cn.iocoder.yudao.module.inspection.service.impl;
|
||||
|
||||
import java.util.List;
|
||||
|
||||
import cn.iocoder.yudao.module.inspection.entity.NweUsers;
|
||||
import cn.iocoder.yudao.util.DateUtils;
|
||||
import cn.iocoder.yudao.util.StringUtils;
|
||||
import com.alibaba.fastjson.JSONObject;
|
||||
import com.baomidou.mybatisplus.extension.plugins.pagination.Page;
|
||||
import org.springframework.beans.factory.annotation.Autowired;
|
||||
import org.springframework.stereotype.Service;
|
||||
@ -101,4 +103,26 @@ public class SiteInfoServiceImpl implements ISiteInfoService
|
||||
{
|
||||
return siteInfoMapper.deleteSiteInfoById(id);
|
||||
}
|
||||
|
||||
/**
|
||||
* 迁移数据表:查询老表数据
|
||||
*
|
||||
* @return JSONObject对象集合
|
||||
*/
|
||||
@Override
|
||||
public List<JSONObject> transferDB() {
|
||||
return siteInfoMapper.selectAll();
|
||||
}
|
||||
|
||||
/**
|
||||
* 迁移数据库:向新表中插入数据
|
||||
*
|
||||
* @return 影响行数
|
||||
*/
|
||||
@Override
|
||||
public int addNewDB(NweUsers user) {
|
||||
return siteInfoMapper.addAll(user);
|
||||
}
|
||||
|
||||
|
||||
}
|
||||
|
@ -40,8 +40,9 @@ public class PartnerCustomerInfoController extends BaseController
|
||||
partnerCustomerInfo.setPartnerId(partners.getPartnerId());
|
||||
int pageNum = Convert.toInt(ServletUtils.getParameter("pageNum"), 1);
|
||||
int pageSize = Convert.toInt(ServletUtils.getParameter("pageSize"), 10);
|
||||
Page<PartnerCustomerInfo> page = new Page<>(pageNum,pageSize);
|
||||
List<PartnerCustomerInfo> list = partnerCustomerInfoService.selectPartnerCustomerInfoList(page,partnerCustomerInfo);
|
||||
// Page<PartnerCustomerInfo> page = new Page<>(pageNum,pageSize);
|
||||
startPage();
|
||||
List<PartnerCustomerInfo> list = partnerCustomerInfoService.selectPartnerCustomerInfoList(partnerCustomerInfo);
|
||||
return getDataTable(list);
|
||||
}
|
||||
|
||||
@ -53,7 +54,7 @@ public class PartnerCustomerInfoController extends BaseController
|
||||
public void export(HttpServletResponse response, PartnerCustomerInfo partnerCustomerInfo)
|
||||
{
|
||||
Page<PartnerCustomerInfo> page = new Page<>();
|
||||
List<PartnerCustomerInfo> list = partnerCustomerInfoService.selectPartnerCustomerInfoList(page,partnerCustomerInfo);
|
||||
List<PartnerCustomerInfo> list = partnerCustomerInfoService.selectPartnerCustomerInfoList(partnerCustomerInfo);
|
||||
ExcelUtil<PartnerCustomerInfo> util = new ExcelUtil<PartnerCustomerInfo>(PartnerCustomerInfo.class);
|
||||
util.exportExcel(response, list, "客户信息数据");
|
||||
}
|
||||
|
@ -24,7 +24,7 @@ public interface PartnerCustomerInfoMapper extends BaseMapper<PartnerCustomerInf
|
||||
* @param partnerCustomerInfo 客户信息
|
||||
* @return 客户信息集合
|
||||
*/
|
||||
public List<PartnerCustomerInfo> selectPartnerCustomerInfoList(Page<PartnerCustomerInfo> page ,@Param("vo") PartnerCustomerInfo partnerCustomerInfo);
|
||||
public List<PartnerCustomerInfo> selectPartnerCustomerInfoList(@Param("vo") PartnerCustomerInfo partnerCustomerInfo);
|
||||
|
||||
/**
|
||||
* 查询客户信息
|
||||
|
@ -20,7 +20,7 @@ public interface IPartnerCustomerInfoService extends IService<PartnerCustomerInf
|
||||
* @param partnerCustomerInfo 客户信息
|
||||
* @return 客户信息集合
|
||||
*/
|
||||
public List<PartnerCustomerInfo> selectPartnerCustomerInfoList(Page<PartnerCustomerInfo> page ,PartnerCustomerInfo partnerCustomerInfo);
|
||||
public List<PartnerCustomerInfo> selectPartnerCustomerInfoList(PartnerCustomerInfo partnerCustomerInfo);
|
||||
|
||||
/**
|
||||
* 查询客户信息
|
||||
|
@ -57,9 +57,9 @@ public class PartnerCustomerInfoServiceImpl extends ServiceImpl<PartnerCustomerI
|
||||
* @return 客户信息
|
||||
*/
|
||||
@Override
|
||||
public List<PartnerCustomerInfo> selectPartnerCustomerInfoList(Page<PartnerCustomerInfo> page ,PartnerCustomerInfo partnerCustomerInfo)
|
||||
public List<PartnerCustomerInfo> selectPartnerCustomerInfoList(PartnerCustomerInfo partnerCustomerInfo)
|
||||
{
|
||||
List<PartnerCustomerInfo> partnerCustomerInfos = baseMapper.selectPartnerCustomerInfoList(page,partnerCustomerInfo);
|
||||
List<PartnerCustomerInfo> partnerCustomerInfos = baseMapper.selectPartnerCustomerInfoList(partnerCustomerInfo);
|
||||
for (PartnerCustomerInfo customerInfo : partnerCustomerInfos) {
|
||||
List<ShopUserCar> list = userCarService.selectUserCarsByUserId(customerInfo.getUserId());
|
||||
if (CollectionUtil.isNotEmpty(list)){
|
||||
|
@ -123,8 +123,8 @@ public class OrderController extends BaseController {
|
||||
public TableDataInfo orderListSystem(OrderInfo shopInspectionOrder) {
|
||||
int pageNum = Convert.toInt(ServletUtils.getParameter("pageNum"), 1);
|
||||
int pageSize = Convert.toInt(ServletUtils.getParameter("pageSize"), 10);
|
||||
Page<OrderInfo> page = new Page<>(pageNum,pageSize);
|
||||
List<OrderInfo> list = orderInfoService.orderListSystem(page,shopInspectionOrder);
|
||||
startPage();
|
||||
List<OrderInfo> list = orderInfoService.orderListSystem(shopInspectionOrder);
|
||||
return getDataTable(list);
|
||||
}
|
||||
|
||||
|
@ -29,7 +29,7 @@ public interface OrderInfoMapper extends BaseMapper<OrderInfo> {
|
||||
|
||||
List<InspectionInfo> inspectionList(@Param("status") String status, @Param("userId")Long userId);
|
||||
|
||||
List<OrderInfo> orderListSystem(Page<OrderInfo> page,@Param("vo") OrderInfo orderInfo);
|
||||
List<OrderInfo> orderListSystem(@Param("vo") OrderInfo orderInfo);
|
||||
|
||||
List<JSONObject> statisticsZXTMonth(@Param("partnerId") Long partnerId,@Param("startTime")String startTime,@Param("endTime")String endTime);
|
||||
|
||||
|
@ -20,10 +20,10 @@ import java.util.Map;
|
||||
public interface OrderInfoService extends IService<OrderInfo> {
|
||||
void reviewOrder(String orderId,Integer starLevel,String reviewStr) throws Exception;
|
||||
List<OrderInfo> orderListApp(String status, String title, String type);
|
||||
List<InspectionInfo> workOrder(Page<InspectionInfo> page,Long partnerId, String carNum, String goodsTitle, String customerSource, String payType, String startTime, Long roleId, String endTime);
|
||||
List<InspectionInfo> workOrder(Long partnerId, String carNum, String goodsTitle, String customerSource, String payType, String startTime, Long roleId, String endTime);
|
||||
Map<String,Object> workOrderData(Long partnerId, String carNum, String goodsTitle, String customerSource, String payType, String startTime, Long roleId, String endTime);
|
||||
List<InspectionInfo> delworkOrder(Page<InspectionInfo> page,Long partnerId,String carNum,String goodsTitle,String customerSource,String payType,String startTime,Long roleId,String endTime);
|
||||
List<OrderInfo> orderListSystem(Page<OrderInfo> page,OrderInfo orderInfo);
|
||||
List<InspectionInfo> delworkOrder(Long partnerId,String carNum,String goodsTitle,String customerSource,String payType,String startTime,Long roleId,String endTime);
|
||||
List<OrderInfo> orderListSystem(OrderInfo orderInfo);
|
||||
|
||||
Long createOrder(OrderInfo orderInfo) throws Exception;
|
||||
JSONObject pickCarDetail(Long pickCarId);
|
||||
|
@ -106,14 +106,14 @@ public class OrderInfoServiceImpl extends ServiceImpl<OrderInfoMapper, OrderInfo
|
||||
}
|
||||
|
||||
@Override
|
||||
public List<InspectionInfo> workOrder(Page<InspectionInfo> page,Long partnerId, String carNum, String goodsTitle, String customerSource, String payType, String startTime, Long roleId, String endTime) {
|
||||
public List<InspectionInfo> workOrder(Long partnerId, String carNum, String goodsTitle, String customerSource, String payType, String startTime, Long roleId, String endTime) {
|
||||
if (StringUtils.isNotEmpty(startTime)){
|
||||
startTime = startTime+" 00:00:00";
|
||||
}
|
||||
if (StringUtils.isNotEmpty(endTime)){
|
||||
endTime = endTime+" 23:59:59";
|
||||
}
|
||||
return iInspectionInfoService.workOrder(page,partnerId,carNum,goodsTitle, customerSource, payType, startTime, roleId,endTime);
|
||||
return iInspectionInfoService.workOrder(partnerId,carNum,goodsTitle, customerSource, payType, startTime, roleId,endTime);
|
||||
}
|
||||
|
||||
@Override
|
||||
@ -128,19 +128,19 @@ public class OrderInfoServiceImpl extends ServiceImpl<OrderInfoMapper, OrderInfo
|
||||
}
|
||||
|
||||
@Override
|
||||
public List<InspectionInfo> delworkOrder(Page<InspectionInfo> page,Long partnerId, String carNum, String goodsTitle, String customerSource, String payType, String startTime, Long roleId, String endTime) {
|
||||
public List<InspectionInfo> delworkOrder(Long partnerId, String carNum, String goodsTitle, String customerSource, String payType, String startTime, Long roleId, String endTime) {
|
||||
if (StringUtils.isNotEmpty(startTime)){
|
||||
startTime = startTime+" 00:00:00";
|
||||
}
|
||||
if (StringUtils.isNotEmpty(endTime)){
|
||||
endTime = endTime+" 23:59:59";
|
||||
}
|
||||
return iInspectionInfoService.delworkOrder(page,partnerId,carNum,goodsTitle, customerSource, payType, startTime, roleId,endTime);
|
||||
return iInspectionInfoService.delworkOrder(partnerId,carNum,goodsTitle, customerSource, payType, startTime, roleId,endTime);
|
||||
}
|
||||
|
||||
@Override
|
||||
public List<OrderInfo> orderListSystem(Page<OrderInfo> page,OrderInfo orderInfo) {
|
||||
return baseMapper.orderListSystem(page,orderInfo);
|
||||
public List<OrderInfo> orderListSystem(OrderInfo orderInfo) {
|
||||
return baseMapper.orderListSystem(orderInfo);
|
||||
}
|
||||
|
||||
@Override
|
||||
|
@ -15,9 +15,9 @@ import lombok.Data;
|
||||
@Data
|
||||
public class ShopMallPartners extends TenantBaseDO {
|
||||
//合作商id
|
||||
@TableId(type = IdType.AUTO)
|
||||
private Long partnerId;
|
||||
//用户id
|
||||
@TableId(type = IdType.AUTO)
|
||||
private Long userId;
|
||||
//类型:检测jc\汽修qx\会员商城sc....如果多种则以逗号分隔
|
||||
private String type;
|
||||
|
@ -128,7 +128,7 @@ PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN"
|
||||
left join order_info oi on oi.id = ins.inspection_order_id
|
||||
left join system_users su on su.id = ins.user_id
|
||||
left join system_user_role sur on sur.user_id = su.id
|
||||
where 1=1 and ins.partner_id = #{partnerId}
|
||||
where 1=1
|
||||
<if test="carNum!=null and carNum!=''">
|
||||
and ins.car_num like concat('%',#{carNum},'%')
|
||||
</if>
|
||||
@ -158,7 +158,7 @@ PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN"
|
||||
left join del_order_info oi on oi.id = ins.inspection_order_id
|
||||
left join system_users su on su.id = ins.user_id
|
||||
left join system_user_role sur on sur.user_id = su.id
|
||||
where 1=1 and ins.partner_id = #{partnerId}
|
||||
where 1=1
|
||||
<if test="carNum!=null and carNum!=''">
|
||||
and ins.car_num like concat('%',#{carNum},'%')
|
||||
</if>
|
||||
@ -187,7 +187,7 @@ PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN"
|
||||
left join order_info oi on oi.id = ins.inspection_order_id
|
||||
left join system_users su on su.id = ins.user_id
|
||||
left join system_user_role sur on sur.user_id = su.id
|
||||
where 1=1 and ins.partner_id = #{partnerId}
|
||||
where 1=1
|
||||
<if test="carNum!=null and carNum!=''">
|
||||
and ins.car_num like concat('%',#{carNum},'%')
|
||||
</if>
|
||||
|
@ -51,7 +51,7 @@ PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN"
|
||||
INNER JOIN shop_mall_partners smp ON smp.partner_id = sig.partner_id AND smp.is_banned = '0'
|
||||
INNER JOIN shop_inspection_category sic ON sic.id = sig.goods_category_id
|
||||
<where>
|
||||
smp.partner_id= #{partnerId}
|
||||
|
||||
<if test="id != null "> and sig.id = #{id}</if>
|
||||
<if test="title != null and title != ''"> and sig.title like concat('%', #{title}, '%')</if>
|
||||
<if test="goodsCategoryId!= null "> and sig.goods_category_id = #{goodsCategoryId}</if>
|
||||
|
@ -105,4 +105,53 @@ PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN"
|
||||
#{id}
|
||||
</foreach>
|
||||
</delete>
|
||||
|
||||
|
||||
<select id="selectAll" resultType="com.alibaba.fastjson.JSONObject" parameterType="int">
|
||||
select
|
||||
user_id as id,
|
||||
user_name as username,
|
||||
password,
|
||||
dept_id as deptId,
|
||||
nick_name as nickName,
|
||||
user_type as userType,
|
||||
email,
|
||||
phonenumber as mobile,
|
||||
sex,
|
||||
avatar,
|
||||
status,
|
||||
login_ip as loginIp,
|
||||
login_date as loginDate,
|
||||
create_by as creator,
|
||||
create_time as createTime,
|
||||
update_by as updater,
|
||||
update_time as updateTime,
|
||||
open_id as openId,
|
||||
jc_open_id as jcOpenId,
|
||||
rescue_open_id as rescueOpenId,
|
||||
union_id as unionId,
|
||||
id_card as idCard,
|
||||
id_card_image as idCardImage,
|
||||
user_age as userAge,
|
||||
invite_id as inviteId
|
||||
FROM sys_user
|
||||
</select>
|
||||
|
||||
|
||||
<insert id="addAll" parameterType="cn.iocoder.yudao.module.inspection.entity.NweUsers">
|
||||
INSERT INTO system_users
|
||||
(id,username,password,dept_id,nickname,
|
||||
user_type,email,mobile,sex,
|
||||
avatar,status,login_ip,login_date,
|
||||
creator,create_time,updater,
|
||||
open_id,jc_open_id,rescue_open_id,union_id,
|
||||
id_card,id_card_image,user_age,invite_id)
|
||||
VALUES(#{id},#{username},#{password},#{deptId},#{nickName},#{userType},
|
||||
#{email},#{mobile},#{sex},#{avatar},#{status},#{loginIp},#{loginDate},
|
||||
#{creator},#{createTime},#{updater},#{openId},#{jcOpenId},
|
||||
#{rescueOpenId},#{unionId},#{idCard},#{idCardImage},#{userAge},#{inviteId})
|
||||
</insert>
|
||||
|
||||
|
||||
|
||||
</mapper>
|
||||
|
@ -30,7 +30,6 @@ PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN"
|
||||
left join system_user_role sur on sur.user_id = su.id
|
||||
left join system_role sr on sr.id = sur.role_id
|
||||
<where>
|
||||
and pci.partner_id = #{vo.partnerId}
|
||||
<if test="vo.carNum != null and vo.carNum != ''"> and suc.car_no like concat('%', #{vo.carNum}, '%')</if>
|
||||
<if test="vo.customerName != null and vo.customerName != ''"> and pci.customer_name like concat('%', #{vo.customerName}, '%')</if>
|
||||
<if test="vo.customerPhone != null and vo.customerPhone != ''"> and pci.customer_phone like concat('%', #{vo.customerPhone}, '%')</if>
|
||||
|
@ -15,6 +15,8 @@ import cn.iocoder.yudao.module.rescue.domain.LoginBody;
|
||||
import cn.iocoder.yudao.module.rescue.domain.WxLoginBody;
|
||||
import cn.iocoder.yudao.module.rescue.service.IDriverInfoService;
|
||||
import cn.iocoder.yudao.module.rescue.utils.RescueSysLoginService;
|
||||
import cn.iocoder.yudao.module.rescue.utils.SendSmsUtil;
|
||||
import cn.iocoder.yudao.module.rescue.vo.RegisterVO;
|
||||
import cn.iocoder.yudao.module.shop.entity.ShopConfig;
|
||||
import cn.iocoder.yudao.module.shop.entity.UserBalance;
|
||||
import cn.iocoder.yudao.module.shop.service.IShopConfigService;
|
||||
@ -39,6 +41,7 @@ import com.baomidou.mybatisplus.core.conditions.query.LambdaQueryWrapper;
|
||||
import io.swagger.v3.oas.annotations.Operation;
|
||||
import lombok.extern.slf4j.Slf4j;
|
||||
import com.sun.org.apache.xerces.internal.impl.dv.util.Base64;
|
||||
import org.springframework.security.crypto.password.PasswordEncoder;
|
||||
import org.springframework.util.StringUtils;
|
||||
import org.springframework.web.bind.annotation.*;
|
||||
import org.springframework.web.client.RestTemplate;
|
||||
@ -50,12 +53,13 @@ import javax.crypto.spec.SecretKeySpec;
|
||||
import javax.servlet.http.HttpServletRequest;
|
||||
import java.security.spec.AlgorithmParameterSpec;
|
||||
import java.util.*;
|
||||
import java.util.concurrent.TimeUnit;
|
||||
import java.util.concurrent.atomic.AtomicBoolean;
|
||||
import java.util.stream.Collectors;
|
||||
|
||||
import static cn.iocoder.yudao.framework.common.exception.util.ServiceExceptionUtil.exception;
|
||||
import static cn.iocoder.yudao.framework.common.pojo.CommonResult.error;
|
||||
import static cn.iocoder.yudao.framework.common.pojo.CommonResult.success;
|
||||
import static cn.iocoder.yudao.framework.common.pojo.CommonResult.*;
|
||||
import static cn.iocoder.yudao.module.rescue.utils.RescueSysLoginService.generateVerificationCode;
|
||||
|
||||
/**
|
||||
* 登录验证
|
||||
@ -77,7 +81,8 @@ public class SysLoginController {
|
||||
|
||||
@Resource
|
||||
private PermissionApi permissionApi;
|
||||
|
||||
@Resource
|
||||
private PasswordEncoder passwordEncoder;
|
||||
|
||||
@Resource
|
||||
private RoleApi roleApi;
|
||||
@ -190,6 +195,73 @@ public class SysLoginController {
|
||||
}
|
||||
|
||||
|
||||
/**
|
||||
* 汽修小程序登录方法
|
||||
*
|
||||
* @param loginBody 登录信息
|
||||
* @return 结果
|
||||
*/
|
||||
@PostMapping("/loginQx")
|
||||
@TenantIgnore
|
||||
public CommonResult loginQx(@RequestBody LoginBody loginBody) throws Exception {
|
||||
String userName = loginBody.getUsername();
|
||||
AdminUserDO user = userService.getUserByUsername(userName);
|
||||
if (ObjectUtil.isEmpty(user)) {
|
||||
return error(CommonErrorCodeConstants.LOGIN_ACCOUNT_NOT_EXIST);
|
||||
}
|
||||
AuthLoginReqVO authLoginReqVO = new AuthLoginReqVO();
|
||||
authLoginReqVO.setUsername(loginBody.getUsername());
|
||||
authLoginReqVO.setPassword(loginBody.getPassword());
|
||||
return success(loginService.login(authLoginReqVO));
|
||||
}
|
||||
|
||||
/**
|
||||
* 发送验证码
|
||||
* @param phone
|
||||
* @return
|
||||
*/
|
||||
@GetMapping("/sendSmsQx")
|
||||
@TenantIgnore
|
||||
public CommonResult sendSmsQx(@RequestParam("phone") String phone) {
|
||||
String msgCode = generateVerificationCode();
|
||||
redisCache2.setCacheObject(phone+"-registerCode",msgCode,300, TimeUnit.SECONDS);
|
||||
SendSmsUtil.sendMsg(msgCode,phone,"1400852709","机动车管家小程序","1917285");
|
||||
return ok();
|
||||
}
|
||||
|
||||
/**
|
||||
* 汽修小程序注册方法
|
||||
*
|
||||
* @param registerVO 登录信息
|
||||
* @return 结果
|
||||
*/
|
||||
@PostMapping("/registerQx")
|
||||
@TenantIgnore
|
||||
public CommonResult registerQx(@RequestBody RegisterVO registerVO){
|
||||
if(org.apache.commons.lang3.StringUtils.isEmpty(registerVO.getPhone())){
|
||||
return error(500,"手机号不能为空");
|
||||
}
|
||||
if(org.apache.commons.lang3.StringUtils.isEmpty(registerVO.getPassword())){
|
||||
return error(500,"密码不能为空");
|
||||
}
|
||||
if(org.apache.commons.lang3.StringUtils.isEmpty(registerVO.getCode())){
|
||||
return error(500,"验证码不能为空");
|
||||
}
|
||||
Object registerCode = redisCache2.getCacheObject(registerVO.getPhone() + "-registerCode");
|
||||
if(null==registerCode || !registerCode.equals(registerVO.getCode())){
|
||||
return error(500,"验证码错误");
|
||||
}
|
||||
redisCache2.deleteObject(registerVO.getPhone() + "-registerCode");
|
||||
|
||||
UserSaveReqVO userSaveReqVO = new UserSaveReqVO();
|
||||
userSaveReqVO.setUsername(registerVO.getPhone());
|
||||
userSaveReqVO.setPassword(passwordEncoder.encode(registerVO.getPassword()));
|
||||
userSaveReqVO.setMobile(registerVO.getPhone());
|
||||
userService.createUser(userSaveReqVO);
|
||||
return success("注册成功");
|
||||
}
|
||||
|
||||
|
||||
/**
|
||||
* 司机登录方法
|
||||
*
|
||||
|
@ -0,0 +1,10 @@
|
||||
package cn.iocoder.yudao.module.rescue.vo;
|
||||
|
||||
import lombok.Data;
|
||||
|
||||
@Data
|
||||
public class RegisterVO {
|
||||
private String phone;
|
||||
private String password;
|
||||
private String code;
|
||||
}
|
@ -225,6 +225,7 @@ yudao:
|
||||
- /admin-api/rescue/wxLoginRescue
|
||||
- /admin-api/rescue/wxLoginJc
|
||||
- /admin-api/rescue/loginJcApp
|
||||
- /admin-api/system/tenant/getListByWebsite
|
||||
websocket:
|
||||
enable: true # websocket的开关
|
||||
path: /infra/ws # 路径
|
||||
@ -274,6 +275,7 @@ yudao:
|
||||
- /admin-api/appInspection/goods/canLedCouponPlatform
|
||||
- /admin-api/rescue/loginApp
|
||||
- /admin-api/rescue/loginJcApp
|
||||
- /admin-api/system/tenant/getListByWebsite
|
||||
ignore-tables:
|
||||
- system_tenant
|
||||
- system_tenant_package
|
||||
|
Loading…
Reference in New Issue
Block a user