commit fcebd8474e0ba46464987bc2722941c58049dec3 Author: chen-xin-zhi <3588068430@qq.com> Date: Tue Apr 1 11:48:31 2025 +0800 first commit 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 0000000..5bf63c6 Binary files /dev/null and b/src/main/resources/lib/2020idea-mybatis_log_plugin.jar differ 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() { + } + +}