From fcebd8474e0ba46464987bc2722941c58049dec3 Mon Sep 17 00:00:00 2001 From: chen-xin-zhi <3588068430@qq.com> Date: Tue, 1 Apr 2025 11:48:31 +0800 Subject: [PATCH] first commit --- .gitattributes | 2 + .gitignore | 33 +++ .mvn/wrapper/maven-wrapper.properties | 19 ++ mvnw | 259 ++++++++++++++++++ mvnw.cmd | 149 ++++++++++ pom.xml | 125 +++++++++ .../promotion/GreenOrangeApplication.java | 15 + .../promotion/annotation/AuthCheck.java | 18 ++ .../promotion/aop/AuthInterceptor.java | 75 +++++ .../promotion/common/BaseResponse.java | 34 +++ .../promotion/common/ErrorCode.java | 30 ++ .../promotion/common/PageRequest.java | 36 +++ .../promotion/common/ResultUtils.java | 58 ++++ .../promotion/config/CorsConfig.java | 33 +++ .../promotion/config/Knife4jConfig.java | 34 +++ .../promotion/config/MyBatisPlusConfig.java | 28 ++ .../promotion/constant/CommonConstant.java | 18 ++ .../promotion/constant/RegexConstant.java | 34 +++ .../promotion/constant/UserConstant.java | 40 +++ .../controller/user/UserController.java | 113 ++++++++ .../exception/BusinessException.java | 36 +++ .../exception/GlobalExceptionHandler.java | 50 ++++ .../promotion/exception/ThrowUtils.java | 44 +++ .../promotion/generator/Generator.java | 119 ++++++++ .../promotion/mapper/UserMapper.java | 18 ++ .../model/dto/CommonBatchRequest.java | 21 ++ .../promotion/model/dto/CommonRequest.java | 21 ++ .../model/dto/CommonStringRequest.java | 23 ++ .../model/dto/user/UserAddRequest.java | 62 +++++ .../model/dto/user/UserQueryRequest.java | 38 +++ .../model/dto/user/UserUpdateRequest.java | 68 +++++ .../promotion/model/entity/User.java | 76 +++++ .../promotion/model/enums/UserRoleEnum.java | 52 ++++ .../promotion/model/vo/user/UserVO.java | 67 +++++ .../service/common/CommonService.java | 96 +++++++ .../common/impl/CommonServiceImpl.java | 179 ++++++++++++ .../promotion/service/user/UserService.java | 68 +++++ .../service/user/impl/UserServiceImpl.java | 156 +++++++++++ .../promotion/utils/RegexUtils.java | 68 +++++ .../greenorange/promotion/utils/SqlUtils.java | 22 ++ src/main/resources/application.yml | 59 ++++ .../lib/2020idea-mybatis_log_plugin.jar | Bin 0 -> 35107 bytes src/main/resources/mapper/UserMapper.xml | 27 ++ .../resources/templates/controller.java.vm | 134 +++++++++ .../templates/dto/Addrequest.java.vm | 29 ++ .../templates/dto/QueryRequest.java.vm | 35 +++ .../templates/dto/UpdateRequest.java.vm | 35 +++ src/main/resources/templates/vo/VO.java.vm | 35 +++ .../GreenOrangeApplicationTests.java | 13 + 49 files changed, 2804 insertions(+) create mode 100644 .gitattributes create mode 100644 .gitignore create mode 100644 .mvn/wrapper/maven-wrapper.properties create mode 100644 mvnw create mode 100644 mvnw.cmd create mode 100644 pom.xml create mode 100644 src/main/java/com/greenorange/promotion/GreenOrangeApplication.java create mode 100644 src/main/java/com/greenorange/promotion/annotation/AuthCheck.java create mode 100644 src/main/java/com/greenorange/promotion/aop/AuthInterceptor.java create mode 100644 src/main/java/com/greenorange/promotion/common/BaseResponse.java create mode 100644 src/main/java/com/greenorange/promotion/common/ErrorCode.java create mode 100644 src/main/java/com/greenorange/promotion/common/PageRequest.java create mode 100644 src/main/java/com/greenorange/promotion/common/ResultUtils.java create mode 100644 src/main/java/com/greenorange/promotion/config/CorsConfig.java create mode 100644 src/main/java/com/greenorange/promotion/config/Knife4jConfig.java create mode 100644 src/main/java/com/greenorange/promotion/config/MyBatisPlusConfig.java create mode 100644 src/main/java/com/greenorange/promotion/constant/CommonConstant.java create mode 100644 src/main/java/com/greenorange/promotion/constant/RegexConstant.java create mode 100644 src/main/java/com/greenorange/promotion/constant/UserConstant.java create mode 100644 src/main/java/com/greenorange/promotion/controller/user/UserController.java create mode 100644 src/main/java/com/greenorange/promotion/exception/BusinessException.java create mode 100644 src/main/java/com/greenorange/promotion/exception/GlobalExceptionHandler.java create mode 100644 src/main/java/com/greenorange/promotion/exception/ThrowUtils.java create mode 100644 src/main/java/com/greenorange/promotion/generator/Generator.java create mode 100644 src/main/java/com/greenorange/promotion/mapper/UserMapper.java create mode 100644 src/main/java/com/greenorange/promotion/model/dto/CommonBatchRequest.java create mode 100644 src/main/java/com/greenorange/promotion/model/dto/CommonRequest.java create mode 100644 src/main/java/com/greenorange/promotion/model/dto/CommonStringRequest.java create mode 100644 src/main/java/com/greenorange/promotion/model/dto/user/UserAddRequest.java create mode 100644 src/main/java/com/greenorange/promotion/model/dto/user/UserQueryRequest.java create mode 100644 src/main/java/com/greenorange/promotion/model/dto/user/UserUpdateRequest.java create mode 100644 src/main/java/com/greenorange/promotion/model/entity/User.java create mode 100644 src/main/java/com/greenorange/promotion/model/enums/UserRoleEnum.java create mode 100644 src/main/java/com/greenorange/promotion/model/vo/user/UserVO.java create mode 100644 src/main/java/com/greenorange/promotion/service/common/CommonService.java create mode 100644 src/main/java/com/greenorange/promotion/service/common/impl/CommonServiceImpl.java create mode 100644 src/main/java/com/greenorange/promotion/service/user/UserService.java create mode 100644 src/main/java/com/greenorange/promotion/service/user/impl/UserServiceImpl.java create mode 100644 src/main/java/com/greenorange/promotion/utils/RegexUtils.java create mode 100644 src/main/java/com/greenorange/promotion/utils/SqlUtils.java create mode 100644 src/main/resources/application.yml create mode 100644 src/main/resources/lib/2020idea-mybatis_log_plugin.jar create mode 100644 src/main/resources/mapper/UserMapper.xml create mode 100644 src/main/resources/templates/controller.java.vm create mode 100644 src/main/resources/templates/dto/Addrequest.java.vm create mode 100644 src/main/resources/templates/dto/QueryRequest.java.vm create mode 100644 src/main/resources/templates/dto/UpdateRequest.java.vm create mode 100644 src/main/resources/templates/vo/VO.java.vm create mode 100644 src/test/java/com/greenorange/promotion/GreenOrangeApplicationTests.java diff --git a/.gitattributes b/.gitattributes new file mode 100644 index 0000000..3b41682 --- /dev/null +++ b/.gitattributes @@ -0,0 +1,2 @@ +/mvnw text eol=lf +*.cmd text eol=crlf diff --git a/.gitignore b/.gitignore new file mode 100644 index 0000000..549e00a --- /dev/null +++ b/.gitignore @@ -0,0 +1,33 @@ +HELP.md +target/ +!.mvn/wrapper/maven-wrapper.jar +!**/src/main/**/target/ +!**/src/test/**/target/ + +### STS ### +.apt_generated +.classpath +.factorypath +.project +.settings +.springBeans +.sts4-cache + +### IntelliJ IDEA ### +.idea +*.iws +*.iml +*.ipr + +### NetBeans ### +/nbproject/private/ +/nbbuild/ +/dist/ +/nbdist/ +/.nb-gradle/ +build/ +!**/src/main/**/build/ +!**/src/test/**/build/ + +### VS Code ### +.vscode/ diff --git a/.mvn/wrapper/maven-wrapper.properties b/.mvn/wrapper/maven-wrapper.properties new file mode 100644 index 0000000..d58dfb7 --- /dev/null +++ b/.mvn/wrapper/maven-wrapper.properties @@ -0,0 +1,19 @@ +# Licensed to the Apache Software Foundation (ASF) under one +# or more contributor license agreements. See the NOTICE file +# distributed with this work for additional information +# regarding copyright ownership. The ASF licenses this file +# to you under the Apache License, Version 2.0 (the +# "License"); you may not use this file except in compliance +# with the License. You may obtain a copy of the License at +# +# http://www.apache.org/licenses/LICENSE-2.0 +# +# Unless required by applicable law or agreed to in writing, +# software distributed under the License is distributed on an +# "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY +# KIND, either express or implied. See the License for the +# specific language governing permissions and limitations +# under the License. +wrapperVersion=3.3.2 +distributionType=only-script +distributionUrl=https://repo.maven.apache.org/maven2/org/apache/maven/apache-maven/3.9.9/apache-maven-3.9.9-bin.zip diff --git a/mvnw b/mvnw new file mode 100644 index 0000000..19529dd --- /dev/null +++ b/mvnw @@ -0,0 +1,259 @@ +#!/bin/sh +# ---------------------------------------------------------------------------- +# Licensed to the Apache Software Foundation (ASF) under one +# or more contributor license agreements. See the NOTICE file +# distributed with this work for additional information +# regarding copyright ownership. The ASF licenses this file +# to you under the Apache License, Version 2.0 (the +# "License"); you may not use this file except in compliance +# with the License. You may obtain a copy of the License at +# +# http://www.apache.org/licenses/LICENSE-2.0 +# +# Unless required by applicable law or agreed to in writing, +# software distributed under the License is distributed on an +# "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY +# KIND, either express or implied. See the License for the +# specific language governing permissions and limitations +# under the License. +# ---------------------------------------------------------------------------- + +# ---------------------------------------------------------------------------- +# Apache Maven Wrapper startup batch script, version 3.3.2 +# +# Optional ENV vars +# ----------------- +# JAVA_HOME - location of a JDK home dir, required when download maven via java source +# MVNW_REPOURL - repo url base for downloading maven distribution +# MVNW_USERNAME/MVNW_PASSWORD - user and password for downloading maven +# MVNW_VERBOSE - true: enable verbose log; debug: trace the mvnw script; others: silence the output +# ---------------------------------------------------------------------------- + +set -euf +[ "${MVNW_VERBOSE-}" != debug ] || set -x + +# OS specific support. +native_path() { printf %s\\n "$1"; } +case "$(uname)" in +CYGWIN* | MINGW*) + [ -z "${JAVA_HOME-}" ] || JAVA_HOME="$(cygpath --unix "$JAVA_HOME")" + native_path() { cygpath --path --windows "$1"; } + ;; +esac + +# set JAVACMD and JAVACCMD +set_java_home() { + # For Cygwin and MinGW, ensure paths are in Unix format before anything is touched + if [ -n "${JAVA_HOME-}" ]; then + if [ -x "$JAVA_HOME/jre/sh/java" ]; then + # IBM's JDK on AIX uses strange locations for the executables + JAVACMD="$JAVA_HOME/jre/sh/java" + JAVACCMD="$JAVA_HOME/jre/sh/javac" + else + JAVACMD="$JAVA_HOME/bin/java" + JAVACCMD="$JAVA_HOME/bin/javac" + + if [ ! -x "$JAVACMD" ] || [ ! -x "$JAVACCMD" ]; then + echo "The JAVA_HOME environment variable is not defined correctly, so mvnw cannot run." >&2 + echo "JAVA_HOME is set to \"$JAVA_HOME\", but \"\$JAVA_HOME/bin/java\" or \"\$JAVA_HOME/bin/javac\" does not exist." >&2 + return 1 + fi + fi + else + JAVACMD="$( + 'set' +e + 'unset' -f command 2>/dev/null + 'command' -v java + )" || : + JAVACCMD="$( + 'set' +e + 'unset' -f command 2>/dev/null + 'command' -v javac + )" || : + + if [ ! -x "${JAVACMD-}" ] || [ ! -x "${JAVACCMD-}" ]; then + echo "The java/javac command does not exist in PATH nor is JAVA_HOME set, so mvnw cannot run." >&2 + return 1 + fi + fi +} + +# hash string like Java String::hashCode +hash_string() { + str="${1:-}" h=0 + while [ -n "$str" ]; do + char="${str%"${str#?}"}" + h=$(((h * 31 + $(LC_CTYPE=C printf %d "'$char")) % 4294967296)) + str="${str#?}" + done + printf %x\\n $h +} + +verbose() { :; } +[ "${MVNW_VERBOSE-}" != true ] || verbose() { printf %s\\n "${1-}"; } + +die() { + printf %s\\n "$1" >&2 + exit 1 +} + +trim() { + # MWRAPPER-139: + # Trims trailing and leading whitespace, carriage returns, tabs, and linefeeds. + # Needed for removing poorly interpreted newline sequences when running in more + # exotic environments such as mingw bash on Windows. + printf "%s" "${1}" | tr -d '[:space:]' +} + +# parse distributionUrl and optional distributionSha256Sum, requires .mvn/wrapper/maven-wrapper.properties +while IFS="=" read -r key value; do + case "${key-}" in + distributionUrl) distributionUrl=$(trim "${value-}") ;; + distributionSha256Sum) distributionSha256Sum=$(trim "${value-}") ;; + esac +done <"${0%/*}/.mvn/wrapper/maven-wrapper.properties" +[ -n "${distributionUrl-}" ] || die "cannot read distributionUrl property in ${0%/*}/.mvn/wrapper/maven-wrapper.properties" + +case "${distributionUrl##*/}" in +maven-mvnd-*bin.*) + MVN_CMD=mvnd.sh _MVNW_REPO_PATTERN=/maven/mvnd/ + case "${PROCESSOR_ARCHITECTURE-}${PROCESSOR_ARCHITEW6432-}:$(uname -a)" in + *AMD64:CYGWIN* | *AMD64:MINGW*) distributionPlatform=windows-amd64 ;; + :Darwin*x86_64) distributionPlatform=darwin-amd64 ;; + :Darwin*arm64) distributionPlatform=darwin-aarch64 ;; + :Linux*x86_64*) distributionPlatform=linux-amd64 ;; + *) + echo "Cannot detect native platform for mvnd on $(uname)-$(uname -m), use pure java version" >&2 + distributionPlatform=linux-amd64 + ;; + esac + distributionUrl="${distributionUrl%-bin.*}-$distributionPlatform.zip" + ;; +maven-mvnd-*) MVN_CMD=mvnd.sh _MVNW_REPO_PATTERN=/maven/mvnd/ ;; +*) MVN_CMD="mvn${0##*/mvnw}" _MVNW_REPO_PATTERN=/org/apache/maven/ ;; +esac + +# apply MVNW_REPOURL and calculate MAVEN_HOME +# maven home pattern: ~/.m2/wrapper/dists/{apache-maven-,maven-mvnd--}/ +[ -z "${MVNW_REPOURL-}" ] || distributionUrl="$MVNW_REPOURL$_MVNW_REPO_PATTERN${distributionUrl#*"$_MVNW_REPO_PATTERN"}" +distributionUrlName="${distributionUrl##*/}" +distributionUrlNameMain="${distributionUrlName%.*}" +distributionUrlNameMain="${distributionUrlNameMain%-bin}" +MAVEN_USER_HOME="${MAVEN_USER_HOME:-${HOME}/.m2}" +MAVEN_HOME="${MAVEN_USER_HOME}/wrapper/dists/${distributionUrlNameMain-}/$(hash_string "$distributionUrl")" + +exec_maven() { + unset MVNW_VERBOSE MVNW_USERNAME MVNW_PASSWORD MVNW_REPOURL || : + exec "$MAVEN_HOME/bin/$MVN_CMD" "$@" || die "cannot exec $MAVEN_HOME/bin/$MVN_CMD" +} + +if [ -d "$MAVEN_HOME" ]; then + verbose "found existing MAVEN_HOME at $MAVEN_HOME" + exec_maven "$@" +fi + +case "${distributionUrl-}" in +*?-bin.zip | *?maven-mvnd-?*-?*.zip) ;; +*) die "distributionUrl is not valid, must match *-bin.zip or maven-mvnd-*.zip, but found '${distributionUrl-}'" ;; +esac + +# prepare tmp dir +if TMP_DOWNLOAD_DIR="$(mktemp -d)" && [ -d "$TMP_DOWNLOAD_DIR" ]; then + clean() { rm -rf -- "$TMP_DOWNLOAD_DIR"; } + trap clean HUP INT TERM EXIT +else + die "cannot create temp dir" +fi + +mkdir -p -- "${MAVEN_HOME%/*}" + +# Download and Install Apache Maven +verbose "Couldn't find MAVEN_HOME, downloading and installing it ..." +verbose "Downloading from: $distributionUrl" +verbose "Downloading to: $TMP_DOWNLOAD_DIR/$distributionUrlName" + +# select .zip or .tar.gz +if ! command -v unzip >/dev/null; then + distributionUrl="${distributionUrl%.zip}.tar.gz" + distributionUrlName="${distributionUrl##*/}" +fi + +# verbose opt +__MVNW_QUIET_WGET=--quiet __MVNW_QUIET_CURL=--silent __MVNW_QUIET_UNZIP=-q __MVNW_QUIET_TAR='' +[ "${MVNW_VERBOSE-}" != true ] || __MVNW_QUIET_WGET='' __MVNW_QUIET_CURL='' __MVNW_QUIET_UNZIP='' __MVNW_QUIET_TAR=v + +# normalize http auth +case "${MVNW_PASSWORD:+has-password}" in +'') MVNW_USERNAME='' MVNW_PASSWORD='' ;; +has-password) [ -n "${MVNW_USERNAME-}" ] || MVNW_USERNAME='' MVNW_PASSWORD='' ;; +esac + +if [ -z "${MVNW_USERNAME-}" ] && command -v wget >/dev/null; then + verbose "Found wget ... using wget" + wget ${__MVNW_QUIET_WGET:+"$__MVNW_QUIET_WGET"} "$distributionUrl" -O "$TMP_DOWNLOAD_DIR/$distributionUrlName" || die "wget: Failed to fetch $distributionUrl" +elif [ -z "${MVNW_USERNAME-}" ] && command -v curl >/dev/null; then + verbose "Found curl ... using curl" + curl ${__MVNW_QUIET_CURL:+"$__MVNW_QUIET_CURL"} -f -L -o "$TMP_DOWNLOAD_DIR/$distributionUrlName" "$distributionUrl" || die "curl: Failed to fetch $distributionUrl" +elif set_java_home; then + verbose "Falling back to use Java to download" + javaSource="$TMP_DOWNLOAD_DIR/Downloader.java" + targetZip="$TMP_DOWNLOAD_DIR/$distributionUrlName" + cat >"$javaSource" <<-END + public class Downloader extends java.net.Authenticator + { + protected java.net.PasswordAuthentication getPasswordAuthentication() + { + return new java.net.PasswordAuthentication( System.getenv( "MVNW_USERNAME" ), System.getenv( "MVNW_PASSWORD" ).toCharArray() ); + } + public static void main( String[] args ) throws Exception + { + setDefault( new Downloader() ); + java.nio.file.Files.copy( java.net.URI.create( args[0] ).toURL().openStream(), java.nio.file.Paths.get( args[1] ).toAbsolutePath().normalize() ); + } + } + END + # For Cygwin/MinGW, switch paths to Windows format before running javac and java + verbose " - Compiling Downloader.java ..." + "$(native_path "$JAVACCMD")" "$(native_path "$javaSource")" || die "Failed to compile Downloader.java" + verbose " - Running Downloader.java ..." + "$(native_path "$JAVACMD")" -cp "$(native_path "$TMP_DOWNLOAD_DIR")" Downloader "$distributionUrl" "$(native_path "$targetZip")" +fi + +# If specified, validate the SHA-256 sum of the Maven distribution zip file +if [ -n "${distributionSha256Sum-}" ]; then + distributionSha256Result=false + if [ "$MVN_CMD" = mvnd.sh ]; then + echo "Checksum validation is not supported for maven-mvnd." >&2 + echo "Please disable validation by removing 'distributionSha256Sum' from your maven-wrapper.properties." >&2 + exit 1 + elif command -v sha256sum >/dev/null; then + if echo "$distributionSha256Sum $TMP_DOWNLOAD_DIR/$distributionUrlName" | sha256sum -c >/dev/null 2>&1; then + distributionSha256Result=true + fi + elif command -v shasum >/dev/null; then + if echo "$distributionSha256Sum $TMP_DOWNLOAD_DIR/$distributionUrlName" | shasum -a 256 -c >/dev/null 2>&1; then + distributionSha256Result=true + fi + else + echo "Checksum validation was requested but neither 'sha256sum' or 'shasum' are available." >&2 + echo "Please install either command, or disable validation by removing 'distributionSha256Sum' from your maven-wrapper.properties." >&2 + exit 1 + fi + if [ $distributionSha256Result = false ]; then + echo "Error: Failed to validate Maven distribution SHA-256, your Maven distribution might be compromised." >&2 + echo "If you updated your Maven version, you need to update the specified distributionSha256Sum property." >&2 + exit 1 + fi +fi + +# unzip and move +if command -v unzip >/dev/null; then + unzip ${__MVNW_QUIET_UNZIP:+"$__MVNW_QUIET_UNZIP"} "$TMP_DOWNLOAD_DIR/$distributionUrlName" -d "$TMP_DOWNLOAD_DIR" || die "failed to unzip" +else + tar xzf${__MVNW_QUIET_TAR:+"$__MVNW_QUIET_TAR"} "$TMP_DOWNLOAD_DIR/$distributionUrlName" -C "$TMP_DOWNLOAD_DIR" || die "failed to untar" +fi +printf %s\\n "$distributionUrl" >"$TMP_DOWNLOAD_DIR/$distributionUrlNameMain/mvnw.url" +mv -- "$TMP_DOWNLOAD_DIR/$distributionUrlNameMain" "$MAVEN_HOME" || [ -d "$MAVEN_HOME" ] || die "fail to move MAVEN_HOME" + +clean || : +exec_maven "$@" diff --git a/mvnw.cmd b/mvnw.cmd new file mode 100644 index 0000000..249bdf3 --- /dev/null +++ b/mvnw.cmd @@ -0,0 +1,149 @@ +<# : batch portion +@REM ---------------------------------------------------------------------------- +@REM Licensed to the Apache Software Foundation (ASF) under one +@REM or more contributor license agreements. See the NOTICE file +@REM distributed with this work for additional information +@REM regarding copyright ownership. The ASF licenses this file +@REM to you under the Apache License, Version 2.0 (the +@REM "License"); you may not use this file except in compliance +@REM with the License. You may obtain a copy of the License at +@REM +@REM http://www.apache.org/licenses/LICENSE-2.0 +@REM +@REM Unless required by applicable law or agreed to in writing, +@REM software distributed under the License is distributed on an +@REM "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY +@REM KIND, either express or implied. See the License for the +@REM specific language governing permissions and limitations +@REM under the License. +@REM ---------------------------------------------------------------------------- + +@REM ---------------------------------------------------------------------------- +@REM Apache Maven Wrapper startup batch script, version 3.3.2 +@REM +@REM Optional ENV vars +@REM MVNW_REPOURL - repo url base for downloading maven distribution +@REM MVNW_USERNAME/MVNW_PASSWORD - user and password for downloading maven +@REM MVNW_VERBOSE - true: enable verbose log; others: silence the output +@REM ---------------------------------------------------------------------------- + +@IF "%__MVNW_ARG0_NAME__%"=="" (SET __MVNW_ARG0_NAME__=%~nx0) +@SET __MVNW_CMD__= +@SET __MVNW_ERROR__= +@SET __MVNW_PSMODULEP_SAVE=%PSModulePath% +@SET PSModulePath= +@FOR /F "usebackq tokens=1* delims==" %%A IN (`powershell -noprofile "& {$scriptDir='%~dp0'; $script='%__MVNW_ARG0_NAME__%'; icm -ScriptBlock ([Scriptblock]::Create((Get-Content -Raw '%~f0'))) -NoNewScope}"`) DO @( + IF "%%A"=="MVN_CMD" (set __MVNW_CMD__=%%B) ELSE IF "%%B"=="" (echo %%A) ELSE (echo %%A=%%B) +) +@SET PSModulePath=%__MVNW_PSMODULEP_SAVE% +@SET __MVNW_PSMODULEP_SAVE= +@SET __MVNW_ARG0_NAME__= +@SET MVNW_USERNAME= +@SET MVNW_PASSWORD= +@IF NOT "%__MVNW_CMD__%"=="" (%__MVNW_CMD__% %*) +@echo Cannot start maven from wrapper >&2 && exit /b 1 +@GOTO :EOF +: end batch / begin powershell #> + +$ErrorActionPreference = "Stop" +if ($env:MVNW_VERBOSE -eq "true") { + $VerbosePreference = "Continue" +} + +# calculate distributionUrl, requires .mvn/wrapper/maven-wrapper.properties +$distributionUrl = (Get-Content -Raw "$scriptDir/.mvn/wrapper/maven-wrapper.properties" | ConvertFrom-StringData).distributionUrl +if (!$distributionUrl) { + Write-Error "cannot read distributionUrl property in $scriptDir/.mvn/wrapper/maven-wrapper.properties" +} + +switch -wildcard -casesensitive ( $($distributionUrl -replace '^.*/','') ) { + "maven-mvnd-*" { + $USE_MVND = $true + $distributionUrl = $distributionUrl -replace '-bin\.[^.]*$',"-windows-amd64.zip" + $MVN_CMD = "mvnd.cmd" + break + } + default { + $USE_MVND = $false + $MVN_CMD = $script -replace '^mvnw','mvn' + break + } +} + +# apply MVNW_REPOURL and calculate MAVEN_HOME +# maven home pattern: ~/.m2/wrapper/dists/{apache-maven-,maven-mvnd--}/ +if ($env:MVNW_REPOURL) { + $MVNW_REPO_PATTERN = if ($USE_MVND) { "/org/apache/maven/" } else { "/maven/mvnd/" } + $distributionUrl = "$env:MVNW_REPOURL$MVNW_REPO_PATTERN$($distributionUrl -replace '^.*'+$MVNW_REPO_PATTERN,'')" +} +$distributionUrlName = $distributionUrl -replace '^.*/','' +$distributionUrlNameMain = $distributionUrlName -replace '\.[^.]*$','' -replace '-bin$','' +$MAVEN_HOME_PARENT = "$HOME/.m2/wrapper/dists/$distributionUrlNameMain" +if ($env:MAVEN_USER_HOME) { + $MAVEN_HOME_PARENT = "$env:MAVEN_USER_HOME/wrapper/dists/$distributionUrlNameMain" +} +$MAVEN_HOME_NAME = ([System.Security.Cryptography.MD5]::Create().ComputeHash([byte[]][char[]]$distributionUrl) | ForEach-Object {$_.ToString("x2")}) -join '' +$MAVEN_HOME = "$MAVEN_HOME_PARENT/$MAVEN_HOME_NAME" + +if (Test-Path -Path "$MAVEN_HOME" -PathType Container) { + Write-Verbose "found existing MAVEN_HOME at $MAVEN_HOME" + Write-Output "MVN_CMD=$MAVEN_HOME/bin/$MVN_CMD" + exit $? +} + +if (! $distributionUrlNameMain -or ($distributionUrlName -eq $distributionUrlNameMain)) { + Write-Error "distributionUrl is not valid, must end with *-bin.zip, but found $distributionUrl" +} + +# prepare tmp dir +$TMP_DOWNLOAD_DIR_HOLDER = New-TemporaryFile +$TMP_DOWNLOAD_DIR = New-Item -Itemtype Directory -Path "$TMP_DOWNLOAD_DIR_HOLDER.dir" +$TMP_DOWNLOAD_DIR_HOLDER.Delete() | Out-Null +trap { + if ($TMP_DOWNLOAD_DIR.Exists) { + try { Remove-Item $TMP_DOWNLOAD_DIR -Recurse -Force | Out-Null } + catch { Write-Warning "Cannot remove $TMP_DOWNLOAD_DIR" } + } +} + +New-Item -Itemtype Directory -Path "$MAVEN_HOME_PARENT" -Force | Out-Null + +# Download and Install Apache Maven +Write-Verbose "Couldn't find MAVEN_HOME, downloading and installing it ..." +Write-Verbose "Downloading from: $distributionUrl" +Write-Verbose "Downloading to: $TMP_DOWNLOAD_DIR/$distributionUrlName" + +$webclient = New-Object System.Net.WebClient +if ($env:MVNW_USERNAME -and $env:MVNW_PASSWORD) { + $webclient.Credentials = New-Object System.Net.NetworkCredential($env:MVNW_USERNAME, $env:MVNW_PASSWORD) +} +[Net.ServicePointManager]::SecurityProtocol = [Net.SecurityProtocolType]::Tls12 +$webclient.DownloadFile($distributionUrl, "$TMP_DOWNLOAD_DIR/$distributionUrlName") | Out-Null + +# If specified, validate the SHA-256 sum of the Maven distribution zip file +$distributionSha256Sum = (Get-Content -Raw "$scriptDir/.mvn/wrapper/maven-wrapper.properties" | ConvertFrom-StringData).distributionSha256Sum +if ($distributionSha256Sum) { + if ($USE_MVND) { + Write-Error "Checksum validation is not supported for maven-mvnd. `nPlease disable validation by removing 'distributionSha256Sum' from your maven-wrapper.properties." + } + Import-Module $PSHOME\Modules\Microsoft.PowerShell.Utility -Function Get-FileHash + if ((Get-FileHash "$TMP_DOWNLOAD_DIR/$distributionUrlName" -Algorithm SHA256).Hash.ToLower() -ne $distributionSha256Sum) { + Write-Error "Error: Failed to validate Maven distribution SHA-256, your Maven distribution might be compromised. If you updated your Maven version, you need to update the specified distributionSha256Sum property." + } +} + +# unzip and move +Expand-Archive "$TMP_DOWNLOAD_DIR/$distributionUrlName" -DestinationPath "$TMP_DOWNLOAD_DIR" | Out-Null +Rename-Item -Path "$TMP_DOWNLOAD_DIR/$distributionUrlNameMain" -NewName $MAVEN_HOME_NAME | Out-Null +try { + Move-Item -Path "$TMP_DOWNLOAD_DIR/$MAVEN_HOME_NAME" -Destination $MAVEN_HOME_PARENT | Out-Null +} catch { + if (! (Test-Path -Path "$MAVEN_HOME" -PathType Container)) { + Write-Error "fail to move MAVEN_HOME" + } +} finally { + try { Remove-Item $TMP_DOWNLOAD_DIR -Recurse -Force | Out-Null } + catch { Write-Warning "Cannot remove $TMP_DOWNLOAD_DIR" } +} + +Write-Output "MVN_CMD=$MAVEN_HOME/bin/$MVN_CMD" diff --git a/pom.xml b/pom.xml new file mode 100644 index 0000000..4aa36da --- /dev/null +++ b/pom.xml @@ -0,0 +1,125 @@ + + + 4.0.0 + + org.springframework.boot + spring-boot-starter-parent + 3.4.4 + + + com.greenorange + promotion + 0.0.1-SNAPSHOT + GreenOrange + GreenOrange + + + + + + + + + + + + + + + 17 + + + + org.springframework.boot + spring-boot-starter-web + + + org.mybatis.spring.boot + mybatis-spring-boot-starter + 3.0.4 + + + + com.mysql + mysql-connector-j + runtime + + + org.projectlombok + lombok + true + + + org.springframework.boot + spring-boot-starter-test + test + + + org.mybatis.spring.boot + mybatis-spring-boot-starter-test + 3.0.4 + test + + + + + com.github.xiaoymin + knife4j-openapi3-jakarta-spring-boot-starter + 4.4.0 + + + + + com.baomidou + mybatis-plus-spring-boot3-starter + 3.5.5 + + + + + org.apache.commons + commons-lang3 + 3.12.0 + + + + + org.springframework.boot + spring-boot-starter-aop + + + + + com.baomidou + mybatis-plus-generator + 3.5.11 + + + + + org.apache.velocity + velocity-engine-core + 2.2 + + + + + + + + org.springframework.boot + spring-boot-maven-plugin + + + + org.projectlombok + lombok + + + + + + + + diff --git a/src/main/java/com/greenorange/promotion/GreenOrangeApplication.java b/src/main/java/com/greenorange/promotion/GreenOrangeApplication.java new file mode 100644 index 0000000..955075f --- /dev/null +++ b/src/main/java/com/greenorange/promotion/GreenOrangeApplication.java @@ -0,0 +1,15 @@ +package com.greenorange.promotion; + +import org.mybatis.spring.annotation.MapperScan; +import org.springframework.boot.SpringApplication; +import org.springframework.boot.autoconfigure.SpringBootApplication; + +@SpringBootApplication +@MapperScan("com.greenorange.promotion.mapper") +public class GreenOrangeApplication { + + public static void main(String[] args) { + SpringApplication.run(GreenOrangeApplication.class, args); + } + +} diff --git a/src/main/java/com/greenorange/promotion/annotation/AuthCheck.java b/src/main/java/com/greenorange/promotion/annotation/AuthCheck.java new file mode 100644 index 0000000..e313e1b --- /dev/null +++ b/src/main/java/com/greenorange/promotion/annotation/AuthCheck.java @@ -0,0 +1,18 @@ +package com.greenorange.promotion.annotation; + +import java.lang.annotation.ElementType; +import java.lang.annotation.Retention; +import java.lang.annotation.RetentionPolicy; +import java.lang.annotation.Target; + +/** + * 权限校验 + */ +@Target(ElementType.METHOD) +@Retention(RetentionPolicy.RUNTIME) +public @interface AuthCheck { + /** + * 必须有某个角色 + */ + String mustRole() default ""; +} diff --git a/src/main/java/com/greenorange/promotion/aop/AuthInterceptor.java b/src/main/java/com/greenorange/promotion/aop/AuthInterceptor.java new file mode 100644 index 0000000..0324391 --- /dev/null +++ b/src/main/java/com/greenorange/promotion/aop/AuthInterceptor.java @@ -0,0 +1,75 @@ +//package com.greenorange.promotion.aop; +// +// +//import com.greenorange.promotion.annotation.AuthCheck; +//import com.greenorange.promotion.common.ErrorCode; +//import com.greenorange.promotion.constant.UserConstant; +//import com.greenorange.promotion.exception.BusinessException; +//import com.greenorange.promotion.model.enums.UserRoleEnum; +//import jakarta.annotation.Resource; +//import jakarta.servlet.http.HttpServletRequest; +//import org.apache.commons.lang3.StringUtils; +//import org.aspectj.lang.ProceedingJoinPoint; +//import org.aspectj.lang.annotation.Around; +//import org.aspectj.lang.annotation.Aspect; +//import org.springframework.stereotype.Component; +//import org.springframework.web.context.request.RequestAttributes; +//import org.springframework.web.context.request.RequestContextHolder; +//import org.springframework.web.context.request.ServletRequestAttributes; +// +///** +// * 权限校验AOP +// */ +//@Aspect +//@Component +//public class AuthInterceptor { +// +// @Resource +// private UserService userService; +// +// /** +// * 执行拦截 +// */ +// @Around("@annotation(authCheck)") +// public Object doInterceptor(ProceedingJoinPoint joinPoint, AuthCheck authCheck) throws Throwable { +// // 接口的权限 +// String mustRole = authCheck.mustRole(); +// RequestAttributes requestAttributes = RequestContextHolder.currentRequestAttributes(); +// HttpServletRequest request = ((ServletRequestAttributes) requestAttributes).getRequest(); +// //当前登录用户 +// User loginUser = userService.getLoginUser(request); +// //必须有该权限才通过 +// if (StringUtils.isNotBlank(mustRole)) { +// //mustUserRoleEnum是接口权限 +// UserRoleEnum mustUserRoleEnum = UserRoleEnum.getEnumByValues(mustRole); +// if(mustUserRoleEnum == null) { +// throw new BusinessException(ErrorCode.NO_AUTH_ERROR); +// } +// //用户权限 +// String userRole = loginUser.getUserRole(); +// //根据用户角色获取封装后的枚举类对象 +// UserRoleEnum userRoleEnum = UserRoleEnum.getEnumByValues(userRole); +// +// //如果被封号,直接拒绝 +// if (UserRoleEnum.BAN.equals(userRoleEnum)) { +// throw new BusinessException(ErrorCode.NO_AUTH_ERROR); +// } +// +// //如果接口需要Boss权限,则需要判断用户是否是boss管理员 +// if (UserRoleEnum.BOSS.equals(mustUserRoleEnum)) { +// if (!mustRole.equals(userRole)) { +// throw new BusinessException(ErrorCode.NO_AUTH_ERROR); +// } +// } +// //如果接口需要管理员权限,则需要判断用户是否是boss或者admin管理员 +// if (UserRoleEnum.ADMIN.equals(mustUserRoleEnum)) { +// if (!mustRole.equals(userRole) && !userRole.equals(UserConstant.BOSS_ROLE)) { +// throw new BusinessException(ErrorCode.NO_AUTH_ERROR); +// } +// } +// } +// //通过权限校验,放行 +// return joinPoint.proceed(); +// } +// +//} diff --git a/src/main/java/com/greenorange/promotion/common/BaseResponse.java b/src/main/java/com/greenorange/promotion/common/BaseResponse.java new file mode 100644 index 0000000..39c84bf --- /dev/null +++ b/src/main/java/com/greenorange/promotion/common/BaseResponse.java @@ -0,0 +1,34 @@ +package com.greenorange.promotion.common; + +import lombok.Data; + +import java.io.Serializable; + +/** + * 通用返回类 + */ + +@Data +@SuppressWarnings("all") +public class BaseResponse implements Serializable { + + private int code; + + private T data; + + private String message; + + public BaseResponse(int code, T data ,String message) { + this.code = code; + this.data = data; + this.message = message; + } + + public BaseResponse(int code , T data) { + this(code, data, ""); + } + + public BaseResponse(ErrorCode errorCode) { + this(errorCode.getCode(), null, errorCode.getMessage()); + } +} diff --git a/src/main/java/com/greenorange/promotion/common/ErrorCode.java b/src/main/java/com/greenorange/promotion/common/ErrorCode.java new file mode 100644 index 0000000..176a79e --- /dev/null +++ b/src/main/java/com/greenorange/promotion/common/ErrorCode.java @@ -0,0 +1,30 @@ +package com.greenorange.promotion.common; + +import lombok.Getter; + +@Getter +public enum ErrorCode { + + SUCCESS(1,"ok"), + PARAMS_ERROR(40000,"请求参数错误"), + NOT_LOGIN_ERROR(40100,"未登录"), + NO_AUTH_ERROR(40101, "无权限"), + NOT_FOUND_ERROR(40400,"请求数据不存在"), + FORBIDDEN_ERROR(40300,"禁止访问"), + SYSTEM_ERROR(50000,"系统内部异常"), + OPERATION_ERROR(50001,"操作失败"), + DATABASE_ERROR(50002, "数据库内部异常"), + LOGIN_ERROR(40110,"登陆状态变更"); + + /** + * 状态码 + */ + private final int code; + + private final String message; + + ErrorCode(int code,String message) { + this.code = code; + this.message = message; + } +} diff --git a/src/main/java/com/greenorange/promotion/common/PageRequest.java b/src/main/java/com/greenorange/promotion/common/PageRequest.java new file mode 100644 index 0000000..94b55b5 --- /dev/null +++ b/src/main/java/com/greenorange/promotion/common/PageRequest.java @@ -0,0 +1,36 @@ +package com.greenorange.promotion.common; + +import com.greenorange.promotion.constant.CommonConstant; +import io.swagger.v3.oas.annotations.media.Schema; +import lombok.Data; + +/** + * 分页请求 + */ +@Data +public class PageRequest { + + /** + * 当前页号 + */ + @Schema(description = "当前页码", example = "1") + private long current = 1; + + /** + * 页面大小 + */ + @Schema(description = "每页展示的记录条数", example = "10") + private long pageSize = 10; + + /** + * 排序字段 + */ + @Schema(description = "排序字段", example = "id") + private String sortField; + + /** + * 排序顺序(默认升序) + */ + @Schema(description = "排序顺序((升:ascend;降:descend", example = "ascend") + private String sortOrder = CommonConstant.SORT_ORDER_ASC; +} \ No newline at end of file diff --git a/src/main/java/com/greenorange/promotion/common/ResultUtils.java b/src/main/java/com/greenorange/promotion/common/ResultUtils.java new file mode 100644 index 0000000..dda3664 --- /dev/null +++ b/src/main/java/com/greenorange/promotion/common/ResultUtils.java @@ -0,0 +1,58 @@ +package com.greenorange.promotion.common; + +@SuppressWarnings("all") +public class ResultUtils { + + /** + * 成功 + * + * @param data 数据 + * @param 泛型 + * @return 成功信息 + */ + public static BaseResponse success(T data) { + return new BaseResponse<>(1, data , "ok"); + } + + /** + * 成功 + * + * @param data 数据 + * @param message 成功消息 + * @return 成功 + */ + public static BaseResponse success(T data, String message) { + return new BaseResponse<>(1, data, message); + } + + /** + * 失败 + * + * @param errorCode 自定义错误码 + * @return 失败信息 + */ + public static BaseResponse error(ErrorCode errorCode) { + return new BaseResponse<>(errorCode); + } + + /** + * 失败 + * + * @param code 错误码 + * @param message 消息 + * @return 失败信息 + */ + public static BaseResponse error(int code, String message) { + return new BaseResponse(code, null, message); + } + + /** + * 失败 + * + * @param errorCode 自定义错误码 + * @return 失败信息 + */ + public static BaseResponse error(ErrorCode errorCode, String message) { + return new BaseResponse(errorCode.getCode(), null, message); + } +} diff --git a/src/main/java/com/greenorange/promotion/config/CorsConfig.java b/src/main/java/com/greenorange/promotion/config/CorsConfig.java new file mode 100644 index 0000000..fe5489e --- /dev/null +++ b/src/main/java/com/greenorange/promotion/config/CorsConfig.java @@ -0,0 +1,33 @@ +package com.greenorange.promotion.config; + +import org.springframework.boot.web.servlet.FilterRegistrationBean; +import org.springframework.context.annotation.Bean; +import org.springframework.context.annotation.Configuration; +import org.springframework.core.Ordered; +import org.springframework.web.cors.CorsConfiguration; +import org.springframework.web.cors.UrlBasedCorsConfigurationSource; +import org.springframework.web.filter.CorsFilter; + +/** + * 跨域配置 + */ +@Configuration +public class CorsConfig { + + @Bean + public FilterRegistrationBean corsFilter() { + UrlBasedCorsConfigurationSource source = new UrlBasedCorsConfigurationSource(); + CorsConfiguration config = new CorsConfiguration(); + // 携带cookie + config.setAllowCredentials(true); + // 放行哪些域名(必须用 patterns,否则 * 会和 allowCredentials 冲突) + config.addAllowedOriginPattern("*"); + config.addAllowedHeader("*"); + config.addAllowedMethod("*"); + source.registerCorsConfiguration("/**", config); + FilterRegistrationBean bean = new FilterRegistrationBean<>(new CorsFilter(source)); + bean.setOrder(Ordered.HIGHEST_PRECEDENCE); + return bean; + } +} + diff --git a/src/main/java/com/greenorange/promotion/config/Knife4jConfig.java b/src/main/java/com/greenorange/promotion/config/Knife4jConfig.java new file mode 100644 index 0000000..d1feaa5 --- /dev/null +++ b/src/main/java/com/greenorange/promotion/config/Knife4jConfig.java @@ -0,0 +1,34 @@ +package com.greenorange.promotion.config; + +import io.swagger.v3.oas.models.OpenAPI; +import io.swagger.v3.oas.models.info.Info; +import io.swagger.v3.oas.models.info.License; +import org.springframework.context.annotation.Bean; +import org.springframework.context.annotation.Configuration; + +/** + * Knife4j 接口文档配置 + * 官网地址 + */ +@Configuration +public class Knife4jConfig { + + @Bean + public OpenAPI customOpenAPI() { + return new OpenAPI() + .info(new Info() + .title("青橙接口文档") + .version("1.0") + .description("青橙接口文档") + .termsOfService("http://doc.xiaominfo.com") + .license(new License().name("Apache 2.0") + .url("http://doc.xiaominfo.com"))); + } +} + + + + + + + diff --git a/src/main/java/com/greenorange/promotion/config/MyBatisPlusConfig.java b/src/main/java/com/greenorange/promotion/config/MyBatisPlusConfig.java new file mode 100644 index 0000000..dc5569c --- /dev/null +++ b/src/main/java/com/greenorange/promotion/config/MyBatisPlusConfig.java @@ -0,0 +1,28 @@ +package com.greenorange.promotion.config; + +import com.baomidou.mybatisplus.annotation.DbType; +import com.baomidou.mybatisplus.extension.plugins.MybatisPlusInterceptor; +import com.baomidou.mybatisplus.extension.plugins.inner.PaginationInnerInterceptor; +import org.springframework.context.annotation.Bean; +import org.springframework.context.annotation.Configuration; + +/** + * MyBatis Plus 配置 + */ +@Configuration +public class MyBatisPlusConfig { + + /** + * 拦截器配置 + */ + @Bean + public MybatisPlusInterceptor mybatisPlusInterceptor() { + MybatisPlusInterceptor interceptor = new MybatisPlusInterceptor(); + // 分页插件 + interceptor.addInnerInterceptor(new PaginationInnerInterceptor(DbType.MYSQL)); + return interceptor; + } + + + +} \ No newline at end of file diff --git a/src/main/java/com/greenorange/promotion/constant/CommonConstant.java b/src/main/java/com/greenorange/promotion/constant/CommonConstant.java new file mode 100644 index 0000000..bde8e23 --- /dev/null +++ b/src/main/java/com/greenorange/promotion/constant/CommonConstant.java @@ -0,0 +1,18 @@ +package com.greenorange.promotion.constant; + +/** + * 通用常量 + */ +public interface CommonConstant { + + /** + * 升序 + */ + String SORT_ORDER_ASC = "ascend"; + + /** + * 降序 + */ + String SORT_ORDER_DESC = " descend"; + +} \ No newline at end of file diff --git a/src/main/java/com/greenorange/promotion/constant/RegexConstant.java b/src/main/java/com/greenorange/promotion/constant/RegexConstant.java new file mode 100644 index 0000000..b5bd4f0 --- /dev/null +++ b/src/main/java/com/greenorange/promotion/constant/RegexConstant.java @@ -0,0 +1,34 @@ +package com.greenorange.promotion.constant; + +/** + * 正则表达式常量 + * + * @author 玄德 + */ +@SuppressWarnings("all") +public interface RegexConstant { + /** + * 手机号正则 + */ + String PHONE_REGEX = "^1[3-9]\\d{9}$"; + + /** + * 邮箱正则 + */ + String EMAIL_REGEX = "^[a-zA-Z0-9_-]+@[a-zA-Z0-9_-]+(\\.[a-zA-Z0-9_-]+)+$"; + + /** + * 18位身份证号正则 + */ + String ID_CARD_REGEX = "^[1-9]\\d{5}(18|19|([23]\\d))\\d{2}((0[1-9])|(10|11|12))(([0-2][1-9])|10|20|30|31)\\d{3}[0-9xX]$"; + + /** + * 验证码正则, 6位数字或字母 + */ + String VERIFY_CODE_REGEX = "^[a-zA-Z\\d]{6}$"; + + /** + * 密码正则。4~32位的字母、数字、下划线 + */ + String PASSWORD_REGEX = "^\\w{4,32}$"; +} diff --git a/src/main/java/com/greenorange/promotion/constant/UserConstant.java b/src/main/java/com/greenorange/promotion/constant/UserConstant.java new file mode 100644 index 0000000..881ebb0 --- /dev/null +++ b/src/main/java/com/greenorange/promotion/constant/UserConstant.java @@ -0,0 +1,40 @@ +package com.greenorange.promotion.constant; + +/** + * 用户常量 + */ +@SuppressWarnings("all") +public interface UserConstant { + + /** + * 盐值,混淆密码 + */ + String SALT = "qingcheng"; + + /** + * 用户默认头像 + */ + String USER_DEFAULT_AVATAR = ""; + + + /** + * 默认角色 + */ + String DEFAULT_ROLE = "user"; + + /** + * 管理员角色 + */ + String ADMIN_ROLE = "admin"; + + /** + * Boss + */ + String BOSS_ROLE = "boss"; + + /** + * 被封号 + */ + String BAN_ROLE = "ban"; + +} diff --git a/src/main/java/com/greenorange/promotion/controller/user/UserController.java b/src/main/java/com/greenorange/promotion/controller/user/UserController.java new file mode 100644 index 0000000..64370ab --- /dev/null +++ b/src/main/java/com/greenorange/promotion/controller/user/UserController.java @@ -0,0 +1,113 @@ +package com.greenorange.promotion.controller.user; + +import com.baomidou.mybatisplus.extension.plugins.pagination.Page; +import com.greenorange.promotion.annotation.AuthCheck; +import com.greenorange.promotion.common.BaseResponse; +import com.greenorange.promotion.common.ResultUtils; +import com.greenorange.promotion.constant.UserConstant; +import com.greenorange.promotion.model.dto.CommonBatchRequest; +import com.greenorange.promotion.model.dto.CommonRequest; +import com.greenorange.promotion.model.dto.user.UserAddRequest; +import com.greenorange.promotion.model.dto.user.UserQueryRequest; +import com.greenorange.promotion.model.dto.user.UserUpdateRequest; +import com.greenorange.promotion.model.vo.user.UserVO; +import com.greenorange.promotion.service.user.UserService; +import io.swagger.v3.oas.annotations.Operation; +import io.swagger.v3.oas.annotations.tags.Tag; +import jakarta.annotation.Resource; +import lombok.extern.slf4j.Slf4j; +import org.springframework.web.bind.annotation.PostMapping; +import org.springframework.web.bind.annotation.RequestBody; +import org.springframework.web.bind.annotation.RequestMapping; +import org.springframework.web.bind.annotation.RestController; + +/** + * 用户表 控制器 + */ +@RestController +@RequestMapping("user") +@Slf4j +@Tag(name = "用户表管理") +public class UserController { + + @Resource + private UserService userService; + + + + /** + * web端管理员添加用户 + * @param userAddRequest 用户添加请求体 + * @return 是否添加成功 + */ + @PostMapping("add") + @Operation(summary = "web端管理员添加用户", description = "参数:用户表添加请求体,权限:管理员(boss, admin),方法名:addUser") + @AuthCheck(mustRole = UserConstant.ADMIN_ROLE) + public BaseResponse addUser(@RequestBody UserAddRequest userAddRequest) { + return ResultUtils.success(userService.addUser(userAddRequest)); + } + + + /** + * web端管理员更新用户表 + * @param userUpdateRequest 用户更新请求体 + * @return 是否更新成功 + */ + @PostMapping("update") + @Operation(summary = "web端管理员更新用户", description = "参数:用户更新请求体,权限:管理员(boss, admin),方法名:updateUser") + @AuthCheck(mustRole = UserConstant.ADMIN_ROLE) + public BaseResponse updateUser(@RequestBody UserUpdateRequest userUpdateRequest) { + return ResultUtils.success(userService.updateUser(userUpdateRequest)); + } + + + /** + * web端管理员删除用户 + * @param commonRequest 用户删除请求体 + * @return 是否删除成功 + */ + @PostMapping("delete") + @Operation(summary = "web端管理员删除用户", description = "参数:用户删除请求体,权限:管理员(boss, admin),方法名:deleteUser") + @AuthCheck(mustRole = UserConstant.ADMIN_ROLE) + public BaseResponse deleteUser(@RequestBody CommonRequest commonRequest) { + return ResultUtils.success(userService.deleteUser(commonRequest)); + } + + + /** + * Web端管理员分页查看用户表 + * @param userQueryRequest 用户表查询请求体 + * @return 用户表列表 + */ + @PostMapping("page") + @Operation(summary = "Web端管理员分页查看用户表", description = "参数:用户表查询请求体,权限:管理员(boss, admin),方法名:listUserByPage") + public BaseResponse> listUserByPage(@RequestBody UserQueryRequest userQueryRequest) { + return ResultUtils.success(userService.listUserByPage(userQueryRequest)); + } + + + /** + * web端管理员根据id查询用户表 + * @param commonRequest 用户表查询请求体 + * @return 用户表信息 + */ + @PostMapping("queryById") + @Operation(summary = "web端管理员根据id查询用户表", description = "参数:用户表查询请求体,权限:管理员(boss, admin),方法名:queryUserById") + @AuthCheck(mustRole = UserConstant.ADMIN_ROLE) + public BaseResponse queryUserById(@RequestBody CommonRequest commonRequest) { + return ResultUtils.success(userService.queryUserById(commonRequest)); + } + + + /** + * web端管理员批量删除用户 + * @param commonBatchRequest id列表 + * @return 是否删除成功 + */ + @PostMapping("delBatch") + @Operation(summary = "web端管理员批量删除用户", description = "参数:id列表,权限:管理员(boss, admin),方法名:delBatchUser") + @AuthCheck(mustRole = UserConstant.ADMIN_ROLE) + public BaseResponse delBatchUser(@RequestBody CommonBatchRequest commonBatchRequest) { + return ResultUtils.success(userService.delBatchUser(commonBatchRequest)); + } +} diff --git a/src/main/java/com/greenorange/promotion/exception/BusinessException.java b/src/main/java/com/greenorange/promotion/exception/BusinessException.java new file mode 100644 index 0000000..e7d135e --- /dev/null +++ b/src/main/java/com/greenorange/promotion/exception/BusinessException.java @@ -0,0 +1,36 @@ +package com.greenorange.promotion.exception; + + +import com.greenorange.promotion.common.ErrorCode; + +/** + * 自定义异常类 + */ +@SuppressWarnings("all") +public class BusinessException extends RuntimeException { + + /** + * 错误码 + */ + private final int code; + + public BusinessException(int code, String message) { + super(message); + this.code = code; + } + + public BusinessException(ErrorCode errorCode) { + super(errorCode.getMessage()); + this.code = errorCode.getCode(); + } + + public BusinessException(ErrorCode errorCode, String message) { + super(message); + this.code = errorCode.getCode(); + } + + public int getCode() { + return code; + } + +} diff --git a/src/main/java/com/greenorange/promotion/exception/GlobalExceptionHandler.java b/src/main/java/com/greenorange/promotion/exception/GlobalExceptionHandler.java new file mode 100644 index 0000000..65a5eee --- /dev/null +++ b/src/main/java/com/greenorange/promotion/exception/GlobalExceptionHandler.java @@ -0,0 +1,50 @@ +package com.greenorange.promotion.exception; + +import com.greenorange.promotion.common.BaseResponse; +import com.greenorange.promotion.common.ErrorCode; +import com.greenorange.promotion.common.ResultUtils; +import io.swagger.v3.oas.annotations.Hidden; +import lombok.extern.slf4j.Slf4j; +import org.springframework.http.converter.HttpMessageNotReadableException; +import org.springframework.web.bind.MethodArgumentNotValidException; +import org.springframework.web.bind.annotation.ExceptionHandler; +import org.springframework.web.bind.annotation.RestControllerAdvice; + +/** + * 全局异常处理器 + */ +@Slf4j +@Hidden +@RestControllerAdvice +public class GlobalExceptionHandler { + + + // 处理参数绑定失败的异常 + @ExceptionHandler(MethodArgumentNotValidException.class) + public BaseResponse handleMethodArgumentNotValidException(MethodArgumentNotValidException e) { + log.error("MethodArgumentNotValidException", e); + return ResultUtils.error(ErrorCode.PARAMS_ERROR, "参数验证失败"); + } + + // 处理消息体解析失败的异常 + @ExceptionHandler(HttpMessageNotReadableException.class) + public BaseResponse handleHttpMessageNotReadableException(HttpMessageNotReadableException e) { + log.error("HttpMessageNotReadableException", e); + return ResultUtils.error(ErrorCode.PARAMS_ERROR, "请求参数不正确"); + } + + + @ExceptionHandler(BusinessException.class) + public BaseResponse businessExceptionHandler(BusinessException e) { + log.error("BusinessException", e); + return ResultUtils.error(e.getCode(), e.getMessage()); + } + + + @ExceptionHandler(RuntimeException.class) + public BaseResponse runtimeExceptionHandler(RuntimeException e) { + log.error("RuntimeException", e); + return ResultUtils.error(ErrorCode.SYSTEM_ERROR, "系统错误"); + } + +} diff --git a/src/main/java/com/greenorange/promotion/exception/ThrowUtils.java b/src/main/java/com/greenorange/promotion/exception/ThrowUtils.java new file mode 100644 index 0000000..f2e3f96 --- /dev/null +++ b/src/main/java/com/greenorange/promotion/exception/ThrowUtils.java @@ -0,0 +1,44 @@ +package com.greenorange.promotion.exception; + + +import com.greenorange.promotion.common.ErrorCode; + +/** + * 抛异常工具类 + */ +@SuppressWarnings("all") +public class ThrowUtils { + + /** + * 条件成立则抛异常 + * + * @param condition 条件 + * @param runtimeException 运行时异常 + */ + public static void throwIf(boolean condition, RuntimeException runtimeException) { + if (condition) { + throw runtimeException; + } + } + + /** + * 条件成立则抛异常 + * + * @param condition 条件 + * @param errorCode 自定义异常 + */ + public static void throwIf(boolean condition, ErrorCode errorCode) { + throwIf(condition, new BusinessException(errorCode)); + } + + /** + * 条件成立则抛异常 + * + * @param condition 条件 + * @param errorCode 自定义异常 + * @param message 报错信息 + */ + public static void throwIf(boolean condition, ErrorCode errorCode, String message) { + throwIf(condition, new BusinessException(errorCode, message)); + } +} diff --git a/src/main/java/com/greenorange/promotion/generator/Generator.java b/src/main/java/com/greenorange/promotion/generator/Generator.java new file mode 100644 index 0000000..4f2a931 --- /dev/null +++ b/src/main/java/com/greenorange/promotion/generator/Generator.java @@ -0,0 +1,119 @@ +package com.greenorange.promotion.generator; + +import com.baomidou.mybatisplus.generator.FastAutoGenerator; +import com.baomidou.mybatisplus.generator.config.builder.CustomFile; +import com.baomidou.mybatisplus.generator.config.rules.DateType; +import com.baomidou.mybatisplus.generator.engine.VelocityTemplateEngine; + + +import java.util.*; + +/** + * @author chenxinzhi + * @date 2025/3/30 + **/ +public class Generator { + + // 数据源配置 + private static final String DATASOURCE_URL = "jdbc:mysql://8.130.119.119:3306/qingcheng?serverTimezone=Asia/Shanghai"; + private static final String USERNAME = "qingcheng"; + private static final String PASSWORD = "qingcheng"; + + // 输出路径 + private static final String OUTPUT_PATH = System.getProperty("user.dir"); + // 根路径 + private static final String ROOT_PATH = "/src/main/java"; + + // 父包名 + private static final String PARENT_PATH = "com.greenorange.promotion"; + // 子包名 + private static final String CONTROLLER_PACKAGE = "controller.user"; + private static final String DTO_PACKAGE = "model.dto.user"; + private static final String VO_PACKAGE = "model.vo.user"; + + // 生成的文件后缀名 + private static final String DTO_ADD_REQUEST = "AddRequest.java"; + private static final String DTO_UPDATE_REQUEST = "UpdateRequest.java"; + private static final String DTO_QUERY_REQUEST = "QueryRequest.java"; + private static final String VO = "VO.java"; + + // 模版文件路径 + private static final String CONTROLLER_TEMPLATE = "/templates/controller.java"; + private static final String DTO_ADD_REQUEST_TEMPLATE = "/templates/dto/AddRequest.java.vm"; + private static final String DTO_UPDATE_REQUEST_TEMPLATE = "/templates/dto/UpdateRequest.java.vm"; + private static final String DTO_QUERY_REQUEST_TEMPLATE = "/templates/dto/QueryRequest.java.vm"; + private static final String VO_TEMPLATE = "/templates/vo/VO.java.vm"; + + + // 作者 + private static final String AUTHOR = "chenxinzhi"; + // 表注释 + private static final String TABLE_COMMENT = "用户表"; + // 实体类名 + private static final String ENTITY_NAME = "User"; + // 表名 + private static final String TABLE_NAME = "user"; + + + + + public static void main(String[] args) { + //1、配置数据源 + FastAutoGenerator.create(DATASOURCE_URL, USERNAME, PASSWORD) + //2、全局配置 + .globalConfig(builder -> { + builder.disableOpenDir() // 禁止打开输出目录 默认 true + .outputDir(OUTPUT_PATH + ROOT_PATH) // 设置输出路径:项目的 java 目录下 + .author(AUTHOR) // 设置作者名 + .dateType(DateType.TIME_PACK) // 定义生成的实体类中日期的类型 TIME_PACK=LocalDateTime;ONLY_DATE=Date; + .commentDate("yyyy/MM/dd"); // 注释日期 默认值 yyyy-MM-dd + }) + //3、包配置 + .packageConfig(builder -> { + builder.parent(PARENT_PATH) // 父包名 默认值 com.baomidou + .controller(CONTROLLER_PACKAGE); // Controller 包名 默认值 controller + }) + //4、模版配置 +// .templateConfig(builder -> builder +// .controller(CONTROLLER_TEMPLATE)) + //5、策略配置 + .strategyConfig(builder -> { + builder.addInclude(TABLE_NAME) // 设置需要生成的数据表名 + .controllerBuilder() + .enableFileOverride() // 覆盖controller + .enableRestStyle() // 开启生成 @RestController 控制器 + .formatFileName("%sController"); // 格式化 Controller 类文件名称,%s进行匹配表名,如 UserController + builder.entityBuilder().disable(); // 禁止生成 Entity + builder.serviceBuilder().disable(); // 禁止生成 Service + builder.mapperBuilder().disable(); // 禁止生成 Mapper + }) + //6、自定义配置 + .injectionConfig(consumer -> { + Map customMap = new HashMap<>(); + customMap.put("entityName", ENTITY_NAME); // 示例值 + customMap.put("entityComment", TABLE_COMMENT); // 示例值 + customMap.put("parentPackage", PARENT_PATH); + customMap.put("controllerPackage", CONTROLLER_PACKAGE); + customMap.put("dtoPackage", DTO_PACKAGE); + customMap.put("voPackage", VO_PACKAGE); + + consumer.customMap(customMap); + // DTO + List customFiles = new ArrayList<>(); + customFiles.add(new CustomFile.Builder().packageName(DTO_PACKAGE).fileName(DTO_ADD_REQUEST) + .templatePath(DTO_ADD_REQUEST_TEMPLATE).enableFileOverride().build()); + customFiles.add(new CustomFile.Builder().packageName(DTO_PACKAGE).fileName(DTO_UPDATE_REQUEST) + .templatePath(DTO_UPDATE_REQUEST_TEMPLATE).enableFileOverride().build()); + customFiles.add(new CustomFile.Builder().packageName(DTO_PACKAGE).fileName(DTO_QUERY_REQUEST) + .templatePath(DTO_QUERY_REQUEST_TEMPLATE).enableFileOverride().build()); + customFiles.add(new CustomFile.Builder().packageName(VO_PACKAGE).fileName(VO) + .templatePath(VO_TEMPLATE).enableFileOverride().build()); + consumer.customFile(customFiles); + }) + //7、模板 + .templateEngine(new VelocityTemplateEngine()) + + //8、执行 + .execute(); + } +} diff --git a/src/main/java/com/greenorange/promotion/mapper/UserMapper.java b/src/main/java/com/greenorange/promotion/mapper/UserMapper.java new file mode 100644 index 0000000..dbaa824 --- /dev/null +++ b/src/main/java/com/greenorange/promotion/mapper/UserMapper.java @@ -0,0 +1,18 @@ +package com.greenorange.promotion.mapper; + +import com.greenorange.promotion.model.entity.User; +import com.baomidou.mybatisplus.core.mapper.BaseMapper; + +/** +* @author 35880 +* @description 针对表【user(用户表)】的数据库操作Mapper +* @createDate 2025-03-30 23:03:14 +* @Entity com.greenorange.promotion.model.entity.User +*/ +public interface UserMapper extends BaseMapper { + +} + + + + diff --git a/src/main/java/com/greenorange/promotion/model/dto/CommonBatchRequest.java b/src/main/java/com/greenorange/promotion/model/dto/CommonBatchRequest.java new file mode 100644 index 0000000..576bc63 --- /dev/null +++ b/src/main/java/com/greenorange/promotion/model/dto/CommonBatchRequest.java @@ -0,0 +1,21 @@ +package com.greenorange.promotion.model.dto; + +import io.swagger.v3.oas.annotations.media.Schema; +import lombok.Data; + +import java.io.Serial; +import java.io.Serializable; +import java.util.List; + +@Data +@Schema(description = "参数:id列表", requiredProperties = {"ids"}) +public class CommonBatchRequest implements Serializable { + + + @Schema(description = "id列表", example = "[8, 9, 17]") + private List ids; + + + @Serial + private static final long serialVersionUID = 1L; +} diff --git a/src/main/java/com/greenorange/promotion/model/dto/CommonRequest.java b/src/main/java/com/greenorange/promotion/model/dto/CommonRequest.java new file mode 100644 index 0000000..996482b --- /dev/null +++ b/src/main/java/com/greenorange/promotion/model/dto/CommonRequest.java @@ -0,0 +1,21 @@ +package com.greenorange.promotion.model.dto; + +import io.swagger.v3.oas.annotations.media.Schema; +import lombok.Data; + +import java.io.Serial; +import java.io.Serializable; + +@Data +@Schema(description = "参数:id", requiredProperties = {"id"}) +public class CommonRequest implements Serializable { + + /** + * id + */ + @Schema(description = "id", example = "2") + private Long id; + + @Serial + private static final long serialVersionUID = 1L; +} diff --git a/src/main/java/com/greenorange/promotion/model/dto/CommonStringRequest.java b/src/main/java/com/greenorange/promotion/model/dto/CommonStringRequest.java new file mode 100644 index 0000000..6ed2869 --- /dev/null +++ b/src/main/java/com/greenorange/promotion/model/dto/CommonStringRequest.java @@ -0,0 +1,23 @@ +package com.greenorange.promotion.model.dto; + +import io.swagger.v3.oas.annotations.media.Schema; +import lombok.Data; + +import java.io.Serial; +import java.io.Serializable; + +@Data +@Schema(description = "参数:String", requiredProperties = {"templateString"}) +public class CommonStringRequest implements Serializable { + + + /** + * 字符串 + */ + @Schema(description = "String", example = "templateString") + private String templateString; + + + @Serial + private static final long serialVersionUID = 1L; +} diff --git a/src/main/java/com/greenorange/promotion/model/dto/user/UserAddRequest.java b/src/main/java/com/greenorange/promotion/model/dto/user/UserAddRequest.java new file mode 100644 index 0000000..f419b66 --- /dev/null +++ b/src/main/java/com/greenorange/promotion/model/dto/user/UserAddRequest.java @@ -0,0 +1,62 @@ +package com.greenorange.promotion.model.dto.user; + +import io.swagger.v3.oas.annotations.media.Schema; +import lombok.Data; + +import java.io.Serial; +import java.io.Serializable; + +/** + * 用户表添加请求体 + */ +@Data +@Schema(description = "用户表添加请求体", requiredProperties = + {"userAccount", "userPassword", "miniOpenId", "userName", "userAvatar", "points", "userRole"}) +public class UserAddRequest implements Serializable { + + /** + * 账号 + */ + @Schema(description = "账号", example = "qingcheng") + private String userAccount; + + /** + * 密码 + */ + @Schema(description = "密码", example = "123456") + private String userPassword; + + /** + * 小程序openId + */ + @Schema(description = "小程序openId", example = "324324") + private String miniOpenId; + + /** + * 用户昵称 + */ + @Schema(description = "用户昵称", example = "Jack") + private String userName; + + /** + * 用户头像 + */ + @Schema(description = "用户头像", example = "https://www.com") + private String userAvatar; + + /** + * 积分 + */ + @Schema(description = "积分", example = "1200") + private Integer points; + + /** + * 用户角色 + */ + @Schema(description = "用户角色", example = "user") + private String userRole; + + + @Serial + private static final long serialVersionUID = 1L; +} diff --git a/src/main/java/com/greenorange/promotion/model/dto/user/UserQueryRequest.java b/src/main/java/com/greenorange/promotion/model/dto/user/UserQueryRequest.java new file mode 100644 index 0000000..7a2ae19 --- /dev/null +++ b/src/main/java/com/greenorange/promotion/model/dto/user/UserQueryRequest.java @@ -0,0 +1,38 @@ +package com.greenorange.promotion.model.dto.user; + +import io.swagger.v3.oas.annotations.media.Schema; +import lombok.Data; +import java.io.Serial; +import java.io.Serializable; +import com.greenorange.promotion.common.PageRequest; + +/** + * 用户表查询请求体,继承自分页请求 PageRequest + */ +@Data +@Schema(description = "用户表查询请求体", requiredProperties = {"current", "pageSize"}) +public class UserQueryRequest extends PageRequest implements Serializable { + + /** + * 用户id + */ + @Schema(description = "用户id", example = "1") + private Long id; + + /** + * 用户昵称 + */ + @Schema(description = "用户昵称", example = "Jack") + private String userName; + + + /** + * 用户角色 + */ + @Schema(description = "用户角色", example = "user") + private String userRole; + + + @Serial + private static final long serialVersionUID = 1L; +} diff --git a/src/main/java/com/greenorange/promotion/model/dto/user/UserUpdateRequest.java b/src/main/java/com/greenorange/promotion/model/dto/user/UserUpdateRequest.java new file mode 100644 index 0000000..6aa9553 --- /dev/null +++ b/src/main/java/com/greenorange/promotion/model/dto/user/UserUpdateRequest.java @@ -0,0 +1,68 @@ +package com.greenorange.promotion.model.dto.user; + +import io.swagger.v3.oas.annotations.media.Schema; +import lombok.Data; + +import java.io.Serial; +import java.io.Serializable; + +/** + * 用户表更新请求体 + */ +@Data +@Schema(description = "用户表更新请求体", requiredProperties = + {"id", "userAccount", "userPassword", "miniOpenId", "userName", "userAvatar", "points", "userRole"}) +public class UserUpdateRequest implements Serializable { + + /** + * 用户id + */ + @Schema(description = "用户id", example = "1") + private Long id; + + /** + * 账号 + */ + @Schema(description = "账号", example = "qingcheng") + private String userAccount; + + /** + * 密码 + */ + @Schema(description = "密码", example = "123456") + private String userPassword; + + /** + * 小程序openId + */ + @Schema(description = "小程序openId", example = "fdsafdfasd") + private String miniOpenId; + + /** + * 用户昵称 + */ + @Schema(description = "用户昵称", example = "Jack") + private String userName; + + /** + * 用户头像 + */ + @Schema(description = "用户头像", example = "https://www.com") + private String userAvatar; + + /** + * 积分 + */ + @Schema(description = "积分", example = "12000") + private Integer points; + + /** + * 用户角色 + */ + @Schema(description = "用户角色", example = "admin") + private String userRole; + + + @Serial + private static final long serialVersionUID = 1L; +} diff --git a/src/main/java/com/greenorange/promotion/model/entity/User.java b/src/main/java/com/greenorange/promotion/model/entity/User.java new file mode 100644 index 0000000..f096f16 --- /dev/null +++ b/src/main/java/com/greenorange/promotion/model/entity/User.java @@ -0,0 +1,76 @@ +package com.greenorange.promotion.model.entity; + +import com.baomidou.mybatisplus.annotation.IdType; +import com.baomidou.mybatisplus.annotation.TableField; +import com.baomidou.mybatisplus.annotation.TableId; +import com.baomidou.mybatisplus.annotation.TableName; +import java.io.Serializable; +import java.util.Date; +import lombok.Data; + +/** + * 用户表 + * @TableName user + */ +@TableName(value ="user") +@Data +public class User implements Serializable { + /** + * id + */ + @TableId(type = IdType.AUTO) + private Long id; + + /** + * 账号 + */ + private String userAccount; + + /** + * 密码 + */ + private String userPassword; + + /** + * 小程序openId + */ + private String miniOpenId; + + /** + * 用户昵称 + */ + private String userName; + + /** + * 用户头像 + */ + private String userAvatar; + + /** + * 积分 + */ + private Integer points; + + /** + * 用户角色 + */ + private String userRole; + + /** + * 创建时间 + */ + private Date createTime; + + /** + * 更新时间 + */ + private Date updateTime; + + /** + * 是否删除 + */ + private Integer isDelete; + + @TableField(exist = false) + private static final long serialVersionUID = 1L; +} \ No newline at end of file diff --git a/src/main/java/com/greenorange/promotion/model/enums/UserRoleEnum.java b/src/main/java/com/greenorange/promotion/model/enums/UserRoleEnum.java new file mode 100644 index 0000000..68cc42e --- /dev/null +++ b/src/main/java/com/greenorange/promotion/model/enums/UserRoleEnum.java @@ -0,0 +1,52 @@ +package com.greenorange.promotion.model.enums; + +import lombok.Getter; +import org.springframework.util.ObjectUtils; + +import java.util.Arrays; +import java.util.List; +import java.util.stream.Collectors; + +/** + * 用户角色枚举 + */ +@Getter +public enum UserRoleEnum { + + USER("用户", "user"), + ADMIN("管理员", "admin"), + BOSS("Boss", "boss"), + BAN("被封号", "ban"); + + + private final String text; + + private final String value; + + UserRoleEnum(String text, String value) { + this.text = text; + this.value = value; + } + + /** + * 获取值列表 + */ + public static List getValues() { + return Arrays.stream(values()).map(item -> item.value).collect(Collectors.toList()); + } + + /** + * 获取值列表 + */ + public static UserRoleEnum getEnumByValues(String value) { + if (ObjectUtils.isEmpty(value)) { + return null; + } + for (UserRoleEnum anEnum : UserRoleEnum.values()) { + if(anEnum.value.equals(value)) { + return anEnum; + } + } + return null; + } +} diff --git a/src/main/java/com/greenorange/promotion/model/vo/user/UserVO.java b/src/main/java/com/greenorange/promotion/model/vo/user/UserVO.java new file mode 100644 index 0000000..bc76d5c --- /dev/null +++ b/src/main/java/com/greenorange/promotion/model/vo/user/UserVO.java @@ -0,0 +1,67 @@ +package com.greenorange.promotion.model.vo.user; + +import io.swagger.v3.oas.annotations.media.Schema; +import lombok.Data; + +import java.io.Serial; +import java.io.Serializable; + +/** + * 用户表 视图对象 + */ +@Data +@Schema(description = "用户表 视图对象") +public class UserVO implements Serializable { + + /** + * 用户id + */ + @Schema(description = "用户id", example = "1") + private Long id; + + /** + * 账号 + */ + @Schema(description = "账号", example = "${field.example}") + private String userAccount; + + /** + * 密码 + */ + @Schema(description = "密码", example = "${field.example}") + private String userPassword; + + /** + * 小程序openId + */ + @Schema(description = "小程序openId", example = "${field.example}") + private String miniOpenId; + + /** + * 用户昵称 + */ + @Schema(description = "用户昵称", example = "${field.example}") + private String userName; + + /** + * 用户头像 + */ + @Schema(description = "用户头像", example = "${field.example}") + private String userAvatar; + + /** + * 积分 + */ + @Schema(description = "积分", example = "${field.example}") + private Integer points; + + /** + * 用户角色 + */ + @Schema(description = "用户角色", example = "${field.example}") + private String userRole; + + + @Serial + private static final long serialVersionUID = 1L; +} diff --git a/src/main/java/com/greenorange/promotion/service/common/CommonService.java b/src/main/java/com/greenorange/promotion/service/common/CommonService.java new file mode 100644 index 0000000..aaf4f06 --- /dev/null +++ b/src/main/java/com/greenorange/promotion/service/common/CommonService.java @@ -0,0 +1,96 @@ +package com.greenorange.promotion.service.common; + +import com.baomidou.mybatisplus.core.conditions.query.QueryWrapper; +import com.baomidou.mybatisplus.extension.service.IService; + +import java.util.List; +import java.util.Map; +import java.util.function.Function; + +public interface CommonService { + + + + /** + * 从源集合中提取指定属性并作为查询条件查询目标集合 + * @param sourceList 源集合(List),包含需要提取属性的元素 + * @param service 执行查询的 Service + * @param getField 提取源集合中每个元素的属性值的函数 + * @param targetField 目标集合中查询字段的字段名 + * @param 源集合元素类型 + * @param 目标集合中元素类型 + * @return 查询结果集合 + */ + List findByFieldInTargetField(List sourceList, IService service, Function getField, String targetField); + + + + + /** + * 根据指定字段名和值,使用给定的服务对象构建查询条件。 + * @param 实体类类型 + * @param fieldName 查询字段的名称 + * @param fieldValue 查询字段的值 + * @param service 用于执行查询的服务层对象 + * + * @return 返回构建的 QueryWrapper 对象,用于进一步查询或修改 + */ + QueryWrapper buildQueryWrapperByField(String fieldName, Object fieldValue, IService service); + + + + + /** + * 根据指定字段名和值,使用给定的服务对象查询对应的实体类列表。 + * @param 实体类类型 + * @param fieldName 查询字段的名称 + * @param fieldValue 查询字段的值 + * @param service 用于执行查询的服务层对象 + * @return 返回符合条件的实体类列表(`List`)。如果没有符合条件的记录,返回空列表。 + */ + List findByFieldEqTargetField(String fieldName, Object fieldValue, IService service); + + + + + /** + * 根据多个字段和对应的值进行查询。 + * 该方法可以动态构建查询条件并执行查询。 + * + * @param fieldConditions 查询条件的字段和值,使用Map存储 + * @param service 执行查询操作的服务对象(通常是MyBatis-Plus的 IService) + * @return 返回查询结果的列表 + */ + List findByFieldEqTargetFields(Map fieldConditions, IService service); + + + + + + /** + * 将一个类型的 List 转换为另一个类型的 List。 + * @param sourceList 源列表,类型为 T + * @param targetClass 目标类型的 Class 对象 + * @param 源类型 + * @param 目标类型 + * @return 转换后的目标类型列表 + */ + List convertList(List sourceList, Class targetClass); + + + + + + /** + * 复制属性并返回新的目标对象 + * + * @param source 源对象 + * @param targetClass 目标对象的类型 + * @param 源对象类型 + * @param 目标对象类型 + * @return 目标对象 + */ + T copyProperties(S source, Class targetClass); + + +} diff --git a/src/main/java/com/greenorange/promotion/service/common/impl/CommonServiceImpl.java b/src/main/java/com/greenorange/promotion/service/common/impl/CommonServiceImpl.java new file mode 100644 index 0000000..1554694 --- /dev/null +++ b/src/main/java/com/greenorange/promotion/service/common/impl/CommonServiceImpl.java @@ -0,0 +1,179 @@ +package com.greenorange.promotion.service.common.impl; + +import com.baomidou.mybatisplus.core.conditions.query.QueryWrapper; +import com.baomidou.mybatisplus.extension.service.IService; +import com.greenorange.promotion.service.common.CommonService; +import org.springframework.beans.BeanUtils; +import org.springframework.stereotype.Service; + +import java.util.List; +import java.util.Map; +import java.util.function.Function; +import java.util.stream.Collectors; + +@Service +public class CommonServiceImpl implements CommonService { + + + + + /** + * 从源集合中提取指定属性并作为查询条件查询目标集合 + * @param sourceList 源集合(List),包含需要提取属性的元素 + * @param service 执行查询的 Service + * @param getField 提取源集合中每个元素的属性值的函数 + * @param targetField 目标集合中查询字段的字段名 + * @param 源集合元素类型 + * @param 目标集合中元素类型 + * @return 查询结果集合 + */ + public List findByFieldInTargetField(List sourceList, IService service, Function getField, String targetField) { + // 提取源集合中每个元素的字段值 + List fieldValues = sourceList.stream() + .map(getField) // 提取每个元素的字段值 + .collect(Collectors.toList()); + + // 如果 fieldValues 为空,直接返回空集合 + if (fieldValues.isEmpty()) { + return List.of(); // 返回空集合 + } + + // 创建查询条件 + QueryWrapper queryWrapper = new QueryWrapper<>(); + queryWrapper.in(targetField, fieldValues); // 根据字段值进行查询 + + // 执行查询并返回结果 + return service.list(queryWrapper); + } + + + + /** + * 根据指定字段名和值,使用给定的服务对象构建查询条件。 + * @param 实体类类型 + * @param fieldName 查询字段的名称 + * @param fieldValue 查询字段的值 + * @param service 用于执行查询的服务层对象 + * + * @return 返回构建的 QueryWrapper 对象,用于进一步查询或修改 + */ + @Override + public QueryWrapper buildQueryWrapperByField(String fieldName, Object fieldValue, IService service) { + // 创建 QueryWrapper,动态构建查询条件 + QueryWrapper queryWrapper = new QueryWrapper<>(); + queryWrapper.eq(fieldName, fieldValue); // 设置等值查询条件 + + // 返回 QueryWrapper,供外部使用 + return queryWrapper; + } + + + + + + /** + * 根据指定字段名和值,使用给定的服务对象查询对应的实体类列表。 + * @param 实体类类型 + * @param fieldName 查询字段的名称 + * @param fieldValue 查询字段的值 + * @param service 用于执行查询的服务层对象 + * + * @return 返回符合条件的实体类列表(`List`)。如果没有符合条件的记录,返回空列表。 + */ + @Override + public List findByFieldEqTargetField(String fieldName, Object fieldValue, IService service) { + // 创建 QueryWrapper,动态构建查询条件 + QueryWrapper queryWrapper = new QueryWrapper<>(); + queryWrapper.eq(fieldName, fieldValue); // 设置等值查询条件 + + // 执行查询 + return service.list(queryWrapper); + } + + + + + /** + * 根据多个字段和对应的值进行查询。 + * 该方法根据输入的查询条件,动态构建查询,并执行数据库查询。 + * @param fieldConditions 查询条件的字段和值,使用Map存储 + * @param service 执行查询操作的服务对象(通常是MyBatis-Plus的 IService) + * @return 返回查询结果的列表 + */ + @Override + public List findByFieldEqTargetFields(Map fieldConditions, IService service) { + // 创建 QueryWrapper,动态构建查询条件 + QueryWrapper queryWrapper = new QueryWrapper<>(); + + // 遍历传入的条件Map,逐个设置查询条件 + for (Map.Entry entry : fieldConditions.entrySet()) { + // 设置等值查询条件 + queryWrapper.eq(entry.getKey(), entry.getValue()); + } + + // 执行查询,并返回结果 + return service.list(queryWrapper); + } + + + + + /** + * 将源列表 List 转换为目标类型的列表 List + * @param sourceList 源列表,包含 T 类型的对象 + * @param targetClass 目标类型的 Class 对象 + * @param 源类型 + * @param 目标类型 + * @return 转换后的目标类型的 List + */ + @Override + public List convertList(List sourceList, Class targetClass) { + // 使用 Stream 流式操作来遍历源列表,并将每个元素转换为目标类型 + return sourceList.stream() + .map(source -> { + try { + // 通过反射创建目标类型的实例 + R target = targetClass.getDeclaredConstructor().newInstance(); + // 使用 BeanUtils.copyProperties 复制属性 + BeanUtils.copyProperties(source, target); + return target; + } catch (Exception e) { + // 捕获异常并抛出运行时异常 + throw new RuntimeException("Error copying properties", e); + } + }) + .collect(Collectors.toList()); // 将转换后的对象收集到目标类型的列表中 + + } + + + + + + /** + * 复制属性并返回新的目标对象 + * + * @param source 源对象 + * @param targetClass 目标对象的类型 + * @param 源对象类型 + * @param 目标对象类型 + * @return 目标对象 + */ + public T copyProperties(S source, Class targetClass) { + try { + if (source == null || targetClass == null) { + return null; + } + // 创建目标对象 + T target = targetClass.getDeclaredConstructor().newInstance(); + // 复制属性 + BeanUtils.copyProperties(source, target); + return target; + } catch (Exception e) { + e.printStackTrace(); + return null; + } + } + + +} diff --git a/src/main/java/com/greenorange/promotion/service/user/UserService.java b/src/main/java/com/greenorange/promotion/service/user/UserService.java new file mode 100644 index 0000000..6d275fe --- /dev/null +++ b/src/main/java/com/greenorange/promotion/service/user/UserService.java @@ -0,0 +1,68 @@ +package com.greenorange.promotion.service.user; + +import com.baomidou.mybatisplus.core.conditions.query.QueryWrapper; +import com.baomidou.mybatisplus.extension.plugins.pagination.Page; +import com.greenorange.promotion.model.dto.CommonBatchRequest; +import com.greenorange.promotion.model.dto.CommonRequest; +import com.greenorange.promotion.model.dto.user.UserAddRequest; +import com.greenorange.promotion.model.dto.user.UserQueryRequest; +import com.greenorange.promotion.model.dto.user.UserUpdateRequest; +import com.greenorange.promotion.model.entity.User; +import com.baomidou.mybatisplus.extension.service.IService; +import com.greenorange.promotion.model.vo.user.UserVO; + +import java.util.List; + +/** +* @author 35880 +* @description 针对表【user(用户表)】的数据库操作Service +* @createDate 2025-03-30 23:03:14 +*/ +public interface UserService extends IService { + + + /** + * 获取查询条件 + */ + QueryWrapper getQueryWrapper(UserQueryRequest userQueryRequest); + + + /** + * 分页查询用户 + */ + Page listUserByPage(UserQueryRequest userQueryRequest); + + + /** + * 根据id查询用户 + */ + UserVO queryUserById(CommonRequest commonRequest); + + + /** + * 添加用户 + */ + Long addUser(UserAddRequest userAddRequest); + + + /** + * 更新用户 + */ + boolean updateUser(UserUpdateRequest userUpdateRequest); + + + /** + * 删除用户 + */ + boolean deleteUser(CommonRequest commonRequest); + + + /** + * 批量删除用户 + */ + boolean delBatchUser(CommonBatchRequest commonBatchRequest); + + + + +} diff --git a/src/main/java/com/greenorange/promotion/service/user/impl/UserServiceImpl.java b/src/main/java/com/greenorange/promotion/service/user/impl/UserServiceImpl.java new file mode 100644 index 0000000..8998e1d --- /dev/null +++ b/src/main/java/com/greenorange/promotion/service/user/impl/UserServiceImpl.java @@ -0,0 +1,156 @@ +package com.greenorange.promotion.service.user.impl; + +import com.baomidou.mybatisplus.core.conditions.query.QueryWrapper; +import com.baomidou.mybatisplus.core.toolkit.CollectionUtils; +import com.baomidou.mybatisplus.extension.plugins.pagination.Page; +import com.baomidou.mybatisplus.extension.service.impl.ServiceImpl; +import com.greenorange.promotion.common.ErrorCode; +import com.greenorange.promotion.common.ResultUtils; +import com.greenorange.promotion.constant.CommonConstant; +import com.greenorange.promotion.exception.BusinessException; +import com.greenorange.promotion.exception.ThrowUtils; +import com.greenorange.promotion.model.dto.CommonBatchRequest; +import com.greenorange.promotion.model.dto.CommonRequest; +import com.greenorange.promotion.model.dto.user.UserAddRequest; +import com.greenorange.promotion.model.dto.user.UserQueryRequest; +import com.greenorange.promotion.model.dto.user.UserUpdateRequest; +import com.greenorange.promotion.model.entity.User; +import com.greenorange.promotion.model.vo.user.UserVO; +import com.greenorange.promotion.service.common.CommonService; +import com.greenorange.promotion.service.user.UserService; +import com.greenorange.promotion.mapper.UserMapper; +import com.greenorange.promotion.utils.SqlUtils; +import jakarta.annotation.Resource; +import org.apache.commons.lang3.StringUtils; +import org.springframework.stereotype.Service; + +import java.util.List; + +/** +* @author 35880 +* @description 针对表【user(用户表)】的数据库操作Service实现 +* @createDate 2025-03-30 23:03:14 +*/ +@Service +public class UserServiceImpl extends ServiceImpl implements UserService{ + + + @Resource + private CommonService commonService; + + /** + * 获取查询条件 + */ + @Override + public QueryWrapper getQueryWrapper(UserQueryRequest userQueryRequest) { + Long id = userQueryRequest.getId(); + String userName = userQueryRequest.getUserName(); + String userRole = userQueryRequest.getUserRole(); + String sortField = userQueryRequest.getSortField(); + String sortOrder = userQueryRequest.getSortOrder(); + + QueryWrapper queryWrapper = new QueryWrapper<>(); + queryWrapper.eq(id != null, "id", id); + queryWrapper.like(StringUtils.isNotBlank(userName), "userName", userName); + queryWrapper.eq(StringUtils.isNotBlank(userRole), "userRole", userRole); + queryWrapper.orderBy(SqlUtils.validSortField(sortField), sortOrder.equals(CommonConstant.SORT_ORDER_ASC), + sortField); + return queryWrapper; + } + + + + /** + * 分页查询用户 + */ + @Override + public Page listUserByPage(UserQueryRequest userQueryRequest) { + if (userQueryRequest == null) throw new BusinessException(ErrorCode.PARAMS_ERROR); + long current = userQueryRequest.getCurrent(); + long pageSize = userQueryRequest.getPageSize(); + QueryWrapper queryWrapper = this.getQueryWrapper(userQueryRequest); + Page page = this.page(new Page<>(current, pageSize), queryWrapper); + List userList = page.getRecords(); + List userVOList = commonService.convertList(userList, UserVO.class); + Page voPage = new Page<>(); + voPage.setRecords(userVOList); + voPage.setPages(page.getPages()); + voPage.setCurrent(page.getCurrent()); + voPage.setTotal(page.getTotal()); + voPage.setSize(page.getSize()); + return voPage; + } + + /** + * 根据id查询用户 + */ + @Override + public UserVO queryUserById(CommonRequest commonRequest) { + if (commonRequest == null || commonRequest.getId() <= 0) { + throw new BusinessException(ErrorCode.PARAMS_ERROR); + } + User user = this.getById(commonRequest.getId()); + ThrowUtils.throwIf(user == null, ErrorCode.OPERATION_ERROR, "用户不存在"); + return commonService.copyProperties(user, UserVO.class); + } + + /** + * 添加用户 + */ + @Override + public Long addUser(UserAddRequest userAddRequest) { + if (userAddRequest == null) { + throw new BusinessException(ErrorCode.PARAMS_ERROR); + } + User user = commonService.copyProperties(userAddRequest, User.class); + boolean result = this.save(user); + ThrowUtils.throwIf(!result, ErrorCode.OPERATION_ERROR, "用户添加失败"); + return user.getId(); + } + + /** + * 更新用户 + */ + @Override + public boolean updateUser(UserUpdateRequest userUpdateRequest) { + if (userUpdateRequest == null || userUpdateRequest.getId() <= 0) { + throw new BusinessException(ErrorCode.PARAMS_ERROR); + } + User user = commonService.copyProperties(userUpdateRequest, User.class); + boolean result = this.updateById(user); + ThrowUtils.throwIf(!result, ErrorCode.OPERATION_ERROR, "用户更新失败"); + return true; + } + + /** + * 删除用户 + */ + @Override + public boolean deleteUser(CommonRequest commonRequest) { + if (commonRequest == null || commonRequest.getId() <= 0) { + throw new BusinessException(ErrorCode.PARAMS_ERROR); + } + Long id = commonRequest.getId(); + boolean result = this.removeById(id); + ThrowUtils.throwIf(!result, ErrorCode.OPERATION_ERROR, "用户删除失败"); + return true; + } + + /** + * 批量删除用户 + */ + @Override + public boolean delBatchUser(CommonBatchRequest commonBatchRequest) { + if (commonBatchRequest == null || CollectionUtils.isEmpty(commonBatchRequest.getIds())) { + throw new BusinessException(ErrorCode.PARAMS_ERROR); + } + List ids = commonBatchRequest.getIds(); + boolean result = this.removeByIds(ids); + ThrowUtils.throwIf(!result, ErrorCode.OPERATION_ERROR, "用户批量删除失败"); + return true; + } +} + + + + diff --git a/src/main/java/com/greenorange/promotion/utils/RegexUtils.java b/src/main/java/com/greenorange/promotion/utils/RegexUtils.java new file mode 100644 index 0000000..6113a28 --- /dev/null +++ b/src/main/java/com/greenorange/promotion/utils/RegexUtils.java @@ -0,0 +1,68 @@ +package com.greenorange.promotion.utils; + +import org.apache.commons.lang3.StringUtils; + +import static com.greenorange.promotion.constant.RegexConstant.*; + + +public class RegexUtils { + + /** + * 是否是无效手机格式 + * + * @param phone 要校验的手机号 + * @return true:符合,false:不符合 + */ + public static boolean isPhoneInvalid(String phone) { + return mismatch(phone, PHONE_REGEX); + } + + /** + * 是否是无效邮箱格式 + * + * @param email 要校验的邮箱 + * @return true:符合,false:不符合 + */ + public static boolean isEmailInvalid(String email) { + return mismatch(email, EMAIL_REGEX); + } + + /** + * 是否是无效18位身份证格式 + * + * @param idCard 要校验的身份证号码 + * @return true:符合,false:不符合 + */ + public static boolean isIdCardInvalid(String idCard) { + return mismatch(idCard, ID_CARD_REGEX); + } + + /** + * 是否是无效验证码格式 + * + * @param code 要校验的验证码 + * @return true:符合,false:不符合 + */ + public static boolean isCodeInvalid(String code) { + return mismatch(code, VERIFY_CODE_REGEX); + } + + // 校验是否不符合正则格式 + private static boolean mismatch(String str, String regex) { + if (StringUtils.isBlank(str)) { + return true; + } + return !str.matches(regex); + } + + + /** + * 将除了点号以外的所有特殊字符替换都为下划线 + * @param input + * @return + */ + public static String encodeUrl(String input) { return input.replaceAll("[^\\w\\u4e00-\\u9fa5.]", "_"); } + + + +} diff --git a/src/main/java/com/greenorange/promotion/utils/SqlUtils.java b/src/main/java/com/greenorange/promotion/utils/SqlUtils.java new file mode 100644 index 0000000..eb0f437 --- /dev/null +++ b/src/main/java/com/greenorange/promotion/utils/SqlUtils.java @@ -0,0 +1,22 @@ +package com.greenorange.promotion.utils; + +import org.apache.commons.lang3.StringUtils; + +/** + * SQL工具 + */ +@SuppressWarnings("all") +public class SqlUtils { + /** + * 校验排序字段是否合法(防止 SQL 注入) + * + * @param sortField + * @return + */ + public static boolean validSortField(String sortField) { + if (StringUtils.isBlank(sortField)) { + return false; + } + return !StringUtils.containsAny(sortField, "=", "(", ")", " "); + } +} diff --git a/src/main/resources/application.yml b/src/main/resources/application.yml new file mode 100644 index 0000000..40063c0 --- /dev/null +++ b/src/main/resources/application.yml @@ -0,0 +1,59 @@ +spring: + datasource: + + + + driver-class-name: com.mysql.cj.jdbc.Driver + url: jdbc:mysql://8.130.119.119:3306/qingcheng?serverTimezone=Asia/Shanghai + username: qingcheng + password: qingcheng + hikari: + maximum-pool-size: 20 + max-lifetime: 120000 + + + + + data: + redis: + port: 6379 + host: 123.249.108.160 + database: 0 + password: yuanteng + servlet: + multipart: + max-file-size: 20MB + max-request-size: 20MB + + +springdoc: + default-flat-param-object: true + + + +server: + port: 3456 + + servlet: + session: + timeout: 720h + cookie: + max-age: 2592000 + +mybatis-plus: + mapper-locations: classpath:mapper/*.xml + configuration: + map-underscore-to-camel-case: false + # log-impl: org.apache.ibatis.logging.nologging.NoLoggingImpl + log-impl: org.apache.ibatis.logging.stdout.StdOutImpl + global-config: + db-config: + logic-delete-field: isDelete #全局逻辑删除的实体字段名 + logic-delete-value: 1 #逻辑已删除值(默认为1) + logic-not-delete-value: 0 #逻辑未删除值(默认为0) + type-handlers-package: com.cultural.heritage.handler + + + +knife4j: + enable: true \ No newline at end of file diff --git a/src/main/resources/lib/2020idea-mybatis_log_plugin.jar b/src/main/resources/lib/2020idea-mybatis_log_plugin.jar new file mode 100644 index 0000000000000000000000000000000000000000..5bf63c6063496e6d508f461debb24cd6c565e913 GIT binary patch literal 35107 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 literal 0 HcmV?d00001 diff --git a/src/main/resources/mapper/UserMapper.xml b/src/main/resources/mapper/UserMapper.xml new file mode 100644 index 0000000..bccc170 --- /dev/null +++ b/src/main/resources/mapper/UserMapper.xml @@ -0,0 +1,27 @@ + + + + + + + + + + + + + + + + + + + + id,userAccount,userPassword, + miniOpenId,userName,userAvatar, + points,userRole,createTime, + updateTime,isDelete + + diff --git a/src/main/resources/templates/controller.java.vm b/src/main/resources/templates/controller.java.vm new file mode 100644 index 0000000..6d17f5a --- /dev/null +++ b/src/main/resources/templates/controller.java.vm @@ -0,0 +1,134 @@ +package ${parentPackage}.${controllerPackage}; + +import java.util.List; + +/** + * ${entityComment} 控制器 + */ +@RestController +@RequestMapping("${entityName}") +@Slf4j +@Tag(name = "${entityComment}管理") +public class ${entityName}Controller { + + @Resource + private ${entityName}Service ${entityName}Service; + + @Resource + private CommonService commonService; + + /** + * web端管理员添加${entityComment} + * @param ${entityName}AddRequest ${entityComment}添加请求体 + * @return 是否添加成功 + */ + @PostMapping("add") + @Operation(summary = "web端管理员添加${entityComment}", description = "参数:${entityComment}添加请求体,权限:管理员(boss, admin),方法名:add${entityName}") + @AuthCheck(mustRole = UserConstant.ADMIN_ROLE) + public BaseResponse add${entityName}(@RequestBody ${entityName}AddRequest ${entityName}AddRequest) { + if (${entityName}AddRequest == null) { + throw new BusinessException(ErrorCode.PARAMS_ERROR); + } + ${entityName} ${entityName} = new ${entityName}(); + BeanUtils.copyProperties(${entityName}AddRequest, ${entityName}); + boolean result = ${entityName}Service.save(${entityName}); + ThrowUtils.throwIf(!result, ErrorCode.OPERATION_ERROR, "${entityComment}添加失败"); + return ResultUtils.success(true); + } + + /** + * web端管理员更新${entityComment} + * @param ${entityName}UpdateRequest ${entityComment}更新请求体 + * @return 是否更新成功 + */ + @PostMapping("update") + @Operation(summary = "web端管理员更新${entityComment}", description = "参数:${entityComment}更新请求体,权限:管理员(boss, admin),方法名:update${entityName}") + @AuthCheck(mustRole = UserConstant.ADMIN_ROLE) + public BaseResponse update${entityName}(@RequestBody ${entityName}UpdateRequest ${entityName}UpdateRequest) { + if (${entityName}UpdateRequest == null || ${entityName}UpdateRequest.getId() <= 0) { + throw new BusinessException(ErrorCode.PARAMS_ERROR); + } + ${entityName} ${entityName} = new ${entityName}(); + BeanUtils.copyProperties(${entityName}UpdateRequest, ${entityName}); + boolean result = ${entityName}Service.updateById(${entityName}); + ThrowUtils.throwIf(!result, ErrorCode.OPERATION_ERROR, "${entityComment}更新失败"); + return ResultUtils.success(true); + } + + /** + * web端管理员删除${entityComment} + * @param commonRequest ${entityComment}删除请求体 + * @return 是否删除成功 + */ + @PostMapping("delete") + @Operation(summary = "web端管理员删除${entityComment}", description = "参数:${entityComment}删除请求体,权限:管理员(boss, admin),方法名:del${entityName}") + @AuthCheck(mustRole = UserConstant.ADMIN_ROLE) + public BaseResponse del${entityName}(@RequestBody CommonRequest commonRequest) { + if (commonRequest == null || commonRequest.getId() <= 0) { + throw new BusinessException(ErrorCode.PARAMS_ERROR); + } + Long id = commonRequest.getId(); + boolean result = ${entityName}Service.removeById(id); + ThrowUtils.throwIf(!result, ErrorCode.OPERATION_ERROR, "${entityComment}删除失败"); + return ResultUtils.success(true); + } + + /** + * Web端管理员分页查看${entityComment} + * @param ${entityName}QueryRequest ${entityComment}查询请求体 + * @return ${entityComment}列表 + */ + @PostMapping("page") + @Operation(summary = "Web端管理员分页查看${entityComment}", description = "参数:${entityComment}查询请求体,权限:管理员(boss, admin),方法名:list${entityName}ByPage") + public BaseResponse> list${entityName}ByPage(@RequestBody ${entityName}QueryRequest ${entityName}QueryRequest) { + if (${entityName}QueryRequest == null) throw new BusinessException(ErrorCode.PARAMS_ERROR); + long current = ${entityName}QueryRequest.getCurrent(); + long pageSize = ${entityName}QueryRequest.getPageSize(); + QueryWrapper<${entityName}> queryWrapper = ${entityName}Service.getQueryWrapper(${entityName}QueryRequest); + Page<${entityName}> page = ${entityName}Service.page(new Page<>(current, pageSize), queryWrapper); + List<${entityName}> ${entityName}List = page.getRecords(); + List<${entityName}VO> ${entityName}VOList = commonService.convertList(${entityName}List, ${entityName}VO.class); + Page<${entityName}VO> voPage = new Page<>(); + voPage.setRecords(${entityName}VOList); + voPage.setPages(page.getPages()); + voPage.setCurrent(page.getCurrent()); + voPage.setTotal(page.getTotal()); + voPage.setSize(page.getSize()); + return ResultUtils.success(voPage); + } + + /** + * web端管理员根据id查询${entityComment} + * @param commonRequest ${entityComment}查询请求体 + * @return ${entityComment}信息 + */ + @PostMapping("queryById") + @Operation(summary = "web端管理员根据id查询${entityComment}", description = "参数:${entityComment}查询请求体,权限:管理员(boss, admin),方法名:query${entityName}ById") + @AuthCheck(mustRole = UserConstant.ADMIN_ROLE) + public BaseResponse<${entityName}VO> query${entityName}ById(@RequestBody CommonRequest commonRequest) { + if (commonRequest == null || commonRequest.getId() <= 0) { + throw new BusinessException(ErrorCode.PARAMS_ERROR); + } + ${entityName} ${entityName} = ${entityName}Service.getById(commonRequest.getId()); + ThrowUtils.throwIf(${entityName} == null, ErrorCode.NOT_FOUND, "${entityComment}未找到"); + ${entityName}VO ${entityName}VO = commonService.convert(${entityName}, ${entityName}VO.class); + return ResultUtils.success(${entityName}VO); + } + + /** + * web端管理员批量删除${entityComment} + * @param commonRequest ${entityComment}批量删除请求体 + * @return 是否删除成功 + */ + @PostMapping("delBatch") + @Operation(summary = "web端管理员批量删除${entityComment}", description = "参数:${entityComment}批量删除请求体,权限:管理员(boss, admin),方法名:delBatch${entityName}") + @AuthCheck(mustRole = UserConstant.ADMIN_ROLE) + public BaseResponse delBatch${entityName}(@RequestBody CommonRequest commonRequest) { + if (commonRequest == null || commonRequest.getIds() == null || commonRequest.getIds().isEmpty()) { + throw new BusinessException(ErrorCode.PARAMS_ERROR); + } + boolean result = ${entityName}Service.removeByIds(commonRequest.getIds()); + ThrowUtils.throwIf(!result, ErrorCode.OPERATION_ERROR, "${entityComment}批量删除失败"); + return ResultUtils.success(true); + } +} diff --git a/src/main/resources/templates/dto/Addrequest.java.vm b/src/main/resources/templates/dto/Addrequest.java.vm new file mode 100644 index 0000000..5258036 --- /dev/null +++ b/src/main/resources/templates/dto/Addrequest.java.vm @@ -0,0 +1,29 @@ +package ${parentPackage}.${dtoPackage}; + +import io.swagger.v3.oas.annotations.media.Schema; +import lombok.Data; + +import java.io.Serial; +import java.io.Serializable; + +/** + * ${entityComment}添加请求体 + */ +@Data +@Schema(description = "${entityComment}添加请求体", requiredProperties = {"name", "categoryId", "price", "image", "period", "isShelves"}) +public class ${entityName}AddRequest implements Serializable { + +#foreach($field in ${table.fields}) +#if(!$field.keyFlag && $field.propertyName != "id" && $field.propertyName != "createTime" && $field.propertyName != "updateTime" && $field.propertyName != "isDelete") + /** + * ${field.comment} + */ + @Schema(description = "${field.comment}", example = "${field.example}") + private ${field.propertyType} ${field.propertyName}; + +#end +#end + + @Serial + private static final long serialVersionUID = 1L; +} diff --git a/src/main/resources/templates/dto/QueryRequest.java.vm b/src/main/resources/templates/dto/QueryRequest.java.vm new file mode 100644 index 0000000..3ed2210 --- /dev/null +++ b/src/main/resources/templates/dto/QueryRequest.java.vm @@ -0,0 +1,35 @@ +package ${parentPackage}.${dtoPackage}; + +import io.swagger.v3.oas.annotations.media.Schema; +import lombok.Data; +import java.io.Serial; +import java.io.Serializable; +import ${parentPackage}.common.PageRequest; + +/** + * ${entityComment}查询请求体,继承自分页请求 PageRequest + */ +@Data +@Schema(description = "${entityComment}查询请求体", requiredProperties = {"current", "pageSize"}) +public class ${entityName}QueryRequest extends PageRequest implements Serializable { + + /** + * ${entityComment} ID + */ + @Schema(description = "${entityComment} ID", example = "1") + private Long id; + +#foreach($field in ${table.fields}) +#if(!$field.keyFlag && $field.propertyName != "createTime" && $field.propertyName != "updateTime" && $field.propertyName != "isDelete") + /** + * ${field.comment} + */ + @Schema(description = "${field.comment}", example = "${field.example}") + private ${field.propertyType} ${field.propertyName}; + +#end +#end + + @Serial + private static final long serialVersionUID = 1L; +} diff --git a/src/main/resources/templates/dto/UpdateRequest.java.vm b/src/main/resources/templates/dto/UpdateRequest.java.vm new file mode 100644 index 0000000..1054c53 --- /dev/null +++ b/src/main/resources/templates/dto/UpdateRequest.java.vm @@ -0,0 +1,35 @@ +package ${parentPackage}.${dtoPackage}; + +import io.swagger.v3.oas.annotations.media.Schema; +import lombok.Data; + +import java.io.Serial; +import java.io.Serializable; + +/** + * ${entityComment}更新请求体 + */ +@Data +@Schema(description = "${entityComment}更新请求体", requiredProperties = {"id", "name", "categoryId", "price", "image", "period", "isShelves"}) +public class ${entityName}UpdateRequest implements Serializable { + + /** + * ${entityComment} ID + */ + @Schema(description = "${entityComment} ID", example = "1") + private Long id; + +#foreach($field in ${table.fields}) +#if(!$field.keyFlag && $field.propertyName != "createTime" && $field.propertyName != "updateTime" && $field.propertyName != "isDelete") + /** + * ${field.comment} + */ + @Schema(description = "${field.comment}", example = "${field.example}") + private ${field.propertyType} ${field.propertyName}; + +#end +#end + + @Serial + private static final long serialVersionUID = 1L; +} diff --git a/src/main/resources/templates/vo/VO.java.vm b/src/main/resources/templates/vo/VO.java.vm new file mode 100644 index 0000000..6a0c64c --- /dev/null +++ b/src/main/resources/templates/vo/VO.java.vm @@ -0,0 +1,35 @@ +package ${parentPackage}.${voPackage}; + +import io.swagger.v3.oas.annotations.media.Schema; +import lombok.Data; + +import java.io.Serial; +import java.io.Serializable; + +/** + * ${entityComment} 视图对象 + */ +@Data +@Schema(description = "${entityComment} 视图对象") +public class ${entityName}VO implements Serializable { + + /** + * ${entityComment} ID + */ + @Schema(description = "${entityComment} ID", example = "1") + private Long id; + +#foreach($field in ${table.fields}) +#if(!$field.keyFlag && $field.propertyName != "createTime" && $field.propertyName != "updateTime" && $field.propertyName != "isDelete") + /** + * ${field.comment} + */ + @Schema(description = "${field.comment}", example = "${field.example}") + private ${field.propertyType} ${field.propertyName}; + +#end +#end + + @Serial + private static final long serialVersionUID = 1L; +} diff --git a/src/test/java/com/greenorange/promotion/GreenOrangeApplicationTests.java b/src/test/java/com/greenorange/promotion/GreenOrangeApplicationTests.java new file mode 100644 index 0000000..bbd5e6f --- /dev/null +++ b/src/test/java/com/greenorange/promotion/GreenOrangeApplicationTests.java @@ -0,0 +1,13 @@ +package com.greenorange.promotion; + +import org.junit.jupiter.api.Test; +import org.springframework.boot.test.context.SpringBootTest; + +@SpringBootTest +class GreenOrangeApplicationTests { + + @Test + void contextLoads() { + } + +}