Commit 5ab7fb5b authored by dqjdda's avatar dqjdda
Browse files

目录调整,新增 Not Equal 查询方式

parent 3daa8263
package me.zhengjie.modules.tools.domain; package me.zhengjie.domain;
import lombok.*; import lombok.*;
import cn.hutool.core.bean.BeanUtil; import cn.hutool.core.bean.BeanUtil;
......
package me.zhengjie.modules.tools.domain; package me.zhengjie.domain;
import lombok.Data; import lombok.Data;
import org.hibernate.annotations.CreationTimestamp; import org.hibernate.annotations.CreationTimestamp;
......
package me.zhengjie.modules.tools.domain; package me.zhengjie.domain;
import lombok.Data; import lombok.Data;
import javax.persistence.*; import javax.persistence.*;
......
package me.zhengjie.modules.tools.domain; package me.zhengjie.domain;
import lombok.Data; import lombok.Data;
import org.hibernate.annotations.UpdateTimestamp; import org.hibernate.annotations.UpdateTimestamp;
......
package me.zhengjie.modules.tools.domain; package me.zhengjie.domain;
import lombok.AllArgsConstructor; import lombok.AllArgsConstructor;
import lombok.Data; import lombok.Data;
......
package me.zhengjie.modules.tools.domain.vo; package me.zhengjie.domain.vo;
import lombok.AllArgsConstructor; import lombok.AllArgsConstructor;
import lombok.Data; import lombok.Data;
......
package me.zhengjie.modules.tools.domain.vo; package me.zhengjie.domain.vo;
import io.swagger.annotations.ApiModelProperty; import io.swagger.annotations.ApiModelProperty;
import lombok.Data; import lombok.Data;
......
package me.zhengjie.modules.tools.repository; package me.zhengjie.repository;
import me.zhengjie.modules.tools.domain.AlipayConfig; import me.zhengjie.domain.AlipayConfig;
import org.springframework.data.jpa.repository.JpaRepository; import org.springframework.data.jpa.repository.JpaRepository;
/** /**
......
package me.zhengjie.modules.tools.repository; package me.zhengjie.repository;
import me.zhengjie.modules.tools.domain.EmailConfig; import me.zhengjie.domain.EmailConfig;
import org.springframework.data.jpa.repository.JpaRepository; import org.springframework.data.jpa.repository.JpaRepository;
/** /**
......
package me.zhengjie.modules.tools.repository; package me.zhengjie.repository;
import me.zhengjie.modules.tools.domain.LocalStorage; import me.zhengjie.domain.LocalStorage;
import org.springframework.data.jpa.repository.JpaRepository; import org.springframework.data.jpa.repository.JpaRepository;
import org.springframework.data.jpa.repository.JpaSpecificationExecutor; import org.springframework.data.jpa.repository.JpaSpecificationExecutor;
......
package me.zhengjie.modules.tools.repository; package me.zhengjie.repository;
import me.zhengjie.modules.tools.domain.Picture; import me.zhengjie.domain.Picture;
import org.springframework.data.jpa.repository.JpaRepository; import org.springframework.data.jpa.repository.JpaRepository;
import org.springframework.data.jpa.repository.JpaSpecificationExecutor; import org.springframework.data.jpa.repository.JpaSpecificationExecutor;
......
package me.zhengjie.modules.tools.repository; package me.zhengjie.repository;
import me.zhengjie.modules.tools.domain.QiniuConfig; import me.zhengjie.domain.QiniuConfig;
import org.springframework.data.jpa.repository.JpaRepository; import org.springframework.data.jpa.repository.JpaRepository;
import org.springframework.data.jpa.repository.Modifying; import org.springframework.data.jpa.repository.Modifying;
import org.springframework.data.jpa.repository.Query; import org.springframework.data.jpa.repository.Query;
......
package me.zhengjie.modules.tools.repository; package me.zhengjie.repository;
import me.zhengjie.modules.tools.domain.QiniuContent; import me.zhengjie.domain.QiniuContent;
import org.springframework.data.jpa.repository.JpaRepository; import org.springframework.data.jpa.repository.JpaRepository;
import org.springframework.data.jpa.repository.JpaSpecificationExecutor; import org.springframework.data.jpa.repository.JpaSpecificationExecutor;
......
package me.zhengjie.modules.tools.repository; package me.zhengjie.repository;
import me.zhengjie.modules.tools.domain.VerificationCode; import me.zhengjie.domain.VerificationCode;
import org.springframework.data.jpa.repository.JpaRepository; import org.springframework.data.jpa.repository.JpaRepository;
/** /**
......
package me.zhengjie.modules.tools.rest; package me.zhengjie.rest;
import io.swagger.annotations.Api; import io.swagger.annotations.Api;
import io.swagger.annotations.ApiOperation; import io.swagger.annotations.ApiOperation;
import lombok.extern.slf4j.Slf4j; import lombok.extern.slf4j.Slf4j;
import me.zhengjie.annotation.AnonymousAccess; import me.zhengjie.annotation.AnonymousAccess;
import me.zhengjie.aop.log.Log; import me.zhengjie.aop.log.Log;
import me.zhengjie.modules.tools.domain.AlipayConfig; import me.zhengjie.domain.vo.TradeVo;
import me.zhengjie.modules.tools.domain.vo.TradeVo; import me.zhengjie.domain.AlipayConfig;
import me.zhengjie.modules.tools.utils.AliPayStatusEnum; import me.zhengjie.utils.AliPayStatusEnum;
import me.zhengjie.modules.tools.utils.AlipayUtils; import me.zhengjie.utils.AlipayUtils;
import me.zhengjie.modules.tools.service.AlipayService; import me.zhengjie.service.AlipayService;
import org.springframework.http.HttpStatus; import org.springframework.http.HttpStatus;
import org.springframework.http.ResponseEntity; import org.springframework.http.ResponseEntity;
import org.springframework.validation.annotation.Validated; import org.springframework.validation.annotation.Validated;
......
package me.zhengjie.modules.tools.rest; package me.zhengjie.rest;
import io.swagger.annotations.Api; import io.swagger.annotations.Api;
import io.swagger.annotations.ApiOperation; import io.swagger.annotations.ApiOperation;
import me.zhengjie.aop.log.Log; import me.zhengjie.aop.log.Log;
import me.zhengjie.modules.tools.domain.EmailConfig; import me.zhengjie.domain.vo.EmailVo;
import me.zhengjie.modules.tools.domain.vo.EmailVo; import me.zhengjie.domain.EmailConfig;
import me.zhengjie.modules.tools.service.EmailService; import me.zhengjie.service.EmailService;
import org.springframework.http.HttpStatus; import org.springframework.http.HttpStatus;
import org.springframework.http.ResponseEntity; import org.springframework.http.ResponseEntity;
import org.springframework.validation.annotation.Validated; import org.springframework.validation.annotation.Validated;
......
package me.zhengjie.modules.tools.rest; package me.zhengjie.rest;
import me.zhengjie.aop.log.Log; import me.zhengjie.aop.log.Log;
import me.zhengjie.modules.tools.domain.LocalStorage; import me.zhengjie.domain.LocalStorage;
import me.zhengjie.modules.tools.service.LocalStorageService; import me.zhengjie.service.LocalStorageService;
import me.zhengjie.modules.tools.service.dto.LocalStorageQueryCriteria; import me.zhengjie.service.dto.LocalStorageQueryCriteria;
import org.springframework.data.domain.Pageable; import org.springframework.data.domain.Pageable;
import org.springframework.http.HttpStatus; import org.springframework.http.HttpStatus;
import org.springframework.http.ResponseEntity; import org.springframework.http.ResponseEntity;
......
package me.zhengjie.modules.tools.rest; package me.zhengjie.rest;
import io.swagger.annotations.Api; import io.swagger.annotations.Api;
import io.swagger.annotations.ApiOperation; import io.swagger.annotations.ApiOperation;
import me.zhengjie.aop.log.Log; import me.zhengjie.aop.log.Log;
import me.zhengjie.modules.tools.domain.Picture; import me.zhengjie.domain.Picture;
import me.zhengjie.modules.tools.service.PictureService; import me.zhengjie.service.PictureService;
import me.zhengjie.modules.tools.service.dto.PictureQueryCriteria; import me.zhengjie.service.dto.PictureQueryCriteria;
import me.zhengjie.utils.SecurityUtils; import me.zhengjie.utils.SecurityUtils;
import org.springframework.data.domain.Pageable; import org.springframework.data.domain.Pageable;
import org.springframework.http.HttpStatus; import org.springframework.http.HttpStatus;
......
package me.zhengjie.modules.tools.rest; package me.zhengjie.rest;
import io.swagger.annotations.Api; import io.swagger.annotations.Api;
import io.swagger.annotations.ApiOperation; import io.swagger.annotations.ApiOperation;
import lombok.extern.slf4j.Slf4j; import lombok.extern.slf4j.Slf4j;
import me.zhengjie.aop.log.Log; import me.zhengjie.aop.log.Log;
import me.zhengjie.modules.tools.domain.QiniuConfig; import me.zhengjie.domain.QiniuConfig;
import me.zhengjie.modules.tools.service.dto.QiniuQueryCriteria; import me.zhengjie.domain.QiniuContent;
import me.zhengjie.modules.tools.domain.QiniuContent; import me.zhengjie.service.dto.QiniuQueryCriteria;
import me.zhengjie.modules.tools.service.QiNiuService; import me.zhengjie.service.QiNiuService;
import org.springframework.data.domain.Pageable; import org.springframework.data.domain.Pageable;
import org.springframework.http.HttpStatus; import org.springframework.http.HttpStatus;
import org.springframework.http.ResponseEntity; import org.springframework.http.ResponseEntity;
......
package me.zhengjie.modules.tools.rest; package me.zhengjie.rest;
import io.swagger.annotations.Api; import io.swagger.annotations.Api;
import io.swagger.annotations.ApiOperation; import io.swagger.annotations.ApiOperation;
import me.zhengjie.modules.tools.domain.VerificationCode; import me.zhengjie.domain.VerificationCode;
import me.zhengjie.modules.tools.domain.vo.EmailVo; import me.zhengjie.domain.vo.EmailVo;
import me.zhengjie.modules.tools.service.EmailService; import me.zhengjie.service.EmailService;
import me.zhengjie.modules.tools.service.VerificationCodeService; import me.zhengjie.service.VerificationCodeService;
import me.zhengjie.utils.ElAdminConstant; import me.zhengjie.utils.ElAdminConstant;
import org.springframework.http.HttpStatus; import org.springframework.http.HttpStatus;
import org.springframework.http.ResponseEntity; import org.springframework.http.ResponseEntity;
......
Supports Markdown
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment