commit 6c48164195944bbe12f0eca7728fba5c2ec277a9 Author: rong.liu Date: Mon Feb 22 11:44:12 2021 +0800 构建项目 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/MavenWrapperDownloader.java b/.mvn/wrapper/MavenWrapperDownloader.java new file mode 100644 index 0000000..a45eb6b --- /dev/null +++ b/.mvn/wrapper/MavenWrapperDownloader.java @@ -0,0 +1,118 @@ +/* + * Copyright 2007-present the original author or authors. + * + * Licensed 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 + * + * https://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. + */ + +import java.net.*; +import java.io.*; +import java.nio.channels.*; +import java.util.Properties; + +public class MavenWrapperDownloader { + + private static final String WRAPPER_VERSION = "0.5.6"; + /** + * Default URL to download the maven-wrapper.jar from, if no 'downloadUrl' is provided. + */ + private static final String DEFAULT_DOWNLOAD_URL = "https://repo.maven.apache.org/maven2/io/takari/maven-wrapper/" + + WRAPPER_VERSION + "/maven-wrapper-" + WRAPPER_VERSION + ".jar"; + + /** + * Path to the maven-wrapper.properties file, which might contain a downloadUrl property to + * use instead of the default one. + */ + private static final String MAVEN_WRAPPER_PROPERTIES_PATH = + ".mvn/wrapper/maven-wrapper.properties"; + + /** + * Path where the maven-wrapper.jar will be saved to. + */ + private static final String MAVEN_WRAPPER_JAR_PATH = + ".mvn/wrapper/maven-wrapper.jar"; + + /** + * Name of the property which should be used to override the default download url for the wrapper. + */ + private static final String PROPERTY_NAME_WRAPPER_URL = "wrapperUrl"; + + public static void main(String args[]) { + System.out.println("- Downloader started"); + File baseDirectory = new File(args[0]); + System.out.println("- Using base directory: " + baseDirectory.getAbsolutePath()); + + // If the maven-wrapper.properties exists, read it and check if it contains a custom + // wrapperUrl parameter. + File mavenWrapperPropertyFile = new File(baseDirectory, MAVEN_WRAPPER_PROPERTIES_PATH); + String url = DEFAULT_DOWNLOAD_URL; + if (mavenWrapperPropertyFile.exists()) { + FileInputStream mavenWrapperPropertyFileInputStream = null; + try { + mavenWrapperPropertyFileInputStream = new FileInputStream(mavenWrapperPropertyFile); + Properties mavenWrapperProperties = new Properties(); + mavenWrapperProperties.load(mavenWrapperPropertyFileInputStream); + url = mavenWrapperProperties.getProperty(PROPERTY_NAME_WRAPPER_URL, url); + } catch (IOException e) { + System.out.println("- ERROR loading '" + MAVEN_WRAPPER_PROPERTIES_PATH + "'"); + } finally { + try { + if (mavenWrapperPropertyFileInputStream != null) { + mavenWrapperPropertyFileInputStream.close(); + } + } catch (IOException e) { + // Ignore ... + } + } + } + System.out.println("- Downloading from: " + url); + + File outputFile = new File(baseDirectory.getAbsolutePath(), MAVEN_WRAPPER_JAR_PATH); + if (!outputFile.getParentFile().exists()) { + if (!outputFile.getParentFile().mkdirs()) { + System.out.println( + "- ERROR creating output directory '" + outputFile.getParentFile().getAbsolutePath() + "'"); + } + } + System.out.println("- Downloading to: " + outputFile.getAbsolutePath()); + try { + downloadFileFromURL(url, outputFile); + System.out.println("Done"); + System.exit(0); + } catch (Throwable e) { + System.out.println("- Error downloading"); + e.printStackTrace(); + System.exit(1); + } + } + + private static void downloadFileFromURL(String urlString, File destination) throws Exception { + if (System.getenv("MVNW_USERNAME") != null && System.getenv("MVNW_PASSWORD") != null) { + String username = System.getenv("MVNW_USERNAME"); + char[] password = System.getenv("MVNW_PASSWORD").toCharArray(); + Authenticator.setDefault(new Authenticator() { + @Override + protected PasswordAuthentication getPasswordAuthentication() { + return new PasswordAuthentication(username, password); + } + }); + } + URL website = new URL(urlString); + ReadableByteChannel rbc; + rbc = Channels.newChannel(website.openStream()); + FileOutputStream fos = new FileOutputStream(destination); + fos.getChannel().transferFrom(rbc, 0, Long.MAX_VALUE); + fos.close(); + rbc.close(); + } + +} diff --git a/.mvn/wrapper/maven-wrapper.jar b/.mvn/wrapper/maven-wrapper.jar new file mode 100644 index 0000000..2cc7d4a Binary files /dev/null and b/.mvn/wrapper/maven-wrapper.jar differ diff --git a/.mvn/wrapper/maven-wrapper.properties b/.mvn/wrapper/maven-wrapper.properties new file mode 100644 index 0000000..642d572 --- /dev/null +++ b/.mvn/wrapper/maven-wrapper.properties @@ -0,0 +1,2 @@ +distributionUrl=https://repo.maven.apache.org/maven2/org/apache/maven/apache-maven/3.6.3/apache-maven-3.6.3-bin.zip +wrapperUrl=https://repo.maven.apache.org/maven2/io/takari/maven-wrapper/0.5.6/maven-wrapper-0.5.6.jar diff --git a/README.md b/README.md new file mode 100644 index 0000000..107f8bf --- /dev/null +++ b/README.md @@ -0,0 +1,3 @@ +# msdw_tms + +测评管理系统 \ No newline at end of file diff --git a/mvnw b/mvnw new file mode 100644 index 0000000..a16b543 --- /dev/null +++ b/mvnw @@ -0,0 +1,310 @@ +#!/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 +# +# https://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. +# ---------------------------------------------------------------------------- + +# ---------------------------------------------------------------------------- +# Maven Start Up Batch script +# +# Required ENV vars: +# ------------------ +# JAVA_HOME - location of a JDK home dir +# +# Optional ENV vars +# ----------------- +# M2_HOME - location of maven2's installed home dir +# MAVEN_OPTS - parameters passed to the Java VM when running Maven +# e.g. to debug Maven itself, use +# set MAVEN_OPTS=-Xdebug -Xrunjdwp:transport=dt_socket,server=y,suspend=y,address=8000 +# MAVEN_SKIP_RC - flag to disable loading of mavenrc files +# ---------------------------------------------------------------------------- + +if [ -z "$MAVEN_SKIP_RC" ] ; then + + if [ -f /etc/mavenrc ] ; then + . /etc/mavenrc + fi + + if [ -f "$HOME/.mavenrc" ] ; then + . "$HOME/.mavenrc" + fi + +fi + +# OS specific support. $var _must_ be set to either true or false. +cygwin=false; +darwin=false; +mingw=false +case "`uname`" in + CYGWIN*) cygwin=true ;; + MINGW*) mingw=true;; + Darwin*) darwin=true + # Use /usr/libexec/java_home if available, otherwise fall back to /Library/Java/Home + # See https://developer.apple.com/library/mac/qa/qa1170/_index.html + if [ -z "$JAVA_HOME" ]; then + if [ -x "/usr/libexec/java_home" ]; then + export JAVA_HOME="`/usr/libexec/java_home`" + else + export JAVA_HOME="/Library/Java/Home" + fi + fi + ;; +esac + +if [ -z "$JAVA_HOME" ] ; then + if [ -r /etc/gentoo-release ] ; then + JAVA_HOME=`java-config --jre-home` + fi +fi + +if [ -z "$M2_HOME" ] ; then + ## resolve links - $0 may be a link to maven's home + PRG="$0" + + # need this for relative symlinks + while [ -h "$PRG" ] ; do + ls=`ls -ld "$PRG"` + link=`expr "$ls" : '.*-> \(.*\)$'` + if expr "$link" : '/.*' > /dev/null; then + PRG="$link" + else + PRG="`dirname "$PRG"`/$link" + fi + done + + saveddir=`pwd` + + M2_HOME=`dirname "$PRG"`/.. + + # make it fully qualified + M2_HOME=`cd "$M2_HOME" && pwd` + + cd "$saveddir" + # echo Using m2 at $M2_HOME +fi + +# For Cygwin, ensure paths are in UNIX format before anything is touched +if $cygwin ; then + [ -n "$M2_HOME" ] && + M2_HOME=`cygpath --unix "$M2_HOME"` + [ -n "$JAVA_HOME" ] && + JAVA_HOME=`cygpath --unix "$JAVA_HOME"` + [ -n "$CLASSPATH" ] && + CLASSPATH=`cygpath --path --unix "$CLASSPATH"` +fi + +# For Mingw, ensure paths are in UNIX format before anything is touched +if $mingw ; then + [ -n "$M2_HOME" ] && + M2_HOME="`(cd "$M2_HOME"; pwd)`" + [ -n "$JAVA_HOME" ] && + JAVA_HOME="`(cd "$JAVA_HOME"; pwd)`" +fi + +if [ -z "$JAVA_HOME" ]; then + javaExecutable="`which javac`" + if [ -n "$javaExecutable" ] && ! [ "`expr \"$javaExecutable\" : '\([^ ]*\)'`" = "no" ]; then + # readlink(1) is not available as standard on Solaris 10. + readLink=`which readlink` + if [ ! `expr "$readLink" : '\([^ ]*\)'` = "no" ]; then + if $darwin ; then + javaHome="`dirname \"$javaExecutable\"`" + javaExecutable="`cd \"$javaHome\" && pwd -P`/javac" + else + javaExecutable="`readlink -f \"$javaExecutable\"`" + fi + javaHome="`dirname \"$javaExecutable\"`" + javaHome=`expr "$javaHome" : '\(.*\)/bin'` + JAVA_HOME="$javaHome" + export JAVA_HOME + fi + fi +fi + +if [ -z "$JAVACMD" ] ; then + 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" + else + JAVACMD="$JAVA_HOME/bin/java" + fi + else + JAVACMD="`which java`" + fi +fi + +if [ ! -x "$JAVACMD" ] ; then + echo "Error: JAVA_HOME is not defined correctly." >&2 + echo " We cannot execute $JAVACMD" >&2 + exit 1 +fi + +if [ -z "$JAVA_HOME" ] ; then + echo "Warning: JAVA_HOME environment variable is not set." +fi + +CLASSWORLDS_LAUNCHER=org.codehaus.plexus.classworlds.launcher.Launcher + +# traverses directory structure from process work directory to filesystem root +# first directory with .mvn subdirectory is considered project base directory +find_maven_basedir() { + + if [ -z "$1" ] + then + echo "Path not specified to find_maven_basedir" + return 1 + fi + + basedir="$1" + wdir="$1" + while [ "$wdir" != '/' ] ; do + if [ -d "$wdir"/.mvn ] ; then + basedir=$wdir + break + fi + # workaround for JBEAP-8937 (on Solaris 10/Sparc) + if [ -d "${wdir}" ]; then + wdir=`cd "$wdir/.."; pwd` + fi + # end of workaround + done + echo "${basedir}" +} + +# concatenates all lines of a file +concat_lines() { + if [ -f "$1" ]; then + echo "$(tr -s '\n' ' ' < "$1")" + fi +} + +BASE_DIR=`find_maven_basedir "$(pwd)"` +if [ -z "$BASE_DIR" ]; then + exit 1; +fi + +########################################################################################## +# Extension to allow automatically downloading the maven-wrapper.jar from Maven-central +# This allows using the maven wrapper in projects that prohibit checking in binary data. +########################################################################################## +if [ -r "$BASE_DIR/.mvn/wrapper/maven-wrapper.jar" ]; then + if [ "$MVNW_VERBOSE" = true ]; then + echo "Found .mvn/wrapper/maven-wrapper.jar" + fi +else + if [ "$MVNW_VERBOSE" = true ]; then + echo "Couldn't find .mvn/wrapper/maven-wrapper.jar, downloading it ..." + fi + if [ -n "$MVNW_REPOURL" ]; then + jarUrl="$MVNW_REPOURL/io/takari/maven-wrapper/0.5.6/maven-wrapper-0.5.6.jar" + else + jarUrl="https://repo.maven.apache.org/maven2/io/takari/maven-wrapper/0.5.6/maven-wrapper-0.5.6.jar" + fi + while IFS="=" read key value; do + case "$key" in (wrapperUrl) jarUrl="$value"; break ;; + esac + done < "$BASE_DIR/.mvn/wrapper/maven-wrapper.properties" + if [ "$MVNW_VERBOSE" = true ]; then + echo "Downloading from: $jarUrl" + fi + wrapperJarPath="$BASE_DIR/.mvn/wrapper/maven-wrapper.jar" + if $cygwin; then + wrapperJarPath=`cygpath --path --windows "$wrapperJarPath"` + fi + + if command -v wget > /dev/null; then + if [ "$MVNW_VERBOSE" = true ]; then + echo "Found wget ... using wget" + fi + if [ -z "$MVNW_USERNAME" ] || [ -z "$MVNW_PASSWORD" ]; then + wget "$jarUrl" -O "$wrapperJarPath" + else + wget --http-user=$MVNW_USERNAME --http-password=$MVNW_PASSWORD "$jarUrl" -O "$wrapperJarPath" + fi + elif command -v curl > /dev/null; then + if [ "$MVNW_VERBOSE" = true ]; then + echo "Found curl ... using curl" + fi + if [ -z "$MVNW_USERNAME" ] || [ -z "$MVNW_PASSWORD" ]; then + curl -o "$wrapperJarPath" "$jarUrl" -f + else + curl --user $MVNW_USERNAME:$MVNW_PASSWORD -o "$wrapperJarPath" "$jarUrl" -f + fi + + else + if [ "$MVNW_VERBOSE" = true ]; then + echo "Falling back to using Java to download" + fi + javaClass="$BASE_DIR/.mvn/wrapper/MavenWrapperDownloader.java" + # For Cygwin, switch paths to Windows format before running javac + if $cygwin; then + javaClass=`cygpath --path --windows "$javaClass"` + fi + if [ -e "$javaClass" ]; then + if [ ! -e "$BASE_DIR/.mvn/wrapper/MavenWrapperDownloader.class" ]; then + if [ "$MVNW_VERBOSE" = true ]; then + echo " - Compiling MavenWrapperDownloader.java ..." + fi + # Compiling the Java class + ("$JAVA_HOME/bin/javac" "$javaClass") + fi + if [ -e "$BASE_DIR/.mvn/wrapper/MavenWrapperDownloader.class" ]; then + # Running the downloader + if [ "$MVNW_VERBOSE" = true ]; then + echo " - Running MavenWrapperDownloader.java ..." + fi + ("$JAVA_HOME/bin/java" -cp .mvn/wrapper MavenWrapperDownloader "$MAVEN_PROJECTBASEDIR") + fi + fi + fi +fi +########################################################################################## +# End of extension +########################################################################################## + +export MAVEN_PROJECTBASEDIR=${MAVEN_BASEDIR:-"$BASE_DIR"} +if [ "$MVNW_VERBOSE" = true ]; then + echo $MAVEN_PROJECTBASEDIR +fi +MAVEN_OPTS="$(concat_lines "$MAVEN_PROJECTBASEDIR/.mvn/jvm.config") $MAVEN_OPTS" + +# For Cygwin, switch paths to Windows format before running java +if $cygwin; then + [ -n "$M2_HOME" ] && + M2_HOME=`cygpath --path --windows "$M2_HOME"` + [ -n "$JAVA_HOME" ] && + JAVA_HOME=`cygpath --path --windows "$JAVA_HOME"` + [ -n "$CLASSPATH" ] && + CLASSPATH=`cygpath --path --windows "$CLASSPATH"` + [ -n "$MAVEN_PROJECTBASEDIR" ] && + MAVEN_PROJECTBASEDIR=`cygpath --path --windows "$MAVEN_PROJECTBASEDIR"` +fi + +# Provide a "standardized" way to retrieve the CLI args that will +# work with both Windows and non-Windows executions. +MAVEN_CMD_LINE_ARGS="$MAVEN_CONFIG $@" +export MAVEN_CMD_LINE_ARGS + +WRAPPER_LAUNCHER=org.apache.maven.wrapper.MavenWrapperMain + +exec "$JAVACMD" \ + $MAVEN_OPTS \ + -classpath "$MAVEN_PROJECTBASEDIR/.mvn/wrapper/maven-wrapper.jar" \ + "-Dmaven.home=${M2_HOME}" "-Dmaven.multiModuleProjectDirectory=${MAVEN_PROJECTBASEDIR}" \ + ${WRAPPER_LAUNCHER} $MAVEN_CONFIG "$@" diff --git a/mvnw.cmd b/mvnw.cmd new file mode 100644 index 0000000..c8d4337 --- /dev/null +++ b/mvnw.cmd @@ -0,0 +1,182 @@ +@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 https://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 Maven Start Up Batch script +@REM +@REM Required ENV vars: +@REM JAVA_HOME - location of a JDK home dir +@REM +@REM Optional ENV vars +@REM M2_HOME - location of maven2's installed home dir +@REM MAVEN_BATCH_ECHO - set to 'on' to enable the echoing of the batch commands +@REM MAVEN_BATCH_PAUSE - set to 'on' to wait for a keystroke before ending +@REM MAVEN_OPTS - parameters passed to the Java VM when running Maven +@REM e.g. to debug Maven itself, use +@REM set MAVEN_OPTS=-Xdebug -Xrunjdwp:transport=dt_socket,server=y,suspend=y,address=8000 +@REM MAVEN_SKIP_RC - flag to disable loading of mavenrc files +@REM ---------------------------------------------------------------------------- + +@REM Begin all REM lines with '@' in case MAVEN_BATCH_ECHO is 'on' +@echo off +@REM set title of command window +title %0 +@REM enable echoing by setting MAVEN_BATCH_ECHO to 'on' +@if "%MAVEN_BATCH_ECHO%" == "on" echo %MAVEN_BATCH_ECHO% + +@REM set %HOME% to equivalent of $HOME +if "%HOME%" == "" (set "HOME=%HOMEDRIVE%%HOMEPATH%") + +@REM Execute a user defined script before this one +if not "%MAVEN_SKIP_RC%" == "" goto skipRcPre +@REM check for pre script, once with legacy .bat ending and once with .cmd ending +if exist "%HOME%\mavenrc_pre.bat" call "%HOME%\mavenrc_pre.bat" +if exist "%HOME%\mavenrc_pre.cmd" call "%HOME%\mavenrc_pre.cmd" +:skipRcPre + +@setlocal + +set ERROR_CODE=0 + +@REM To isolate internal variables from possible post scripts, we use another setlocal +@setlocal + +@REM ==== START VALIDATION ==== +if not "%JAVA_HOME%" == "" goto OkJHome + +echo. +echo Error: JAVA_HOME not found in your environment. >&2 +echo Please set the JAVA_HOME variable in your environment to match the >&2 +echo location of your Java installation. >&2 +echo. +goto error + +:OkJHome +if exist "%JAVA_HOME%\bin\java.exe" goto init + +echo. +echo Error: JAVA_HOME is set to an invalid directory. >&2 +echo JAVA_HOME = "%JAVA_HOME%" >&2 +echo Please set the JAVA_HOME variable in your environment to match the >&2 +echo location of your Java installation. >&2 +echo. +goto error + +@REM ==== END VALIDATION ==== + +:init + +@REM Find the project base dir, i.e. the directory that contains the folder ".mvn". +@REM Fallback to current working directory if not found. + +set MAVEN_PROJECTBASEDIR=%MAVEN_BASEDIR% +IF NOT "%MAVEN_PROJECTBASEDIR%"=="" goto endDetectBaseDir + +set EXEC_DIR=%CD% +set WDIR=%EXEC_DIR% +:findBaseDir +IF EXIST "%WDIR%"\.mvn goto baseDirFound +cd .. +IF "%WDIR%"=="%CD%" goto baseDirNotFound +set WDIR=%CD% +goto findBaseDir + +:baseDirFound +set MAVEN_PROJECTBASEDIR=%WDIR% +cd "%EXEC_DIR%" +goto endDetectBaseDir + +:baseDirNotFound +set MAVEN_PROJECTBASEDIR=%EXEC_DIR% +cd "%EXEC_DIR%" + +:endDetectBaseDir + +IF NOT EXIST "%MAVEN_PROJECTBASEDIR%\.mvn\jvm.config" goto endReadAdditionalConfig + +@setlocal EnableExtensions EnableDelayedExpansion +for /F "usebackq delims=" %%a in ("%MAVEN_PROJECTBASEDIR%\.mvn\jvm.config") do set JVM_CONFIG_MAVEN_PROPS=!JVM_CONFIG_MAVEN_PROPS! %%a +@endlocal & set JVM_CONFIG_MAVEN_PROPS=%JVM_CONFIG_MAVEN_PROPS% + +:endReadAdditionalConfig + +SET MAVEN_JAVA_EXE="%JAVA_HOME%\bin\java.exe" +set WRAPPER_JAR="%MAVEN_PROJECTBASEDIR%\.mvn\wrapper\maven-wrapper.jar" +set WRAPPER_LAUNCHER=org.apache.maven.wrapper.MavenWrapperMain + +set DOWNLOAD_URL="https://repo.maven.apache.org/maven2/io/takari/maven-wrapper/0.5.6/maven-wrapper-0.5.6.jar" + +FOR /F "tokens=1,2 delims==" %%A IN ("%MAVEN_PROJECTBASEDIR%\.mvn\wrapper\maven-wrapper.properties") DO ( + IF "%%A"=="wrapperUrl" SET DOWNLOAD_URL=%%B +) + +@REM Extension to allow automatically downloading the maven-wrapper.jar from Maven-central +@REM This allows using the maven wrapper in projects that prohibit checking in binary data. +if exist %WRAPPER_JAR% ( + if "%MVNW_VERBOSE%" == "true" ( + echo Found %WRAPPER_JAR% + ) +) else ( + if not "%MVNW_REPOURL%" == "" ( + SET DOWNLOAD_URL="%MVNW_REPOURL%/io/takari/maven-wrapper/0.5.6/maven-wrapper-0.5.6.jar" + ) + if "%MVNW_VERBOSE%" == "true" ( + echo Couldn't find %WRAPPER_JAR%, downloading it ... + echo Downloading from: %DOWNLOAD_URL% + ) + + powershell -Command "&{"^ + "$webclient = new-object System.Net.WebClient;"^ + "if (-not ([string]::IsNullOrEmpty('%MVNW_USERNAME%') -and [string]::IsNullOrEmpty('%MVNW_PASSWORD%'))) {"^ + "$webclient.Credentials = new-object System.Net.NetworkCredential('%MVNW_USERNAME%', '%MVNW_PASSWORD%');"^ + "}"^ + "[Net.ServicePointManager]::SecurityProtocol = [Net.SecurityProtocolType]::Tls12; $webclient.DownloadFile('%DOWNLOAD_URL%', '%WRAPPER_JAR%')"^ + "}" + if "%MVNW_VERBOSE%" == "true" ( + echo Finished downloading %WRAPPER_JAR% + ) +) +@REM End of extension + +@REM Provide a "standardized" way to retrieve the CLI args that will +@REM work with both Windows and non-Windows executions. +set MAVEN_CMD_LINE_ARGS=%* + +%MAVEN_JAVA_EXE% %JVM_CONFIG_MAVEN_PROPS% %MAVEN_OPTS% %MAVEN_DEBUG_OPTS% -classpath %WRAPPER_JAR% "-Dmaven.multiModuleProjectDirectory=%MAVEN_PROJECTBASEDIR%" %WRAPPER_LAUNCHER% %MAVEN_CONFIG% %* +if ERRORLEVEL 1 goto error +goto end + +:error +set ERROR_CODE=1 + +:end +@endlocal & set ERROR_CODE=%ERROR_CODE% + +if not "%MAVEN_SKIP_RC%" == "" goto skipRcPost +@REM check for post script, once with legacy .bat ending and once with .cmd ending +if exist "%HOME%\mavenrc_post.bat" call "%HOME%\mavenrc_post.bat" +if exist "%HOME%\mavenrc_post.cmd" call "%HOME%\mavenrc_post.cmd" +:skipRcPost + +@REM pause the script if MAVEN_BATCH_PAUSE is set to 'on' +if "%MAVEN_BATCH_PAUSE%" == "on" pause + +if "%MAVEN_TERMINATE_CMD%" == "on" exit %ERROR_CODE% + +exit /B %ERROR_CODE% diff --git a/pom.xml b/pom.xml new file mode 100644 index 0000000..381f2dc --- /dev/null +++ b/pom.xml @@ -0,0 +1,236 @@ + + + 4.0.0 + + org.springframework.boot + spring-boot-starter-parent + 2.3.4.RELEASE + + + com.msdw + tms + 0.0.1-SNAPSHOT + tms + 测评管理系统 + + jar + + 1.8 + + + + + org.apache.poi + poi + 4.0.1 + + + org.apache.poi + poi-ooxml + 4.0.1 + + + org.apache.poi + poi-ooxml-schemas + 4.0.1 + + + + org.springframework.boot + spring-boot-starter-web + + + org.springframework.boot + spring-boot-starter-tomcat + + compile + + + + com.baomidou + mybatis-plus-boot-starter + 3.3.1 + + + org.projectlombok + lombok + 1.18.12 + + + + org.apache.httpcomponents + httpcore + 4.4.13 + + + + commons-lang + commons-lang + 2.6 + + + + + mysql + mysql-connector-java + 8.0.20 + + + + + io.springfox + springfox-swagger-ui + 2.7.0 + + + io.springfox + springfox-swagger2 + 2.7.0 + + + + com.aliyun.oss + aliyun-sdk-oss + 2.8.2 + + + org.springframework.cloud + spring-cloud-starter-openfeign + 2.2.3.RELEASE + + + org.springframework.boot + spring-boot-starter-test + test + + + org.junit.vintage + junit-vintage-engine + + + + + commons-io + commons-io + 2.6 + test + + + commons-fileupload + commons-fileupload + 1.4 + test + + + + org.springframework.boot + spring-boot-starter-validation + + + + org.springframework.boot + spring-boot-starter-data-redis + + + + cn.hutool + hutool-all + 5.3.8 + + + + com.alibaba + fastjson + 1.2.72 + + + org.springframework.boot + spring-boot-configuration-processor + true + + + + + org.python + jython-standalone + 2.7.0 + + + + + + + + cn.afterturn + easypoi-base + 4.1.3 + + + cn.afterturn + easypoi-web + 4.1.3 + + + cn.afterturn + easypoi-annotation + 4.1.3 + + + + com.alibaba + easyexcel + 2.1.1 + + + + + + + com.baomidou + dynamic-datasource-spring-boot-starter + 3.1.0 + + + + + org.springframework.boot + spring-boot-starter-aop + + + + + redis.clients + jedis + 2.9.0 + + + + org.springframework.boot + spring-boot-starter-data-redis + + + + + + + + evaluation + + + org.springframework.boot + spring-boot-maven-plugin + + + org.apache.maven.plugins + maven-surefire-plugin + 2.20.1 + + true + + + + + + diff --git a/src/main/java/com/msdw/tms/TmsApplication.java b/src/main/java/com/msdw/tms/TmsApplication.java new file mode 100644 index 0000000..e121ed0 --- /dev/null +++ b/src/main/java/com/msdw/tms/TmsApplication.java @@ -0,0 +1,20 @@ +package com.msdw.tms; + +import org.springframework.boot.SpringApplication; +import org.springframework.boot.autoconfigure.SpringBootApplication; +import org.springframework.boot.builder.SpringApplicationBuilder; +import org.springframework.boot.web.servlet.support.SpringBootServletInitializer; + + +@SpringBootApplication +public class TmsApplication extends SpringBootServletInitializer { + + public static void main(String[] args) { + SpringApplication.run(TmsApplication.class, args); + } + + @Override + protected SpringApplicationBuilder configure(SpringApplicationBuilder builder) { + return builder.sources(TmsApplication.class); + } +} diff --git a/src/main/java/com/msdw/tms/aop/AuthCustomize.java b/src/main/java/com/msdw/tms/aop/AuthCustomize.java new file mode 100644 index 0000000..9d615db --- /dev/null +++ b/src/main/java/com/msdw/tms/aop/AuthCustomize.java @@ -0,0 +1,28 @@ +package com.msdw.tms.aop; + +/** + * @ProjectName: tms + * @Package: com.msdw.tms.aop + * @ClassName: Authorization + * @Description: 安全认证 + * @Author: Maureen.Rong + * @CreateDate: 2020/10/22 9:46 + * @UpdateDate: 2020/10/22 9:46 + * @Version: 1.0 + */ + +import org.springframework.stereotype.Component; + +import java.lang.annotation.*; + +/** + * 在Controller的方法上使用此注解,该方法在映射时会检查用户鉴权 + */ +@Target(ElementType.METHOD) +@Retention(RetentionPolicy.RUNTIME) +@Documented +@Component +public @interface AuthCustomize { + //用于自定义描述等 + String value() default ""; +} diff --git a/src/main/java/com/msdw/tms/common/Test.java b/src/main/java/com/msdw/tms/common/Test.java new file mode 100644 index 0000000..558bd95 --- /dev/null +++ b/src/main/java/com/msdw/tms/common/Test.java @@ -0,0 +1,21 @@ +package com.msdw.tms.common; + +import com.msdw.tms.common.utils.trading_rules.algorithm; + +/** + * @ProjectName: tms + * @Package: com.msdw.tms.common + * @ClassName: Test + * @Description: java类作用描述 + * @Author: Maureen.Rong + * @CreateDate: 2020/11/4 19:01 + * @UpdateDate: 2020/11/4 19:01 + * @Version: 1.0 + */ +public class Test { + + public static void main(String[] args) { + + System.out.println(algorithm.getLastTradingDay("美元兑人民币期货2010")); + } +} diff --git a/src/main/java/com/msdw/tms/common/exception/CustomException.java b/src/main/java/com/msdw/tms/common/exception/CustomException.java new file mode 100644 index 0000000..515fd6e --- /dev/null +++ b/src/main/java/com/msdw/tms/common/exception/CustomException.java @@ -0,0 +1,21 @@ +package com.msdw.tms.common.exception; + +import com.msdw.tms.entity.response.ResultCode; + +/** + * @author 世杰 + * @date 2020/3/24 22:47 + */ +public class CustomException extends RuntimeException { + private ResultCode resultCode; + + /*public CustomException(ResultCode resultCode) { + //异常信息为错误代码+异常信息 + super("错误代码:" + resultCode.code() + "错误信息:" + resultCode.message()); + this.resultCode = resultCode; + } + + public ResultCode getResultCode() { + return this.resultCode; + }*/ +} diff --git a/src/main/java/com/msdw/tms/common/exception/ExceptionCast.java b/src/main/java/com/msdw/tms/common/exception/ExceptionCast.java new file mode 100644 index 0000000..561bb1a --- /dev/null +++ b/src/main/java/com/msdw/tms/common/exception/ExceptionCast.java @@ -0,0 +1,12 @@ +package com.msdw.tms.common.exception; + +/** + * @author 世杰 + * @date 2020/3/24 23:04 + */ +public class ExceptionCast { + //使用此静态方法抛出自定义异常 + /*public static void cast(ResultCode resultCode) { + throw new CustomException(resultCode); + }*/ +} diff --git a/src/main/java/com/msdw/tms/common/exception/ExceptionCatch.java b/src/main/java/com/msdw/tms/common/exception/ExceptionCatch.java new file mode 100644 index 0000000..ecf7c18 --- /dev/null +++ b/src/main/java/com/msdw/tms/common/exception/ExceptionCatch.java @@ -0,0 +1,53 @@ +package com.msdw.tms.common.exception; + +import org.springframework.web.bind.annotation.ControllerAdvice; + + +/** + * @author 世杰 + * @date 2020/3/24 23:06 + */ +//使用 @ControllerAdvice和@ExceptionHandler注解来捕获指定类型的异常 +@ControllerAdvice//控制器增强 +public class ExceptionCatch { + /* private static final Logger LOGGER = LoggerFactory.getLogger(ExceptionCatch.class); + + //定义Map,配置异常类型所对应的错误代码,使用 ImmutableMap 一旦写入数据,就无法更改,只读并且线程安全 + private static ImmutableMap, ResultCode> EXCEPTIONS; + //定义map的builder对象,去构建ImmutableMap + protected static ImmutableMap.Builder, ResultCode> builder = ImmutableMap.builder(); + + @ExceptionHandler(Exception.class) + @ResponseBody + public ResponseResult exception(Exception exception) { + exception.printStackTrace(); + //记录日志 + LOGGER.error("catch exception:{}", exception.getMessage()); + if (EXCEPTIONS == null) { + EXCEPTIONS = builder.build();//EXCEPTION构建成功 + } + //从EXCEPTIONS中找到异常类型所对应的错误代码,如果找到了,将错误代码相应给用户,如果找不到则给用户相应99999 + ResultCode resultCode = EXCEPTIONS.get(exception.getClass()); + if (resultCode != null) { + return new ResponseResult(resultCode); + } + //返回99999异常 + return new ResponseResult(CommonCode.SERVER_ERROR); + } + + static { + //定义异常类型所对应的错误代码 + builder.put(HttpMessageNotReadableException.class, CommonCode.INVALID_PARAM); + } + + @ExceptionHandler(CustomException.class)//捕获CustomException类型异常 + @ResponseBody + public ResponseResult customException(CustomException customException) { + customException.printStackTrace(); + //记录日志 + LOGGER.error("catch exception:{}", customException.getMessage()); + + ResultCode resultCode = customException.getResultCode(); + return new ResponseResult(resultCode); + }*/ +} diff --git a/src/main/java/com/msdw/tms/common/exception/RRException.java b/src/main/java/com/msdw/tms/common/exception/RRException.java new file mode 100644 index 0000000..ff05905 --- /dev/null +++ b/src/main/java/com/msdw/tms/common/exception/RRException.java @@ -0,0 +1,61 @@ +/** + * Copyright (c) 2016-2019 人人开源 All rights reserved. + * + * https://www.renren.io + * + * 版权所有,侵权必究! + */ + +package com.msdw.tms.common.exception; + +/** + * 自定义异常 + * + * @author Mark sunlightcs@gmail.com + */ +public class RRException extends RuntimeException { + /*private static final long serialVersionUID = 1L; + + private String msg; + private int code = 500; + + public RRException(String msg) { + super(msg); + this.msg = msg; + } + + public RRException(String msg, Throwable e) { + super(msg, e); + this.msg = msg; + } + + public RRException(String msg, int code) { + super(msg); + this.msg = msg; + this.code = code; + } + + public RRException(String msg, int code, Throwable e) { + super(msg, e); + this.msg = msg; + this.code = code; + } + + public String getMsg() { + return msg; + } + + public void setMsg(String msg) { + this.msg = msg; + } + + public int getCode() { + return code; + } + + public void setCode(int code) { + this.code = code; + } + */ + +} diff --git a/src/main/java/com/msdw/tms/common/utils/AliyunOssUtil.java b/src/main/java/com/msdw/tms/common/utils/AliyunOssUtil.java new file mode 100644 index 0000000..05084d7 --- /dev/null +++ b/src/main/java/com/msdw/tms/common/utils/AliyunOssUtil.java @@ -0,0 +1,315 @@ +package com.msdw.tms.common.utils; + +import com.aliyun.oss.ClientException; +import com.aliyun.oss.OSSClient; +import com.aliyun.oss.OSSException; +import com.aliyun.oss.model.*; +import com.msdw.tms.config.AliyunOssConfig; +import org.springframework.web.multipart.MultipartFile; + +import javax.servlet.http.HttpServletResponse; +import java.io.ByteArrayInputStream; +import java.io.IOException; +import java.io.InputStream; +import java.io.OutputStream; +import java.net.URLEncoder; +import java.text.SimpleDateFormat; +import java.util.Date; + + +public class AliyunOssUtil { + + private static String sdf = new SimpleDateFormat("yyyyMMdd").format(new Date()); + + /** + * 创建存储空间 + * + * @param client + * @param config + */ + public static void createBucket(OSSClient client, AliyunOssConfig config) { + // 判断存储空间是否存在,不存在,则创建 + if (!client.doesBucketExist(config.getBucketName())) { + CreateBucketRequest bucketRequest = new CreateBucketRequest(null); + // 设置仓库名称 + bucketRequest.setBucketName(config.getBucketName()); + // 设置仓库权限 + bucketRequest.setCannedACL(CannedAccessControlList.PublicRead); + // 创建仓库 + client.createBucket(bucketRequest); + } + } + + /** + * 上传文件 + * + * @param file 需要上传的文件 + * @param client + * @param config + * @return + * @throws OSSException + * @throws ClientException + * @throws IOException + */ + public static FilesResult uploadFiles(MultipartFile file, OSSClient client, AliyunOssConfig config) throws OSSException, ClientException, IOException { + FilesResult result = new FilesResult(); + // 创建存储空间 + createBucket(client, config); + // 获取文件名 + String fileUrl = file.getOriginalFilename(); + // 获取文件尾缀 + String ext = fileUrl.substring(fileUrl.lastIndexOf(".")); + // 获取文件类型 + String fileType = getFileType(ext); + //创建文件 + String folderName = ext.substring(ext.indexOf(".") + 1); + String folder = createFolder(client, config.getBucketName(), folderName); + // 组合储存路径 + String fileName = folder + "/" + sdf + "/" + System.currentTimeMillis() + ext; + long fileSize = file.getSize(); + + ObjectMetadata metadata = new ObjectMetadata(); + // 指定该Object被下载时的网页的缓存行为 + metadata.setCacheControl("no-cache"); + // 指定该Object下设置Header + metadata.setHeader("Pragma", "no-cache"); + // 指定该Object被下载时的内容编码格式 + metadata.setContentEncoding("utf-8"); + // 文件的MIME,定义文件的类型及网页编码,决定浏览器将以什么形式、什么编码读取文件。如果用户没有指定则根据Key或文件名的扩展名生成, + // 如果没有扩展名则填默认值application/octet-stream + metadata.setContentType(fileType); + // 指定该Object被下载时的名称(指示MINME用户代理如何显示附加的文件,打开或下载,及文件名称) + metadata.setContentDisposition("filename/filesize=" + file.getName() + "/" + fileSize + "Byte."); + // 上传文件 (上传文件流的形式) + client.putObject(config.getBucketName(), fileName, new ByteArrayInputStream(file.getBytes()), metadata); + result.setFileName(fileName); + result.setFileUrl(config.getSufferUrl() + fileName); + + if (null != client) + client.shutdown(); + + return result; + } + + /** + * 用户头像上传 + * + * @param file 需要上传的文件 + * @param client + * @param config + * @return + * @throws OSSException + * @throws ClientException + * @throws IOException + */ + public static FilesResult uploadUserAvatars(MultipartFile file, OSSClient client, AliyunOssConfig config) throws OSSException, ClientException, IOException { + FilesResult result = new FilesResult(); + String userAvatars = config.getUserAvatars(); + // 创建存储空间 + createBucket(client, config); + // 获取文件名 + String fileUrl = file.getOriginalFilename(); + // 获取文件尾缀 + String ext = fileUrl.substring(fileUrl.lastIndexOf(".")); + // 获取文件类型 + String fileType = getFileType(ext); + // 组合储存路径 + String fileName = userAvatars + "/" + sdf + "/" + System.currentTimeMillis() + ext; + long fileSize = file.getSize(); + + ObjectMetadata metadata = new ObjectMetadata(); + // 指定该Object被下载时的网页的缓存行为 + metadata.setCacheControl("no-cache"); + // 指定该Object下设置Header + metadata.setHeader("Pragma", "no-cache"); + // 指定该Object被下载时的内容编码格式 + metadata.setContentEncoding("utf-8"); + // 文件的MIME,定义文件的类型及网页编码,决定浏览器将以什么形式、什么编码读取文件。如果用户没有指定则根据Key或文件名的扩展名生成, + // 如果没有扩展名则填默认值application/octet-stream + metadata.setContentType(fileType); + // 指定该Object被下载时的名称(指示MINME用户代理如何显示附加的文件,打开或下载,及文件名称) + metadata.setContentDisposition("filename/filesize=" + file.getName() + "/" + fileSize + "Byte."); + // 上传文件 (上传文件流的形式) + client.putObject(config.getBucketName(), fileName, new ByteArrayInputStream(file.getBytes()), metadata); + result.setFileName(fileName); + result.setFileUrl(config.getSufferUrl() + fileName); + + if (null != client) + client.shutdown(); + + return result; + } + + /** + * 简单上传 + * + * @param client + * @param config + * @param objectName 表示上传文件到OSS时需要指定包含文件后缀在内的完整路径,例如abc/efg/123.jpg。 + * @param stream + * @return + */ + public static FilesResult uploadFiles(OSSClient client, AliyunOssConfig config, String objectName, ByteArrayInputStream stream) { + FilesResult result = new FilesResult(); + try { + PutObjectRequest putObjectRequest = new PutObjectRequest(config.getBucketName(), objectName, stream); + client.putObject(putObjectRequest); + result.setFileName(objectName); + result.setFileUrl(config.getSufferUrl() + objectName); + + } catch (Exception e) { + e.printStackTrace(); + throw e; + } finally { + if (null != client) + client.shutdown(); + } + return result; + } + + /** + * 文件下载 + * + * @param response + * @param client + * @param config + * @param objectName + */ + public static void downloadFiles(HttpServletResponse response, OSSClient client, AliyunOssConfig config, + String objectName) throws IOException { + + OSSObject ossObject = client.getObject(config.getBucketName(), objectName); + InputStream input = null; + OutputStream outputStream = null; + try { + // 获取文件名 + String fileName = objectName.substring(objectName.lastIndexOf("/") + 1); + //获取输入流 + input = ossObject.getObjectContent(); + // 获取OutputStream输出流 + outputStream = response.getOutputStream(); + byte[] buffer = new byte[input.available()]; + + response.setHeader("content-Type", "application/vnd.ms-excel"); + response.setHeader("Content-disposition", "attachment;filename=" + URLEncoder.encode(fileName, "UTF-8")); + response.flushBuffer(); + + for (int length = 0; (length = input.read(buffer)) > 0; ) { + outputStream.write(buffer, 0, length); + } + } catch (IOException e) { + e.printStackTrace(); + throw e; + } finally { + if (null != outputStream) { + try { + outputStream.close(); + } catch (IOException e) { + e.printStackTrace(); + } + } + if (null != input) { + try { + input.close(); + } catch (IOException e) { + e.printStackTrace(); + } + } + if (null != client) + client.shutdown(); + } + + } + + /** + * 删除存储空间buckName + * + * @param ossClient oss对象 + * @param bucketName 存储空间 + */ + public static void deleteBucket(OSSClient ossClient, String bucketName) { + ossClient.deleteBucket(bucketName); + } + + /** + * 创建模拟文件夹 + * + * @param ossClient oss连接 + * @param bucketName 存储空间 + * @param folder 模拟文件夹名如"qj_nanjing/" + * @return + */ + public static String createFolder(OSSClient ossClient, String bucketName, String folder) { + // 文件夹名 + final String keySuffixWithSlash = folder; + // 判断文件夹是否存在,不存在则创建 + if (!ossClient.doesObjectExist(bucketName, keySuffixWithSlash)) { + // 创建文件夹 + ossClient.putObject(bucketName, keySuffixWithSlash, new ByteArrayInputStream(new byte[0])); + // 得到文件夹名 + OSSObject object = ossClient.getObject(bucketName, keySuffixWithSlash); + String fileDir = object.getKey(); + return fileDir; + } + return keySuffixWithSlash; + } + + /** + * 根据key删除OSS服务器上的文件 + * + * @param ossClient oss连接 + * @param bucketName 存储空间 + * @param fileName 模拟文件夹名 如"qj_nanjing/" + */ + public static void deleteFile(OSSClient ossClient, String bucketName, String fileName) { + ossClient.deleteObject(bucketName, fileName); + } + + /** + * 获取文件类型 + * + * @param fileExtension 文件后缀 + * @return + */ + public static String getFileType(String fileExtension) { + if (".bmp".equalsIgnoreCase(fileExtension)) { + return "image/bmp"; + } + if (".gif".equalsIgnoreCase(fileExtension)) { + return "image/gif"; + } + if (".jpeg".equalsIgnoreCase(fileExtension) || ".jpg".equalsIgnoreCase(fileExtension) + || ".png".equalsIgnoreCase(fileExtension)) { + return "image/jpg"; + } + if (".html".equalsIgnoreCase(fileExtension)) { + return "text/html"; + } + if (".txt".equalsIgnoreCase(fileExtension)) { + return "text/plain"; + } + if (".vsd".equalsIgnoreCase(fileExtension)) { + return "application/vnd.visio"; + } + if (".ppt".equalsIgnoreCase(fileExtension) || ".pptx".equalsIgnoreCase(fileExtension)) { + return "application/vnd.ms-powerpoint"; + } + if (".doc".equalsIgnoreCase(fileExtension) || ".docx".equalsIgnoreCase(fileExtension)) { + return "application/msword"; + } + if (".xml".equalsIgnoreCase(fileExtension)) { + return "text/xml"; + } + if (".mp4".equalsIgnoreCase(fileExtension) || ".avi".equalsIgnoreCase(fileExtension)) { + return "video/mp4"; + } + if (".mpg".equalsIgnoreCase(fileExtension) || ".mpeg".equalsIgnoreCase(fileExtension)) { + return "video/mpeg"; + } + if ("pdf".equalsIgnoreCase(fileExtension)) { + return "application/pdf"; + } + return "application/octet-stream"; + } + +} diff --git a/src/main/java/com/msdw/tms/common/utils/BasePage.java b/src/main/java/com/msdw/tms/common/utils/BasePage.java new file mode 100644 index 0000000..fa1f604 --- /dev/null +++ b/src/main/java/com/msdw/tms/common/utils/BasePage.java @@ -0,0 +1,19 @@ +package com.msdw.tms.common.utils; + +import lombok.Data; + +/** + * @ProjectName: tms + * @Package: com.msdw.tms.entity + * @ClassName: BasePage + * @Description: java类作用描述 + * @Author: Maureen.Rong + * @CreateDate: 2020/10/9 17:42 + * @UpdateDate: 2020/10/9 17:42 + * @Version: 1.0 + */ +@Data +public class BasePage { + private int pageSize = 10; + private int pageNum = 1; +} diff --git a/src/main/java/com/msdw/tms/common/utils/Constant.java b/src/main/java/com/msdw/tms/common/utils/Constant.java new file mode 100644 index 0000000..96214b0 --- /dev/null +++ b/src/main/java/com/msdw/tms/common/utils/Constant.java @@ -0,0 +1,489 @@ +/** + * Copyright (c) 2016-2019 人人开源 All rights reserved. + *

+ * https://www.renren.io + *

+ * 版权所有,侵权必究! + */ + +package com.msdw.tms.common.utils; + +/** + * 常量 + * + * @author Mark sunlightcs@gmail.com + */ +public class Constant { + /** + * 超级管理员ID + */ + public static final int SUPER_ADMIN = 1; + /** + * 管理员 + */ + public static final int ADMIN = 2; + /** + * 教师 + */ + public static final int TEACHER = 3; + /** + * 学生 + */ + public static final int STUDENT = 4; + /** + * 当前页码 + */ + public static final String PAGE = "page"; + /** + * 每页显示记录数 + */ + public static final String LIMIT = "limit"; + /** + * 排序字段 + */ + public static final String ORDER_FIELD = "sidx"; + /** + * 排序方式 + */ + public static final String ORDER = "order"; + /** + * 升序 + */ + public static final String ASC = "asc"; + /** + * 通过excel批量导入试题数据时起始行 + */ + public static final int ROW_INDEX = 2; + /** + * 通过excel批量导入试题数据时起始行 + */ + public static final int CELL_INDEX = 0; + /** + * 需要提取的样式所在的行号 + */ + public static final int STYLE_INDEX = 2; + /** + * 试题选项A + */ + public static final String A = "A"; + /** + * 试题选项B + */ + public static final String B = "B"; + /** + * 试题选项C + */ + public static final String C = "C"; + /** + * 试题选项D + */ + public static final String D = "D"; + /** + * 试题选项E + */ + public static final String E = "E"; + /** + * 试题选项F + */ + public static final String F = "F"; + /** + * excel模板信息表id + */ + public static final int XLSX_TEMPLATE_ID = 1; + /** + * 测评规则表id + */ + public static final int EVALUATION_RULES_ID = 1; + /** + * excel后缀 + */ + public static final String EXCEL_SUFFIX = ".xlsx"; + /** + * 测评总分 + */ + public static final int EVALUATION_SCORE = 100; + /** + * 及格分数 + */ + public static final int PASSING_SCORE = 60; + /** + * 测评是否通过 1、通过/0、未通过 + */ + public static final String EVALUATIONN_PASSED = "通过"; + public static final String EVALUATIONN_NOT_PASSED = "未通过"; + /** + * 菜单类型 + * + * @author chenshun + * @email sunlightcs@gmail.com + * @date 2016年11月15日 下午1:24:29 + */ + public enum MenuType { + /** + * 目录 + */ + CATALOG(0), + /** + * 菜单 + */ + MENU(1), + /** + * 按钮 + */ + BUTTON(2); + + private int value; + + MenuType(int value) { + this.value = value; + } + + public int getValue() { + return value; + } + } + + /** + * 定时任务状态 + * + * @author chenshun + * @email sunlightcs@gmail.com + * @date 2016年12月3日 上午12:07:22 + */ + public enum ScheduleStatus { + /** + * 正常 + */ + NORMAL(0), + /** + * 暂停 + */ + PAUSE(1); + + private int value; + + ScheduleStatus(int value) { + this.value = value; + } + + public int getValue() { + return value; + } + } + + /** + * 云服务商 + */ + public enum CloudService { + /** + * 七牛云 + */ + QINIU(1), + /** + * 阿里云 + */ + ALIYUN(2), + /** + * 腾讯云 + */ + QCLOUD(3); + + private int value; + + CloudService(int value) { + this.value = value; + } + + public int getValue() { + return value; + } + } + + /** + * 是否启用 + */ + public enum IsEnable { + /** + * 启用 + */ + ENABLE(1, "启用"), + /** + * 不启用 + */ + NOT_ENABLE(0, "不启用"); + + private Integer type; //类型 + private String desc; //描述 + + IsEnable(Integer type, String desc) { + this.type = type; + this.desc = desc; + } + + public Integer getType() { + return type; + } + + public void setType(Integer type) { + this.type = type; + } + + public String getDesc() { + return desc; + } + + public void setDesc(String desc) { + this.desc = desc; + } + } + + + /** + * 是否删除:0使用,1删除,默认0使用 + */ + public enum IsDel { + /** + * 删除 + */ + DEL(1, "已删除"), + /** + * 不删除 + */ + NOT_DEL(0, "不删除"); + + private Integer type; //类型 + private String desc; //描述 + + IsDel(Integer type, String desc) { + this.type = type; + this.desc = desc; + } + + public Integer getType() { + return type; + } + + public void setType(Integer type) { + this.type = type; + } + + public String getDesc() { + return desc; + } + + public void setDesc(String desc) { + this.desc = desc; + } + } + + /** + * 评测规则类型 + */ + public enum RulesType { + /** + * 随机 + */ + RANDOM(1, "随机"), + /** + * 自定义 + */ + CUSTOMIZE(0, "自定义"); + + private Integer type; //类型 + private String desc; //描述 + + RulesType(Integer type, String desc) { + this.type = type; + this.desc = desc; + } + + public Integer getType() { + return type; + } + + public void setType(Integer type) { + this.type = type; + } + + public String getDesc() { + return desc; + } + + public void setDesc(String desc) { + this.desc = desc; + } + } + + /** + * 试题类型 + */ + public enum QuestionType { + /** + * 单选题 + */ + SINGLE_CHOICE(1, "单选题"), + /** + * 多选题 + */ + MULTIPLE_CHOICE(2, "多选题"), + /** + * 判断题 + */ + TRUE_OR_FALSE(3, "判断题"); + + private Integer type; //类型 + private String desc; //描述 + + QuestionType(Integer type, String desc) { + this.type = type; + this.desc = desc; + } + + public Integer getType() { + return type; + } + + public void setType(Integer type) { + this.type = type; + } + + public String getDesc() { + return desc; + } + + public void setDesc(String desc) { + this.desc = desc; + } + + } + + /** + * 项目是否提交1:已提交/0:未提交 + */ + public enum Submit { + + SUBMIT(1, "已提交"), + NOT_SUBMIT(0, "未提交"); + + + private Integer type; + private String desc; + + Submit(Integer type, String desc) { + this.type = type; + this.desc = desc; + } + + public Integer getType() { + return type; + } + + public void setType(Integer type) { + this.type = type; + } + + public String getDesc() { + return desc; + } + + public void setDesc(String desc) { + this.desc = desc; + } + } + + public enum Ascription { + + SYSTEM(1, "系统内置"), + USER(0, "用户自建"); + + private Integer type; + private String desc; + + Ascription(Integer type, String desc) { + this.type = type; + this.desc = desc; + } + + public Integer getType() { + return type; + } + + public void setType(Integer type) { + this.type = type; + } + + public String getDesc() { + return desc; + } + + public void setDesc(String desc) { + this.desc = desc; + } + } + + /** + * 当前题目答案是否正确 1、正确/0、错误 + */ + public enum QuestionIsTure { + + TRUE(1, "正确"), + FALSE(0, "错误"); + + private Integer type; + private String desc; + + QuestionIsTure(Integer type, String desc) { + this.type = type; + this.desc = desc; + } + + public Integer getType() { + return type; + } + + public void setType(Integer type) { + this.type = type; + } + + public String getDesc() { + return desc; + } + + public void setDesc(String desc) { + this.desc = desc; + } + } + + /** + * 当前题目状态 1、已作/0、未作 + */ + public enum QuestionStatus { + + MADE(1, "已作"), + NOT_MADE(0, "未作"); + + private Integer type; + private String desc; + + QuestionStatus(Integer type, String desc) { + this.type = type; + this.desc = desc; + } + + public Integer getType() { + return type; + } + + public void setType(Integer type) { + this.type = type; + } + + public String getDesc() { + return desc; + } + + public void setDesc(String desc) { + this.desc = desc; + } + } +} \ No newline at end of file diff --git a/src/main/java/com/msdw/tms/common/utils/DownloadUtils.java b/src/main/java/com/msdw/tms/common/utils/DownloadUtils.java new file mode 100644 index 0000000..57c0099 --- /dev/null +++ b/src/main/java/com/msdw/tms/common/utils/DownloadUtils.java @@ -0,0 +1,19 @@ +package com.msdw.tms.common.utils; + +import javax.servlet.ServletOutputStream; +import javax.servlet.http.HttpServletResponse; +import java.io.ByteArrayOutputStream; +import java.io.IOException; + +public class DownloadUtils { + public void download(ByteArrayOutputStream byteArrayOutputStream, HttpServletResponse response, String returnName) throws IOException { + response.setContentType("application/octet-stream"); + returnName = response.encodeURL(new String(returnName.getBytes(), "iso8859-1")); //保存的文件名,必须和页面编码一致,否则乱码 + response.addHeader("content-disposition", "attachment;filename=" + returnName); + response.setContentLength(byteArrayOutputStream.size()); + ServletOutputStream outputstream = response.getOutputStream(); //取得输出流 + byteArrayOutputStream.writeTo(outputstream); //写到输出流 + byteArrayOutputStream.close(); //关闭 + outputstream.flush(); //刷数据 + } +} \ No newline at end of file diff --git a/src/main/java/com/msdw/tms/common/utils/FilesResult.java b/src/main/java/com/msdw/tms/common/utils/FilesResult.java new file mode 100644 index 0000000..aa36a77 --- /dev/null +++ b/src/main/java/com/msdw/tms/common/utils/FilesResult.java @@ -0,0 +1,15 @@ +package com.msdw.tms.common.utils; + +import lombok.Data; +import lombok.ToString; + +@Data +@ToString +public class FilesResult { + // 文件名 + private String fileName; + // 文件在储存空间的路径 + private String fileUrl; + // 上传状态 + private String status; +} diff --git a/src/main/java/com/msdw/tms/common/utils/MoneyConversionUtil.java b/src/main/java/com/msdw/tms/common/utils/MoneyConversionUtil.java new file mode 100644 index 0000000..337b341 --- /dev/null +++ b/src/main/java/com/msdw/tms/common/utils/MoneyConversionUtil.java @@ -0,0 +1,27 @@ +package com.msdw.tms.common.utils; + +import java.math.BigDecimal; + +/** + * @ProjectName: tms + * @Package: com.msdw.tms.common.utils + * @ClassName: MoneyConversionUtil + * @Description: 钱换算 + * @Author: Maureen.Rong + * @CreateDate: 2020/11/2 19:34 + * @UpdateDate: 2020/11/2 19:34 + * @Version: 1.0 + */ +public class MoneyConversionUtil { + + + public static BigDecimal moneyConversion(Double money) { + BigDecimal bigDecimal1 = new BigDecimal(Double.toString(money)); + BigDecimal bigDecimal2 = new BigDecimal(10000); + double val = bigDecimal1.multiply(bigDecimal2).doubleValue(); + BigDecimal bigDecimal = new BigDecimal(val); + System.out.println(bigDecimal.toString()); + + return bigDecimal; + } +} diff --git a/src/main/java/com/msdw/tms/common/utils/PageUtil.java b/src/main/java/com/msdw/tms/common/utils/PageUtil.java new file mode 100644 index 0000000..63be79b --- /dev/null +++ b/src/main/java/com/msdw/tms/common/utils/PageUtil.java @@ -0,0 +1,22 @@ +package com.msdw.tms.common.utils; + +import com.baomidou.mybatisplus.annotation.TableField; +import lombok.Data; + +/** + * @ProjectName: tms + * @Package: com.msdw.tms.common.utils + * @ClassName: PageUtil + * @Description: java类作用描述 + * @Author: Maureen.Rong + * @CreateDate: 2020/10/23 10:49 + * @UpdateDate: 2020/10/23 10:49 + * @Version: 1.0 + */ +@Data +public class PageUtil { + @TableField(exist = false) + private int pageSize = 10; + @TableField(exist = false) + private int pageNum = 0; +} diff --git a/src/main/java/com/msdw/tms/common/utils/PageUtils.java b/src/main/java/com/msdw/tms/common/utils/PageUtils.java new file mode 100644 index 0000000..aa7221b --- /dev/null +++ b/src/main/java/com/msdw/tms/common/utils/PageUtils.java @@ -0,0 +1,112 @@ +/** + * Copyright (c) 2016-2019 人人开源 All rights reserved. + *

+ * https://www.renren.io + *

+ * 版权所有,侵权必究! + */ + +package com.msdw.tms.common.utils; + +import com.baomidou.mybatisplus.core.metadata.IPage; +import lombok.Data; + +import java.io.Serializable; +import java.util.List; + +/** + * 分页工具类 + * + * @author Mark sunlightcs@gmail.com + */ +@Data +public class PageUtils implements Serializable { + private static final long serialVersionUID = 1L; + /** + * 总记录数 + */ + private int totalCount; + /** + * 每页记录数 + */ + private int pageSize; + /** + * 总页数 + */ + private int totalPage; + /** + * 当前页数 + */ + private int currPage; + /** + * 列表数据 + */ + private List list; + + /** + * 分页 + * @param list 列表数据 + * @param totalCount 总记录数 + * @param pageSize 每页记录数 + * @param currPage 当前页数 + */ + public PageUtils(List list, int totalCount, int pageSize, int currPage) { + this.list = list; + this.totalCount = totalCount; + this.pageSize = pageSize; + this.currPage = currPage; + this.totalPage = (int) Math.ceil((double) totalCount / pageSize); + } + + /** + * 分页 + */ + public PageUtils(IPage page) { + this.list = page.getRecords(); + this.totalCount = (int) page.getTotal(); + this.pageSize = (int) page.getSize(); + this.currPage = (int) page.getCurrent(); + this.totalPage = (int) page.getPages(); + } + + public int getTotalCount() { + return totalCount; + } + + public void setTotalCount(int totalCount) { + this.totalCount = totalCount; + } + + public int getPageSize() { + return pageSize; + } + + public void setPageSize(int pageSize) { + this.pageSize = pageSize; + } + + public int getTotalPage() { + return totalPage; + } + + public void setTotalPage(int totalPage) { + this.totalPage = totalPage; + } + + public int getCurrPage() { + return currPage; + } + + public void setCurrPage(int currPage) { + this.currPage = currPage; + } + + public List getList() { + return list; + } + + public void setList(List list) { + this.list = list; + } + +} diff --git a/src/main/java/com/msdw/tms/common/utils/Query.java b/src/main/java/com/msdw/tms/common/utils/Query.java new file mode 100644 index 0000000..f94a521 --- /dev/null +++ b/src/main/java/com/msdw/tms/common/utils/Query.java @@ -0,0 +1,94 @@ +/** + * Copyright (c) 2016-2019 人人开源 All rights reserved. + *

+ * https://www.renren.io + *

+ * 版权所有,侵权必究! + */ + +package com.msdw.tms.common.utils; + +import com.baomidou.mybatisplus.core.metadata.IPage; +import com.baomidou.mybatisplus.core.metadata.OrderItem; +import com.baomidou.mybatisplus.extension.plugins.pagination.Page; +import com.msdw.tms.common.xss.SQLFilter; +import org.apache.commons.lang.StringUtils; + +import java.util.Map; + +/** + * 查询参数 + * + * @author Mark sunlightcs@gmail.com + */ +public class Query { + + public IPage getPage(Map params) { + return this.getPage(params, null, false); + } + + public IPage getPage(Map params, String defaultOrderField, boolean isAsc) { + //分页参数 + long curPage = 1; + long limit = 10; + + if (params.get(Constant.PAGE) != null) { + curPage = Long.parseLong((String) params.get(Constant.PAGE)); + } + if (params.get(Constant.LIMIT) != null) { + limit = Long.parseLong((String) params.get(Constant.LIMIT)); + } + + //分页对象 + Page page = new Page<>(curPage, limit); + + //分页参数 + params.put(Constant.PAGE, page); + + //排序字段 + //防止SQL注入(因为sidx、order是通过拼接SQL实现排序的,会有SQL注入风险) + String orderField = SQLFilter.sqlInject((String) params.get(Constant.ORDER_FIELD)); + String order = (String) params.get(Constant.ORDER); + + //前端字段排序 + if (StringUtils.isNotEmpty(orderField) && StringUtils.isNotEmpty(order)) { + if (Constant.ASC.equalsIgnoreCase(order)) { + return page.addOrder(OrderItem.asc(orderField)); + } else { + return page.addOrder(OrderItem.desc(orderField)); + } + } + + //没有排序字段,则不排序 + if (StringUtils.isBlank(defaultOrderField)) { + return page; + } + + //默认排序 + if (isAsc) { + page.addOrder(OrderItem.asc(defaultOrderField)); + } else { + page.addOrder(OrderItem.desc(defaultOrderField)); + } + + return page; + } + + public IPage getPage(Integer pageNo, Integer size) { + //分页参数 + long curPage = 1; + long limit = 10; + + if (pageNo != null) { + curPage = Long.parseLong(pageNo.toString()); + } + if (size != null) { + limit = Long.parseLong(size.toString()); + } + + //分页对象 + Page page = new Page<>(curPage, limit); + + return page; + } +} diff --git a/src/main/java/com/msdw/tms/common/utils/R.java b/src/main/java/com/msdw/tms/common/utils/R.java new file mode 100644 index 0000000..ea7caf9 --- /dev/null +++ b/src/main/java/com/msdw/tms/common/utils/R.java @@ -0,0 +1,63 @@ +/** + * Copyright (c) 2016-2019 人人开源 All rights reserved. + *

+ * https://www.renren.io + *

+ * 版权所有,侵权必究! + */ + +package com.msdw.tms.common.utils; + +import java.util.HashMap; +import java.util.Map; + +/** + * 返回数据 + * + * @author Mark sunlightcs@gmail.com + */ +public class R extends HashMap { + private static final long serialVersionUID = 1L; + + public R() { + put("status", 200); + put("errmessage", "success"); + } + + public static R error() { + return error(500, "未知异常,请联系管理员"); + } + + public static R error(String msg) { + return error(500, msg); + } + + public static R error(int code, String msg) { + R r = new R(); + r.put("status", code); + r.put("errmessage", msg); + return r; + } + + public static R ok(String msg) { + R r = new R(); + r.put("errmessage", msg); + return r; + } + + public static R ok(Map map) { + R r = new R(); + r.putAll(map); + return r; + } + + public static R ok() { + return new R(); + } + + public R put(String key, Object value) { + super.put(key, value); + return this; + } + +} diff --git a/src/main/java/com/msdw/tms/common/utils/RedisConfig.java b/src/main/java/com/msdw/tms/common/utils/RedisConfig.java new file mode 100644 index 0000000..950399b --- /dev/null +++ b/src/main/java/com/msdw/tms/common/utils/RedisConfig.java @@ -0,0 +1,41 @@ +package com.msdw.tms.common.utils; + +import org.springframework.beans.factory.annotation.Autowired; +import org.springframework.data.redis.core.RedisTemplate; +import org.springframework.stereotype.Component; + +import javax.annotation.PostConstruct; + +/** + * @ProjectName: tms + * @Package: com.msdw.tms.common.utils + * @ClassName: RedisConfig + * @Description: redis配置类, 用于更改RedisTemplate来创建工具类 + * @Author: Maureen.Rong + * @CreateDate: 2020/11/13 9:35 + * @UpdateDate: 2020/11/13 9:35 + * @Version: 1.0 + */ +@Component +public class RedisConfig { + @Autowired + private RedisTemplate redisTemplate; + public static RedisTemplate redis; + + + @PostConstruct + public void getRedisTemplate() { + redis = this.redisTemplate; + } + + /** + * 读取缓存 + * + * @param key + * @return + */ + public Object get(final String key) { + return redis.opsForValue().get(key); + } + +} diff --git a/src/main/java/com/msdw/tms/common/utils/RestUtil.java b/src/main/java/com/msdw/tms/common/utils/RestUtil.java new file mode 100644 index 0000000..e864c30 --- /dev/null +++ b/src/main/java/com/msdw/tms/common/utils/RestUtil.java @@ -0,0 +1,186 @@ +package com.msdw.tms.common.utils; + +import java.io.BufferedReader; +import java.io.IOException; +import java.io.InputStreamReader; +import java.io.PrintWriter; +import java.util.HashMap; +import java.util.List; +import java.util.Map; + +/** + * @ProjectName: tms + * @Package: com.msdw.tms.common.utils + * @ClassName: RestUtil + * @Description: java调用接口方式 + * @Author: Maureen.Rong + * @CreateDate: 2020/11/13 11:26 + * @UpdateDate: 2020/11/13 11:26 + * @Version: 1.0 + */ +public class RestUtil { + + + public final static String postUrlBysave = "http://localhost:8080/sichuan/chuanda/userAssets/save"; + //远程调用接口 + + + /** + * 发送GET请求 + * + * @param url 目的地址 + * @param parameters 请求参数,Map类型。 + * @return 远程响应结果 + */ + public static String sendGet(String url, Map parameters) { + String result = ""; + BufferedReader in = null;// 读取响应输入流 + StringBuffer sb = new StringBuffer();// 存储参数 + String params = "";// 编码之后的参数 + try { + // 编码请求参数 + if (parameters.size() == 1) { + for (String name : parameters.keySet()) { + sb.append(name).append("=").append( + java.net.URLEncoder.encode(parameters.get(name), + "UTF-8")); + } + params = sb.toString(); + } else { + for (String name : parameters.keySet()) { + sb.append(name).append("=").append( + java.net.URLEncoder.encode(parameters.get(name), + "UTF-8")).append("&"); + } + String temp_params = sb.toString(); + params = temp_params.substring(0, temp_params.length() - 1); + } + String full_url = url + "?" + params; + System.out.println(full_url); + // 创建URL对象 + java.net.URL connURL = new java.net.URL(full_url); + // 打开URL连接 + java.net.HttpURLConnection httpConn = (java.net.HttpURLConnection) connURL + .openConnection(); + // 设置通用属性 + httpConn.setRequestProperty("Accept", "*/*"); + httpConn.setRequestProperty("Connection", "Keep-Alive"); + httpConn.setRequestProperty("User-Agent", + "Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 6.1)"); + // 建立实际的连接 + httpConn.connect(); + // 响应头部获取 + Map> headers = httpConn.getHeaderFields(); + // 遍历所有的响应头字段 + for (String key : headers.keySet()) { + System.out.println(key + "\t:\t" + headers.get(key)); + } + // 定义BufferedReader输入流来读取URL的响应,并设置编码方式 + in = new BufferedReader(new InputStreamReader(httpConn + .getInputStream(), "UTF-8")); + String line; + // 读取返回的内容 + while ((line = in.readLine()) != null) { + result += line; + } + } catch (Exception e) { + e.printStackTrace(); + } finally { + try { + if (in != null) { + in.close(); + } + } catch (IOException ex) { + ex.printStackTrace(); + } + } + return result; + } + + /** + * 发送POST请求 + * + * @param url 目的地址 + * @param parameters 请求参数,Map类型。 + * @return 远程响应结果 + */ + public static String sendPost(String url, Map parameters) { + String result = "";// 返回的结果 + BufferedReader in = null;// 读取响应输入流 + PrintWriter out = null; + StringBuffer sb = new StringBuffer();// 处理请求参数 + String params = "";// 编码之后的参数 + try { + // 编码请求参数 + if (parameters.size() == 1) { + for (String name : parameters.keySet()) { + sb.append(name).append("=").append( + java.net.URLEncoder.encode(parameters.get(name), + "UTF-8")); + } + params = sb.toString(); + } else { + for (String name : parameters.keySet()) { + sb.append(name).append("=").append( + java.net.URLEncoder.encode(parameters.get(name), + "UTF-8")).append("&"); + } + String temp_params = sb.toString(); + params = temp_params.substring(0, temp_params.length() - 1); + } + // 创建URL对象 + java.net.URL connURL = new java.net.URL(url); + // 打开URL连接 + java.net.HttpURLConnection httpConn = (java.net.HttpURLConnection) connURL + .openConnection(); + // 设置通用属性 + httpConn.setRequestProperty("Accept", "*/*"); + httpConn.setRequestProperty("Connection", "Keep-Alive"); + httpConn.setRequestProperty("User-Agent", + "Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 6.1)"); + // 设置POST方式 + httpConn.setDoInput(true); + httpConn.setDoOutput(true); + // 获取HttpURLConnection对象对应的输出流 + out = new PrintWriter(httpConn.getOutputStream()); + // 发送请求参数 + out.write(params); + // flush输出流的缓冲 + out.flush(); + // 定义BufferedReader输入流来读取URL的响应,设置编码方式 + in = new BufferedReader(new InputStreamReader(httpConn + .getInputStream(), "UTF-8")); + String line; + // 读取返回的内容 + while ((line = in.readLine()) != null) { + result += line; + } + } catch (Exception e) { + e.printStackTrace(); + } finally { + try { + if (out != null) { + out.close(); + } + if (in != null) { + in.close(); + } + } catch (IOException ex) { + ex.printStackTrace(); + } + } + return result; + } + + /** + * 主函数,测试请求 + * + * @param args + */ + public static void main(String[] args) { + Map parameters = new HashMap<>(); + parameters.put("userId", "10001"); + String result = sendPost("http://localhost:8080/sichuan/chuanda/userAssets/save", parameters); + System.out.println(result); + } +} diff --git a/src/main/java/com/msdw/tms/common/utils/TokenUtil.java b/src/main/java/com/msdw/tms/common/utils/TokenUtil.java new file mode 100644 index 0000000..dd3ed80 --- /dev/null +++ b/src/main/java/com/msdw/tms/common/utils/TokenUtil.java @@ -0,0 +1,84 @@ +package com.msdw.tms.common.utils; + +import sun.misc.BASE64Encoder; + +import java.security.MessageDigest; +import java.security.NoSuchAlgorithmException; +import java.util.Random; + +/** + * @ProjectName: tms + * @Package: com.msdw.tms.common.utils + * @ClassName: TokenUtil + * @Description: java类作用描述 + * @Author: Maureen.Rong + * @CreateDate: 2020/10/22 15:10 + * @UpdateDate: 2020/10/22 15:10 + * @Version: 1.0 + */ +public class TokenUtil { + + + private static int userIdNum = 0; + + public static int getUserId() { + + /*RedisTemplate redisTemplate = RedisConfig.redis; + *//*HttpServletRequest request = ((ServletRequestAttributes) RequestContextHolder.getRequestAttributes()).getRequest(); + //获取请求头中的token + String token = request.getHeader("token");*//* + + String token = "UT_tfHcVAEB2I4pUZU0PgryDg=="; + Map parameters = new HashMap(); + + //判断redis中是否有有这个token + String redisToken = redisTemplate.opsForValue().get(token); + int userId = 0; + if (redisToken == null) { + //redisToken为null表示reids中没有这个token,说明从专家通道进入 + userId = getUserIdNum(); + parameters.put("userId", String.valueOf(userId)); + + RestUtil.sendPost(RestUtil.postUrlBysave, parameters); + return userId; + } else { + //从学生通道进入的有token + parameters.put("userId", redisToken); + RestUtil.sendPost(RestUtil.postUrlBysave, parameters); + return Integer.parseInt(redisToken); + }*/ + return 1; + + } + + public static int getUserIdNum() { + return userIdNum += 1; + } + + + /** + * 生成Token + * Token:Nv6RRuGEVvmGjB+jimI/gw== + * + * @return + */ + public static String makeToken() { + String token = (System.currentTimeMillis() + new Random().nextInt(999999999)) + ""; + //数据指纹 128位长 16个字节 md5 + try { + MessageDigest md = MessageDigest.getInstance("md5"); + byte md5[] = md.digest(token.getBytes()); + //base64编码--任意二进制编码明文字符 adfsdfsdfsf + BASE64Encoder encoder = new BASE64Encoder(); + return encoder.encode(md5); + } catch (NoSuchAlgorithmException e) { + throw new RuntimeException(e); + } + } + + public static void main(String[] args) { + System.out.println(makeToken()); + } + + +} diff --git a/src/main/java/com/msdw/tms/common/utils/date/DateUtils.java b/src/main/java/com/msdw/tms/common/utils/date/DateUtils.java new file mode 100644 index 0000000..12b4774 --- /dev/null +++ b/src/main/java/com/msdw/tms/common/utils/date/DateUtils.java @@ -0,0 +1,99 @@ +package com.msdw.tms.common.utils.date; + +import java.text.ParseException; +import java.text.SimpleDateFormat; +import java.time.Instant; +import java.time.LocalDateTime; +import java.time.ZoneId; +import java.time.format.DateTimeFormatter; +import java.util.Calendar; +import java.util.Date; + +public class DateUtils { + + public static String handleTime(Date date) { + Instant instant = date.toInstant(); + ZoneId zoneId = ZoneId.systemDefault(); + LocalDateTime localDateTime = instant.atZone(zoneId).toLocalDateTime(); + return localDateTime.format(DateTimeFormatter.ofPattern("yyyy-MM-dd HH:mm:ss")); // 当前日期和时间 + } + + + public static String formatTime(LocalDateTime time) { + String timeStr1 = time.format(DateTimeFormatter.ofPattern("yyyy-MM-dd HH:mm:ss")); + System.out.println("当前时间为:" + timeStr1); + return timeStr1; + } + + /** + * 时间类型转换 + * + * @param time + * @return + */ + public static String dateForByStr(String time) { + try { + SimpleDateFormat sdf = new SimpleDateFormat("yyyy-MM-dd"); + Date date = sdf.parse(time); + //获取String类型的时间 + String createdate = sdf.format(date); + return createdate; + } catch (ParseException e) { + e.printStackTrace(); + return null; + } + + } + + + /** + * 获取当前时间 + * + * @return + */ + /*public static String getNowTime(Integer userId) { + + String getDate = template.opsForValue().get("date:userId_" + userId); + SimpleDateFormat tempDate = new SimpleDateFormat("yyyy-MM-dd HH:mm:ss"); + String datetime = tempDate.format(new java.util.Date()); + //也可以用这个 + String datetimes = tempDate.format(new Date(System.currentTimeMillis())); + return getDate; + }*/ + + /*public static String getNowTime() { + SimpleDateFormat tempDate = new SimpleDateFormat("yyyy-MM-dd HH:mm:ss"); + String datetime = tempDate.format(new java.util.Date()); + //也可以用这个 + String datetimes = tempDate.format(new Date(System.currentTimeMillis())); + return datetime; + }*/ + + /** + * 获取当前时间往后推几个月 + * + * @param inputDate + * @param number + * @return + */ + public static String getAfterMonth(String inputDate, int number) { + Calendar c = Calendar.getInstance();//获得一个日历的实例 + SimpleDateFormat sdf = new SimpleDateFormat("yyyy-MM-dd"); + Date date = null; + try { + date = sdf.parse(inputDate);//初始日期 + } catch (Exception e) { + + } + c.setTime(date);//设置日历时间 + c.add(Calendar.MONTH, number);//在日历的月份上增加6个月 + String strDate = sdf.format(c.getTime());//的到你想要得6个月后的日期 + return strDate; + } + + public static void main(String[] args) { + String date = getAfterMonth("2020-09-10", 3); + System.out.println(date); + } + +} diff --git a/src/main/java/com/msdw/tms/common/utils/photo/photoUrl.java b/src/main/java/com/msdw/tms/common/utils/photo/photoUrl.java new file mode 100644 index 0000000..cfb87b7 --- /dev/null +++ b/src/main/java/com/msdw/tms/common/utils/photo/photoUrl.java @@ -0,0 +1,15 @@ +package com.msdw.tms.common.utils.photo; + +/** + * @ProjectName: tms + * @Package: com.msdw.tms.common.utils.photo + * @ClassName: photoUrl + * @Description: 图片 + * @Author: Maureen.Rong + * @CreateDate: 2020/11/5 15:35 + * @UpdateDate: 2020/11/5 15:35 + * @Version: 1.0 + */ +public class photoUrl { + private static String getPhotoUrl = ""; +} diff --git a/src/main/java/com/msdw/tms/common/utils/poi/EasyExcelUtil.java b/src/main/java/com/msdw/tms/common/utils/poi/EasyExcelUtil.java new file mode 100644 index 0000000..6f41ba7 --- /dev/null +++ b/src/main/java/com/msdw/tms/common/utils/poi/EasyExcelUtil.java @@ -0,0 +1,28 @@ +package com.msdw.tms.common.utils.poi; + +/** + * @ProjectName: tms + * @Package: com.msdw.tms.common.utils.poi + * @ClassName: EasyExcelUtil + * @Description: java类作用描述 + * @Author: Maureen.Rong + * @CreateDate: 2020/10/23 12:40 + * @UpdateDate: 2020/10/23 12:40 + * @Version: 1.0 + */ + +import com.alibaba.excel.EasyExcel; + +import javax.servlet.http.HttpServletResponse; +import java.io.IOException; +import java.util.List; + +public class EasyExcelUtil { + public static void download(HttpServletResponse response, Class head, List list,String filename) throws IOException { + response.setContentType("application/vnd.ms-excel"); + response.setCharacterEncoding("utf-8"); + response.setHeader("Content-disposition", "attachment;filename="+filename+".xlsx"); + EasyExcel.write(response.getOutputStream(), head).sheet(filename).doWrite(list); + } +} + diff --git a/src/main/java/com/msdw/tms/common/utils/poi/ExcelAttribute.java b/src/main/java/com/msdw/tms/common/utils/poi/ExcelAttribute.java new file mode 100644 index 0000000..31b70b9 --- /dev/null +++ b/src/main/java/com/msdw/tms/common/utils/poi/ExcelAttribute.java @@ -0,0 +1,25 @@ +package com.msdw.tms.common.utils.poi; + +import java.lang.annotation.ElementType; +import java.lang.annotation.Retention; +import java.lang.annotation.RetentionPolicy; +import java.lang.annotation.Target; + +@Retention(RetentionPolicy.RUNTIME) +@Target(ElementType.FIELD) +public @interface ExcelAttribute { + /** + * 对应的列名称 + */ + String name() default ""; + + /** + * excel列的索引 + */ + int sort(); + + /** + * 字段类型对应的格式 + */ + String format() default ""; +} diff --git a/src/main/java/com/msdw/tms/common/utils/poi/ExcelExportUtil.java b/src/main/java/com/msdw/tms/common/utils/poi/ExcelExportUtil.java new file mode 100644 index 0000000..ffe4899 --- /dev/null +++ b/src/main/java/com/msdw/tms/common/utils/poi/ExcelExportUtil.java @@ -0,0 +1,84 @@ +package com.msdw.tms.common.utils.poi; + +import lombok.Data; +import org.apache.poi.ss.usermodel.*; +import org.apache.poi.xssf.usermodel.XSSFWorkbook; + +import javax.servlet.http.HttpServletResponse; +import java.io.InputStream; +import java.lang.reflect.Field; +import java.net.URLEncoder; +import java.util.List; +import java.util.concurrent.atomic.AtomicInteger; + +/** + * 导出Excel工具类 + * 基于模板打印的方式导出: + */ +@Data +public class ExcelExportUtil { + + private int rowIndex; //写入数据的起始行 + private int styleIndex; //需要提取的样式所在的行号 + private Class clazz; //对象的字节码 + private Field fields[]; //对象中的所有属性 + + public ExcelExportUtil(Class clazz, int rowIndex, int styleIndex) { + this.clazz = clazz; + this.rowIndex = rowIndex; + this.styleIndex = styleIndex; + fields = clazz.getDeclaredFields(); + } + + /** + * 基于注解导出 + * 参数: + * response: + * InputStream:模板的输入流 + * objs:数据 + * fileName:生成的文件名 + */ + public void export(HttpServletResponse response, InputStream is, List objs, String fileName) throws Exception { + + //1.根据模板创建工作簿 + XSSFWorkbook workbook = new XSSFWorkbook(is); + //2.读取工作表 + Sheet sheet = workbook.getSheetAt(0); + //3.提取公共的样式 + CellStyle[] styles = getTemplateStyles(sheet.getRow(styleIndex)); + //4.根据数据创建每一行和每一个单元格的数据2 + AtomicInteger datasAi = new AtomicInteger(rowIndex); //数字 + for (T t : objs) { + //datasAi.getAndIncrement() :获取数字,并++ i++ + Row row = sheet.createRow(datasAi.getAndIncrement()); + for (int i = 0; i < styles.length; i++) { + Cell cell = row.createCell(i); + cell.setCellStyle(styles[i]); + for (Field field : fields) { + if (field.isAnnotationPresent(ExcelAttribute.class)) { + field.setAccessible(true); + ExcelAttribute ea = field.getAnnotation(ExcelAttribute.class); + if (i == ea.sort()) { + if (field.get(t) != null) { + cell.setCellValue(field.get(t).toString()); + } + } + } + } + } + } + fileName = URLEncoder.encode(fileName, "UTF-8"); + response.setContentType("application/octet-stream"); + response.setHeader("content-disposition", "attachment;filename=" + new String(fileName.getBytes("ISO8859-1"))); + response.setHeader("filename", fileName); + workbook.write(response.getOutputStream()); + } + + CellStyle[] getTemplateStyles(Row row) { + CellStyle[] styles = new CellStyle[row.getLastCellNum()]; + for (int i = 0; i < row.getLastCellNum(); i++) { + styles[i] = row.getCell(i).getCellStyle(); + } + return styles; + } +} diff --git a/src/main/java/com/msdw/tms/common/utils/poi/ExcelImportUtil.java b/src/main/java/com/msdw/tms/common/utils/poi/ExcelImportUtil.java new file mode 100644 index 0000000..73b6c98 --- /dev/null +++ b/src/main/java/com/msdw/tms/common/utils/poi/ExcelImportUtil.java @@ -0,0 +1,123 @@ +package com.msdw.tms.common.utils.poi; + +import org.apache.poi.ss.usermodel.Cell; +import org.apache.poi.ss.usermodel.DateUtil; +import org.apache.poi.ss.usermodel.Row; +import org.apache.poi.ss.usermodel.Sheet; +import org.apache.poi.xssf.usermodel.XSSFWorkbook; + +import java.io.InputStream; +import java.lang.reflect.Field; +import java.math.BigDecimal; +import java.text.SimpleDateFormat; +import java.util.ArrayList; +import java.util.Date; +import java.util.List; + + +public class ExcelImportUtil { + + private Class clazz; + private Field fields[]; + + public ExcelImportUtil(Class clazz) { + this.clazz = clazz; + fields = clazz.getDeclaredFields(); + } + + /** + * 基于注解读取excel + */ + public List readExcel(InputStream is, int rowIndex, int cellIndex) { + List list = new ArrayList<>(); + T entity = null; + try { + XSSFWorkbook workbook = new XSSFWorkbook(is); + Sheet sheet = workbook.getSheetAt(0); + // 不准确 + // int rowLength = sheet.getLastRowNum(); + // System.out.println(sheet.getLastRowNum()); + for (int rowNum = rowIndex; rowNum <= sheet.getLastRowNum(); rowNum++) { + Row row = sheet.getRow(rowNum); + entity = (T) clazz.newInstance(); + // System.out.println(row.getLastCellNum()); + for (int j = cellIndex; j < row.getLastCellNum(); j++) { + Cell cell = row.getCell(j); + for (Field field : fields) { + if (field.isAnnotationPresent(ExcelAttribute.class)) { + field.setAccessible(true); + ExcelAttribute ea = field.getAnnotation(ExcelAttribute.class); + if (j == ea.sort()) { + field.set(entity, covertAttrType(field, cell)); + } + } + } + } + Field field = entity.getClass().getDeclaredField("index"); + field.setAccessible(true); + field.set(entity, rowNum + 1); + list.add(entity); + } + } catch (Exception e) { + e.printStackTrace(); + } + return list; + } + + /** + * 类型转换 将cell 单元格格式转为 字段类型 + */ + private Object covertAttrType(Field field, Cell cell) throws Exception { + String fieldType = field.getType().getSimpleName(); + if ("String".equals(fieldType)) { + return getValue(cell); + } else if ("Date".equals(fieldType)) { + return new SimpleDateFormat("yyyy-MM-dd hh:mm:ss").parse(getValue(cell)); + } else if ("int".equals(fieldType) || "Integer".equals(fieldType)) { + return Integer.parseInt(getValue(cell)); + } else if ("double".equals(fieldType) || "Double".equals(fieldType)) { + return Double.parseDouble(getValue(cell)); + } else { + return null; + } + } + + + /** + * 格式转为String + * + * @param cell + * @return + */ + public String getValue(Cell cell) { + if (cell == null) { + return ""; + } + switch (cell.getCellType()) { + case STRING: + return cell.getRichStringCellValue().getString().trim(); + case NUMERIC: + if (DateUtil.isCellDateFormatted(cell)) { + Date dt = DateUtil.getJavaDate(cell.getNumericCellValue()); + return new SimpleDateFormat("yyyy-MM-dd hh:mm:ss").format(dt); + } else { + // 防止数值变成科学计数法 + String strCell = ""; + Double num = cell.getNumericCellValue(); + BigDecimal bd = new BigDecimal(num.toString()); + if (bd != null) { + strCell = bd.toPlainString(); + } + // 去除 浮点型 自动加的 .0 + if (strCell.endsWith(".0")) { + strCell = strCell.substring(0, strCell.indexOf(".")); + } + return strCell; + } + case BOOLEAN: + return String.valueOf(cell.getBooleanCellValue()); + default: + return ""; + } + } +} \ No newline at end of file diff --git a/src/main/java/com/msdw/tms/common/utils/py/PyUtil.java b/src/main/java/com/msdw/tms/common/utils/py/PyUtil.java new file mode 100644 index 0000000..2c3820f --- /dev/null +++ b/src/main/java/com/msdw/tms/common/utils/py/PyUtil.java @@ -0,0 +1,211 @@ +package com.msdw.tms.common.utils.py; + +import java.io.BufferedReader; +import java.io.IOException; +import java.io.InputStreamReader; + +/** + * @ProjectName: tms + * @Package: com.msdw.tms.common.utils.py + * @ClassName: python + * @Description: Java调用Python脚本辅助类 + * @Author: Maureen.Rong + * @CreateDate: 2020/10/7 13:15 + * @UpdateDate: 2020/10/7 13:15 + * @Version: 1.0 + */ +public class PyUtil { + + /*本地测试环境*/ + + //这里指的是python环境的地址 + /*public static String path = "python"; + //生成图片 + public static String pyPathByPhoto = "C:\\Users\\Hello\\Desktop\\python\\photo.py"; + //正态Var + public static String pyPathByVar = "C:\\Users\\Hello\\Desktop\\python\\getVar.py"; + //历史模拟法 + public static String historyPath = "C:\\Users\\Hello\\Desktop\\python\\getVarByHistory.py"; + //对冲前后生成图片 + public static String beforeAndAfter = "C:\\Users\\Hello\\Desktop\\python\\beforeAndAfterByHedging.py";*/ + /** + * 线上测试环境 + */ + //这里指的是python环境的地址 + public static String path = "python"; + //生成图片 + public static String pyPathByPhoto = "/usr/local/sichuan/py/photo.py"; + //正态Var + public static String pyPathByVar = "/usr/local/sichuan/py/getVar.py"; + //历史模拟法 + public static String historyPath = "/usr/local/sichuan/py/getVarByHistory.py"; + //对冲前后生成图片 + public static String beforeAndAfter = "/usr/local/sichuan/py/beforeAndAfterByHedging.py"; + + + /** + * 动态传参调用Python脚本生成图片 + * + * @param pyPath + * @param path + * @param params + * @throws IOException + */ + public static String getCodeByPhoto(String pyPath, String path, String... params) throws IOException { + try { + + String[] args = new String[2 + params.length]; + args[0] = pyPath; + args[1] = path; + for (int x = 0; x < args.length; x++) { + if (x > 1) { + args[x] = params[x - 2]; + } + } + //执行py文件 + Process proc = Runtime.getRuntime().exec(args); + BufferedReader in = new BufferedReader(new InputStreamReader(proc.getInputStream())); + String line = null; + String url = ""; + + + while ((line = in.readLine()) != null) { + url += line + ","; + System.out.println("获取结果:" + line); + } + + in.close(); + proc.waitFor(); + + + return url; + + //System.out.println("拼接后:" + url); + + + } catch (Exception e) { + e.printStackTrace(); + + } + return null; + + } + + + /** + * 动态传参调用Python脚本:正态Var + * + * @param pyPath + * @param path + * @param params + * @throws IOException + */ + public static String getVarCode(String pyPath, String path, String... params) throws IOException { + try { + + String[] args = new String[2 + params.length]; + args[0] = pyPath; + args[1] = path; + for (int x = 0; x < args.length; x++) { + if (x > 1) { + args[x] = params[x - 2]; + } + } + //执行py文件 + Process proc = Runtime.getRuntime().exec(args); + BufferedReader in = new BufferedReader(new InputStreamReader(proc.getInputStream())); + String line = null; + + String str = ""; + + while ((line = in.readLine()) != null) { + System.out.println("循环中输出:" + line); + str += line + ","; + //System.out.println("拼接后得到的字符串:" + str); + } + + in.close(); + proc.waitFor(); + + + str = str.substring(0, str.length() - 1); + + //去除最后一个逗号 + str = str.substring(str.lastIndexOf(",")); + //截取第一个逗号后的字符串 + str = str.split(",")[1]; + + return str; + } catch (Exception e) { + e.printStackTrace(); + } + return null; + } + + + /** + * 动态传参调用Python脚本:历史模拟 + * + * @param pyPath + * @param path + * @param params + * @throws IOException + */ + public static String getCodeByHis(String pyPath, String path, String... params) throws IOException { + try { + + String[] args = new String[2 + params.length]; + args[0] = pyPath; + args[1] = path; + for (int x = 0; x < args.length; x++) { + if (x > 1) { + args[x] = params[x - 2]; + } + } + //执行py文件 + Process proc = Runtime.getRuntime().exec(args); + BufferedReader in = new BufferedReader(new InputStreamReader(proc.getInputStream())); + String line = null; + + String str = ""; + + + while ((line = in.readLine()) != null) { + System.out.println(line); + str += line; + } + + in.close(); + proc.waitFor(); + + return str; + + + } catch (Exception e) { + e.printStackTrace(); + } + return null; + } + + /** + * test + * + * @param args + * @throws Exception + */ + public static void main(String[] args) throws Exception { + /** + * photo 次数 天数 列表 + * getVarByHistory 置信水平(小数) 天数 列表 + * getVar 置信水平(小数) 天数 列表 + */ + //D:\myTool\py\python.exe + //I为次数,t是天数,Z是传入进来的下单数*期货合约面值,arf为置信水平,ziliao为传入列表 + String print = getCodeByHis(path, historyPath, + "0.95", "90", "6.3792,6.3756"); + + System.out.println(">>>>>>>最后结果:" + print); + } + + +} \ No newline at end of file diff --git a/src/main/java/com/msdw/tms/common/utils/trading_rules/TradingDay.java b/src/main/java/com/msdw/tms/common/utils/trading_rules/TradingDay.java new file mode 100644 index 0000000..17c70bc --- /dev/null +++ b/src/main/java/com/msdw/tms/common/utils/trading_rules/TradingDay.java @@ -0,0 +1,167 @@ +package com.msdw.tms.common.utils.trading_rules; + +import java.text.SimpleDateFormat; +import java.util.ArrayList; +import java.util.Calendar; +import java.util.List; + +/** + * @ProjectName: code_generator + * @Package: com.create.generator + * @ClassName: test1 + * @Description: java类作用描述 + * @Author: Maureen.Rong + * @CreateDate: 2020/10/13 14:08 + * @UpdateDate: 2020/10/13 14:08 + * @Version: 1.0 + */ +public class TradingDay { + /* + * 计算某年某月第几个星期几的日期 + * param wek 星期几 + * param num 第几个,10为最后一个 + */ + public static String getTheDate(int year, int month, int wek, int num) { + Calendar time = Calendar.getInstance(); + time.set(Calendar.YEAR, year); + time.set(Calendar.MONTH, month - 1);// 注意,Calendar对象默认一月为0 + int day = time.getActualMaximum(Calendar.DAY_OF_MONTH);// 本月份的天数 + List list = new ArrayList<>(); + String dateTime = ""; + for (int i = 1; i <= day; i++) { + time.set(Calendar.DAY_OF_MONTH, i); + int weekd = time.get(Calendar.DAY_OF_WEEK) - 1;// 注意,Calendar对象默认星期天为1 + if (wek >= 1 && wek <= 7) { + if (wek < 7) { + if (weekd == wek) { + String aaa = year + "-" + month + "-" + i; + list.add(aaa); + } + } else { + if (weekd == 0) { + String aaa = year + "-" + month + "-" + i; + list.add(aaa); + } + } + + } + + } + if (list.size() > 0 && num <= 5) { + dateTime = list.get(num - 1); + } else if (num == 10) { + dateTime = list.get(list.size() - 1); + } + return dateTime; + } + + + /** + * 查询某年某月最后一天星期几 + * + * @param yearMonth + * @return + */ + public static String getLastDayOfMonth(String yearMonth) { + int year = Integer.parseInt(yearMonth.split("-")[0]); //年 + int month = Integer.parseInt(yearMonth.split("-")[1]); //月 + Calendar cal = Calendar.getInstance(); + // 设置年份 + cal.set(Calendar.YEAR, year); + // 设置月份 + // cal.set(Calendar.MONTH, month - 1); + cal.set(Calendar.MONTH, month); //设置当前月的上一个月 + // 获取某月最大天数 + //int lastDay = cal.getActualMaximum(Calendar.DATE); + int lastDay = cal.getMinimum(Calendar.DATE); //获取月份中的最小值,即第一天 + // 设置日历中月份的最大天数 + //cal.set(Calendar.DAY_OF_MONTH, lastDay); + cal.set(Calendar.DAY_OF_MONTH, lastDay - 1); //上月的第一天减去1就是当月的最后一天 + // 格式化日期 + SimpleDateFormat sdf = new SimpleDateFormat("yyyy-MM-dd"); + return sdf.format(cal.getTime()); + } + + + /** + * 判断当前日期是星期几
+ *
+ * + * @param pTime 修要判断的时间
+ * @return dayForWeek 判断结果
+ * @Exception 发生异常
+ */ + public static int dayForWeek(String pTime) throws Exception { + SimpleDateFormat format = new SimpleDateFormat("yyyy-MM-dd"); + Calendar c = Calendar.getInstance(); + c.setTime(format.parse(pTime)); + int dayForWeek = 0; + if (c.get(Calendar.DAY_OF_WEEK) == 1) { + dayForWeek = 7; + } else { + dayForWeek = c.get(Calendar.DAY_OF_WEEK) - 1; + } + return dayForWeek; + } + + + public static String getLastWeek(String time) { + //查询本月最后一天星期几 + try { + + //last_day:查询本月最后一天是多少号 2020-10 + String last_day = getLastDayOfMonth(time); + + + //截取年 + String year = last_day.substring(0, 4); + //截取月 + String month = last_day.substring(5, 7); + //截取日 + String day = last_day.substring(8); + + + //查询最后一天是周几 + Integer weekday = dayForWeek(getLastDayOfMonth(time)); + + + switch (weekday) { + case 1: + weekday = Integer.valueOf(day) - 3; + break; + case 2: + weekday = Integer.valueOf(day) - 4; + break; + case 3: + weekday = Integer.valueOf(day) - 5; + break; + case 4: + weekday = Integer.valueOf(day) - 6; + break; + case 5: + //等于周五不变 + break; + case 6: + weekday = Integer.valueOf(day) - 1; + break; + case 7: + weekday = Integer.valueOf(day) - 2; + break; + } + + return year + "-" + month + "-" + String.valueOf(weekday); + + } catch (Exception e) { + e.printStackTrace(); + return null; + } + } + + public static void main(String[] args) { + //2020年10月的第三个星期日 + //2020年的第3个星期 3前两个营业日 + //System.out.println(getTheDate(2020, 9, 3, 3)); + + System.out.println("本月最后一周星期五:" + getLastWeek("2020-10")); + } +} diff --git a/src/main/java/com/msdw/tms/common/utils/trading_rules/algorithm.java b/src/main/java/com/msdw/tms/common/utils/trading_rules/algorithm.java new file mode 100644 index 0000000..be52ba0 --- /dev/null +++ b/src/main/java/com/msdw/tms/common/utils/trading_rules/algorithm.java @@ -0,0 +1,434 @@ +package com.msdw.tms.common.utils.trading_rules; + +import java.math.BigDecimal; +import java.text.ParseException; +import java.text.SimpleDateFormat; +import java.util.Calendar; +import java.util.Date; + +/** + * @ProjectName: tms + * @Package: com.msdw.tms.common.utils.chuanda + * @ClassName: algorithm + * @Description: 川大交易规则算法 + * @Author: Maureen.Rong + * @CreateDate: 2020/10/12 10:04 + * @UpdateDate: 2020/10/12 10:04 + * @Version: 1.0 + */ +public class algorithm { + + /** + *可交易数量: + *1、多方情况下,可交易数量为多方合约持仓总量 + *2、空方情况下,可交易数量为空方合约持仓总量 + */ + + //--------------------配置期货头寸START------------------------ + + /** + * 预冻结保证金: 预计冻结保证金 = 外汇期货合约价格 * 合约面值 * 保证金比例 + * 合约价格: contractPrice + * 合约面值: contractFaceValue + * 保证金比例: bond + */ + public static BigDecimal getPreFreezingMargin(BigDecimal contractPrice, BigDecimal contractFaceValue, String name) { + + try { + //保证金比例 + BigDecimal bond = new BigDecimal(0); + + + switch (name.substring(0, 8)) { + case algorithm.AUDAndRMB: + bond = algorithm.AUDAndRMBBond; + break; + case algorithm.EURAndRMB: + bond = algorithm.EURAndRMBBond; + break; + case algorithm.JPYAndRMB: + bond = algorithm.JPYAndRMBBond; + break; + case algorithm.RMBAndUSD: + bond = algorithm.RMBAndUSDBond; + break; + case algorithm.USDAndRMB: + bond = algorithm.USDAndRMBBond; + break; + + } + BigDecimal amount = contractPrice.multiply(contractFaceValue).multiply(bond); + return amount; + } catch (Exception e) { + e.printStackTrace(); + return new BigDecimal(-1); + } + } + + + /** + * 保证金: 保证金 = 外汇期货合约价格 * 合约面值 * 委托数量 * 保证金比例 + * 合约价格: contractPrice + * 合约面值: contractFaceValue + * 保证金比例: bond + * 手数: handCout + */ + public static BigDecimal freezingMargin(BigDecimal contractPrice, BigDecimal contractFaceValue, BigDecimal handCout, String name) { + + try { + //保证金比例 + BigDecimal bond = new BigDecimal(0.00); + + + switch (name.substring(0, 8)) { + case algorithm.AUDAndRMB: + bond = algorithm.AUDAndRMBBond; + break; + case algorithm.EURAndRMB: + bond = algorithm.EURAndRMBBond; + break; + case algorithm.JPYAndRMB: + bond = algorithm.JPYAndRMBBond; + break; + case algorithm.RMBAndUSD: + bond = algorithm.RMBAndUSDBond; + break; + case algorithm.USDAndRMB: + bond = algorithm.USDAndRMBBond; + break; + + } + BigDecimal amount = contractPrice.multiply(contractFaceValue).multiply(handCout).multiply(bond); + return amount; + } catch (Exception e) { + e.printStackTrace(); + return new BigDecimal(-1); + } + } + + /** + * 预冻结手续费: 预冻结手续费 = 委托数量(手)* 费用标准 + * 委托数量: commissionQuantity + * 费用标准: cost + */ + public static BigDecimal getPreFreezingServiceCharge(BigDecimal commissionQuantity) { + //暂定0.5% + BigDecimal cost = new BigDecimal(0.005); + BigDecimal amount = commissionQuantity.multiply(cost); + return amount; + } + + /** + * 冻结资金:冻结资金=预计冻结保证金+预冻结手续费 + * 预计冻结保证金: preFreezingFunds + * 预冻结手续费: preFreezingCharges + */ + public static double getFreezingFunds(double preFreezingFunds, double preFreezingCharges) { + return preFreezingFunds + preFreezingCharges; + } + + /** + * 需要资金:需要资金 = 委托价格 * 每手交易单位 * 委托数量(手数) + * 委托价格: commissionPrice + * 每手交易单位 : tradingUnit + * 委托数量: commissionQuantity + */ + public static BigDecimal getFundsRequired(BigDecimal commissionPrice, BigDecimal commissionQuantity, Integer tradingUnit) { + return commissionPrice.multiply(commissionQuantity).multiply(BigDecimal.valueOf(tradingUnit)); + } + + //--------------------配置期货头寸 END------------------------ + + //--------外汇期货每手价格 交易单位 START--------- + /** + * 欧元兑人民币期货(EUR) + */ + public static final int EURExchangeRMB = 50000;//欧元 + + /** + * 日元兑人民币期货(JPY) + */ + public static final int JPYExchangeRMB = 6000000;//6000000 日元 + + /** + * 澳元兑人民币期货(AUD) + */ + public static final int AUDExchangeRMB = 80000;//80000 澳元 + + /** + * 人民币兑美元期货(RMB) + */ + public static final int RMBExchangeUSD = 30000;//30000 人民币 + /** + * 美元兑人民币期货(USD) + */ + public static final int USDExchangeRMB = 100000;//100000 美元 + + //--------外汇期货每手价格 END--------- + + + //期货类型 + + /** + * 欧元兑人民币期货(EUR) + */ + public static final String EURAndRMB = "欧元兑人民币期货"; + + /** + * 日元兑人民币期货(JPY) + */ + public static final String JPYAndRMB = "日元兑人民币期货"; + + /** + * 澳元兑人民币期货(AUD) + */ + public static final String AUDAndRMB = "澳元兑人民币期货"; + + /** + * 人民币兑美元期货(RMB) + */ + + public static final String RMBAndUSD = "人民币兑美元期货"; + /** + * 美元兑人民币期货(USD) + */ + public static final String USDAndRMB = "美元兑人民币期货"; + + + /** + * 保证金设置 + */ + + /** + * 欧元兑人民币期货(EUR) + */ + public static final BigDecimal EURAndRMBBond = new BigDecimal(0.023); + /** + * 日元兑人民币期货(JPY) + */ + public static final BigDecimal JPYAndRMBBond = new BigDecimal(0.035); + /** + * 澳元兑人民币期货(AUD) + */ + public static final BigDecimal AUDAndRMBBond = new BigDecimal(0.031); + /** + * 人民币兑美元期货(RMB) + */ + public static final BigDecimal RMBAndUSDBond = new BigDecimal(0.17); + /** + * 美元兑人民币期货(USD) + */ + public static final BigDecimal USDAndRMBBond = new BigDecimal(0.018); + + + /** + * 浮动盈亏=(当天结算价—昨日结算价)* 委托数量 * 合约面值(1份合约=一手,一手=?吨) + *

+ * 当天结算价: todayPrice + * 昨日结算价 : yesterdayPrice + * 合约面值: contractFaceValue + * 委托数量: commissionQuantity + */ + public static BigDecimal getFloatingPL(BigDecimal todayPrice, BigDecimal yesterdayPrice, BigDecimal commissionQuantity, Integer contractFaceValue) { + return todayPrice.subtract(yesterdayPrice).multiply(commissionQuantity).multiply(BigDecimal.valueOf(contractFaceValue)); + } + + /*public static void main(String[] args) { + BigDecimal pl = getFloatingPL(new BigDecimal(6.826), new BigDecimal(6.84), new BigDecimal(1), 100000); + System.out.println(pl); + }*/ + + /** + * 盈亏=(平仓时的外汇汇率价格-下单时外汇汇率价格) * 委托数量 * 合约面值。 + *

+ * commissionQuantity:委托数量 + * contractFaceValue: 合约面值 + * + * @return + */ + /*public static BigDecimal getPL(BigDecimal price1, BigDecimal price2, BigDecimal commissionQuantity, BigDecimal contractFaceValue) { + return price1.subtract(price2).multiply(commissionQuantity).multiply(contractFaceValue).setScale(2, BigDecimal.ROUND_DOWN); + }*/ + + /** + * 外汇期货盈亏=(平仓时的外汇汇率价格-下单时外汇汇率价格) * 委托数量 * 合约面值。 + *

+ * commissionQuantity:委托数量 + * contractFaceValue: 合约面值 + * + * @return + */ + public static BigDecimal get_wh_pl(BigDecimal price1, BigDecimal price2, BigDecimal commissionQuantity, BigDecimal contractFaceValue) { + // return price1.subtract(price2).multiply(commissionQuantity).multiply(contractFaceValue).setScale(2, BigDecimal.ROUND_DOWN); + return price1.subtract(price2).multiply(commissionQuantity).multiply(contractFaceValue); + } + + + /** + * 资产市值 = (开仓或者平仓) * 委托数量 * 合约面值(1份合约=一手,一手=?吨) + * commissionQuantity:委托数量 + * contractFaceValue: 合约面值 + * 市值 = 外汇期货合约价格 * 委托数量 * 合约面值 + */ + public static BigDecimal getMarketValue(BigDecimal price, Integer commissionQuantity, Integer contractFaceValue) { + return price.multiply(BigDecimal.valueOf(commissionQuantity)).multiply(BigDecimal.valueOf(contractFaceValue)); + } + + + /** + * 调仓操作 + * 加仓市值 = 外汇期货合约价格*(原持仓量 + 本次调仓量)* 合约面值, + * price:外汇期货合约价格 + * old:原持仓量 + * news:本次调仓量 + * contractFaceValue: 合约面值 + */ + public static BigDecimal getMarketValueByAddition(BigDecimal price, BigDecimal old, BigDecimal news, Integer contractFaceValue) { + BigDecimal a = price.multiply(new BigDecimal(contractFaceValue)); + BigDecimal b = old.add(news); + return a.multiply(b); + } + + + /** + * 调仓操作 + * 减仓市值 = 外汇期货合约价格*(原持仓量 - 本次调仓量)* 合约面值, + * price:外汇期货合约价格 + * old:原持仓量 + * news:本次调仓量 + * contractFaceValue: 合约面值 + */ + public static BigDecimal getMarketValueBySubtraction(BigDecimal price, BigDecimal old, BigDecimal news, Integer contractFaceValue) { + BigDecimal a = price.multiply(new BigDecimal(contractFaceValue)); + BigDecimal b = old.subtract(news); + return a.multiply(b); + } + + + /** + * 外币 = 汇率 * 合约面值 + * + * @param price 汇率 + * @param contractFaceValue 合约面值 + * @return + */ + public static BigDecimal getForeignCurrency(BigDecimal price, BigDecimal contractFaceValue) { + return price.multiply(contractFaceValue); + } + +//----------------最后交易日------------------ + + /** + * 获取最后交易日 + * (1~4) + * * 1.欧元兑人民币期货 + * * 2.日元兑人民币期货 + * * 3.澳元兑人民币期货 + * * 4.人民币兑美元期货 + * *

+ * * 5.美元兑人民币期货 最后结算日之前两个营业日 + * + * @param name + * @return 获取最后交易日 + */ + + public static String getLastTradingDay(String name) { + + + try { + String getName = name.substring(0, 8); + //年份 + String year = name.substring(8, 10); + //月份 + String month = name.substring(10); + + //最后交易日为:合约月份的第3个星期3前两个营业日 + if (getName.equals(algorithm.AUDAndRMB) || getName.equals(algorithm.EURAndRMB) || getName.equals(algorithm.JPYAndRMB) || getName.equals(algorithm.RMBAndUSD)) { + + + //获取某年某月的第3个星期天的星期三 + String reTime = TradingDay.getTheDate(Integer.valueOf("20" + year), Integer.valueOf(month), 3, 3); + + SimpleDateFormat sdf = new SimpleDateFormat("yyyy-MM-dd"); + + Date date = sdf.parse(reTime); + + String lastTime = getAddDate(date); + + return lastTime; + } else if (getName.equals(algorithm.USDAndRMB)) { + + + String times = "20" + year + "-" + month; + //最后结算日之前两个营业日(本月的最后一个周五) + String lastWeek = TradingDay.getLastWeek(times); + return lastWeek; + + } + } catch (ParseException e) { + e.printStackTrace(); + } + return null; + + } + + + //得到添加n天后的时间字符串 + public static String getAddDate(Date date) { + try { + SimpleDateFormat format = new SimpleDateFormat("yyyy-MM-dd"); + + Calendar calendar = Calendar.getInstance(); + calendar.setTime(date); + + //减2天 + calendar.setTime(date); + calendar.add(Calendar.DAY_OF_MONTH, -2); + String T2 = format.format(calendar.getTime()); + return T2;//返回时间字符串 + + } catch (Exception e) { + e.printStackTrace(); + return null; + } + } + + /** + * 根据获取的合约名称设置交易保证金 + * + * @param name + * @return + */ + public static BigDecimal getBond(String name) { + + try { + //保证金比例 + BigDecimal bond = new BigDecimal(0); + + switch (name.substring(0, 8)) { + case algorithm.AUDAndRMB: + bond = algorithm.AUDAndRMBBond; + break; + case algorithm.EURAndRMB: + bond = algorithm.EURAndRMBBond; + break; + case algorithm.JPYAndRMB: + bond = algorithm.JPYAndRMBBond; + break; + case algorithm.RMBAndUSD: + bond = algorithm.RMBAndUSDBond; + break; + case algorithm.USDAndRMB: + bond = algorithm.USDAndRMBBond; + break; + } + return bond; + } catch (Exception e) { + e.printStackTrace(); + return new BigDecimal(-1); + } + } + + +} + diff --git a/src/main/java/com/msdw/tms/common/xss/HTMLFilter.java b/src/main/java/com/msdw/tms/common/xss/HTMLFilter.java new file mode 100644 index 0000000..6f1df38 --- /dev/null +++ b/src/main/java/com/msdw/tms/common/xss/HTMLFilter.java @@ -0,0 +1,530 @@ +package com.msdw.tms.common.xss; + +import java.util.*; +import java.util.concurrent.ConcurrentHashMap; +import java.util.concurrent.ConcurrentMap; +import java.util.logging.Logger; +import java.util.regex.Matcher; +import java.util.regex.Pattern; + +/** + * + * HTML filtering utility for protecting against XSS (Cross Site Scripting). + * + * This code is licensed LGPLv3 + * + * This code is a Java port of the original work in PHP by Cal Hendersen. + * http://code.iamcal.com/php/lib_filter/ + * + * The trickiest part of the translation was handling the differences in regex handling + * between PHP and Java. These resources were helpful in the process: + * + * http://java.sun.com/j2se/1.4.2/docs/api/java/util/regex/Pattern.html + * http://us2.php.net/manual/en/reference.pcre.pattern.modifiers.php + * http://www.regular-expressions.info/modifiers.html + * + * A note on naming conventions: instance variables are prefixed with a "v"; global + * constants are in all caps. + * + * Sample use: + * String input = ... + * String clean = new HTMLFilter().filter( input ); + * + * The class is not thread safe. Create a new instance if in doubt. + * + * If you find bugs or have suggestions on improvement (especially regarding + * performance), please contact us. The latest version of this + * source, and our contact details, can be found at http://xss-html-filter.sf.net + * + * @author Joseph O'Connell + * @author Cal Hendersen + * @author Michael Semb Wever + */ +public final class HTMLFilter { + + /** regex flag union representing /si modifiers in php **/ + private static final int REGEX_FLAGS_SI = Pattern.CASE_INSENSITIVE | Pattern.DOTALL; + private static final Pattern P_COMMENTS = Pattern.compile("", Pattern.DOTALL); + private static final Pattern P_COMMENT = Pattern.compile("^!--(.*)--$", REGEX_FLAGS_SI); + private static final Pattern P_TAGS = Pattern.compile("<(.*?)>", Pattern.DOTALL); + private static final Pattern P_END_TAG = Pattern.compile("^/([a-z0-9]+)", REGEX_FLAGS_SI); + private static final Pattern P_START_TAG = Pattern.compile("^([a-z0-9]+)(.*?)(/?)$", REGEX_FLAGS_SI); + private static final Pattern P_QUOTED_ATTRIBUTES = Pattern.compile("([a-z0-9]+)=([\"'])(.*?)\\2", REGEX_FLAGS_SI); + private static final Pattern P_UNQUOTED_ATTRIBUTES = Pattern.compile("([a-z0-9]+)(=)([^\"\\s']+)", REGEX_FLAGS_SI); + private static final Pattern P_PROTOCOL = Pattern.compile("^([^:]+):", REGEX_FLAGS_SI); + private static final Pattern P_ENTITY = Pattern.compile("&#(\\d+);?"); + private static final Pattern P_ENTITY_UNICODE = Pattern.compile("&#x([0-9a-f]+);?"); + private static final Pattern P_ENCODE = Pattern.compile("%([0-9a-f]{2});?"); + private static final Pattern P_VALID_ENTITIES = Pattern.compile("&([^&;]*)(?=(;|&|$))"); + private static final Pattern P_VALID_QUOTES = Pattern.compile("(>|^)([^<]+?)(<|$)", Pattern.DOTALL); + private static final Pattern P_END_ARROW = Pattern.compile("^>"); + private static final Pattern P_BODY_TO_END = Pattern.compile("<([^>]*?)(?=<|$)"); + private static final Pattern P_XML_CONTENT = Pattern.compile("(^|>)([^<]*?)(?=>)"); + private static final Pattern P_STRAY_LEFT_ARROW = Pattern.compile("<([^>]*?)(?=<|$)"); + private static final Pattern P_STRAY_RIGHT_ARROW = Pattern.compile("(^|>)([^<]*?)(?=>)"); + private static final Pattern P_AMP = Pattern.compile("&"); + private static final Pattern P_QUOTE = Pattern.compile("<"); + private static final Pattern P_LEFT_ARROW = Pattern.compile("<"); + private static final Pattern P_RIGHT_ARROW = Pattern.compile(">"); + private static final Pattern P_BOTH_ARROWS = Pattern.compile("<>"); + + // @xxx could grow large... maybe use sesat's ReferenceMap + private static final ConcurrentMap P_REMOVE_PAIR_BLANKS = new ConcurrentHashMap(); + private static final ConcurrentMap P_REMOVE_SELF_BLANKS = new ConcurrentHashMap(); + + /** set of allowed html elements, along with allowed attributes for each element **/ + private final Map> vAllowed; + /** counts of open tags for each (allowable) html element **/ + private final Map vTagCounts = new HashMap(); + + /** html elements which must always be self-closing (e.g. "") **/ + private final String[] vSelfClosingTags; + /** html elements which must always have separate opening and closing tags (e.g. "") **/ + private final String[] vNeedClosingTags; + /** set of disallowed html elements **/ + private final String[] vDisallowed; + /** attributes which should be checked for valid protocols **/ + private final String[] vProtocolAtts; + /** allowed protocols **/ + private final String[] vAllowedProtocols; + /** tags which should be removed if they contain no content (e.g. "" or "") **/ + private final String[] vRemoveBlanks; + /** entities allowed within html markup **/ + private final String[] vAllowedEntities; + /** flag determining whether comments are allowed in input String. */ + private final boolean stripComment; + private final boolean encodeQuotes; + private boolean vDebug = false; + /** + * flag determining whether to try to make tags when presented with "unbalanced" + * angle brackets (e.g. "" becomes " text "). If set to false, + * unbalanced angle brackets will be html escaped. + */ + private final boolean alwaysMakeTags; + + /** Default constructor. + * + */ + public HTMLFilter() { + vAllowed = new HashMap<>(); + + final ArrayList a_atts = new ArrayList(); + a_atts.add("href"); + a_atts.add("target"); + vAllowed.put("a", a_atts); + + final ArrayList img_atts = new ArrayList(); + img_atts.add("src"); + img_atts.add("width"); + img_atts.add("height"); + img_atts.add("alt"); + vAllowed.put("img", img_atts); + + final ArrayList no_atts = new ArrayList(); + vAllowed.put("b", no_atts); + vAllowed.put("strong", no_atts); + vAllowed.put("i", no_atts); + vAllowed.put("em", no_atts); + + vSelfClosingTags = new String[]{"img"}; + vNeedClosingTags = new String[]{"a", "b", "strong", "i", "em"}; + vDisallowed = new String[]{}; + vAllowedProtocols = new String[]{"http", "mailto", "https"}; // no ftp. + vProtocolAtts = new String[]{"src", "href"}; + vRemoveBlanks = new String[]{"a", "b", "strong", "i", "em"}; + vAllowedEntities = new String[]{"amp", "gt", "lt", "quot"}; + stripComment = true; + encodeQuotes = true; + alwaysMakeTags = true; + } + + /** Set debug flag to true. Otherwise use default settings. See the default constructor. + * + * @param debug turn debug on with a true argument + */ + public HTMLFilter(final boolean debug) { + this(); + vDebug = debug; + + } + + /** Map-parameter configurable constructor. + * + * @param conf map containing configuration. keys match field names. + */ + public HTMLFilter(final Map conf) { + + assert conf.containsKey("vAllowed") : "configuration requires vAllowed"; + assert conf.containsKey("vSelfClosingTags") : "configuration requires vSelfClosingTags"; + assert conf.containsKey("vNeedClosingTags") : "configuration requires vNeedClosingTags"; + assert conf.containsKey("vDisallowed") : "configuration requires vDisallowed"; + assert conf.containsKey("vAllowedProtocols") : "configuration requires vAllowedProtocols"; + assert conf.containsKey("vProtocolAtts") : "configuration requires vProtocolAtts"; + assert conf.containsKey("vRemoveBlanks") : "configuration requires vRemoveBlanks"; + assert conf.containsKey("vAllowedEntities") : "configuration requires vAllowedEntities"; + + vAllowed = Collections.unmodifiableMap((HashMap>) conf.get("vAllowed")); + vSelfClosingTags = (String[]) conf.get("vSelfClosingTags"); + vNeedClosingTags = (String[]) conf.get("vNeedClosingTags"); + vDisallowed = (String[]) conf.get("vDisallowed"); + vAllowedProtocols = (String[]) conf.get("vAllowedProtocols"); + vProtocolAtts = (String[]) conf.get("vProtocolAtts"); + vRemoveBlanks = (String[]) conf.get("vRemoveBlanks"); + vAllowedEntities = (String[]) conf.get("vAllowedEntities"); + stripComment = conf.containsKey("stripComment") ? (Boolean) conf.get("stripComment") : true; + encodeQuotes = conf.containsKey("encodeQuotes") ? (Boolean) conf.get("encodeQuotes") : true; + alwaysMakeTags = conf.containsKey("alwaysMakeTags") ? (Boolean) conf.get("alwaysMakeTags") : true; + } + + private void reset() { + vTagCounts.clear(); + } + + private void debug(final String msg) { + if (vDebug) { + Logger.getAnonymousLogger().info(msg); + } + } + + //--------------------------------------------------------------- + // my versions of some PHP library functions + public static String chr(final int decimal) { + return String.valueOf((char) decimal); + } + + public static String htmlSpecialChars(final String s) { + String result = s; + result = regexReplace(P_AMP, "&", result); + result = regexReplace(P_QUOTE, """, result); + result = regexReplace(P_LEFT_ARROW, "<", result); + result = regexReplace(P_RIGHT_ARROW, ">", result); + return result; + } + + //--------------------------------------------------------------- + /** + * given a user submitted input String, filter out any invalid or restricted + * html. + * + * @param input text (i.e. submitted by a user) than may contain html + * @return "clean" version of input, with only valid, whitelisted html elements allowed + */ + public String filter(final String input) { + reset(); + String s = input; + + debug("************************************************"); + debug(" INPUT: " + input); + + s = escapeComments(s); + debug(" escapeComments: " + s); + + s = balanceHTML(s); + debug(" balanceHTML: " + s); + + s = checkTags(s); + debug(" checkTags: " + s); + + s = processRemoveBlanks(s); + debug("processRemoveBlanks: " + s); + + s = validateEntities(s); + debug(" validateEntites: " + s); + + debug("************************************************\n\n"); + return s; + } + + public boolean isAlwaysMakeTags(){ + return alwaysMakeTags; + } + + public boolean isStripComments(){ + return stripComment; + } + + private String escapeComments(final String s) { + final Matcher m = P_COMMENTS.matcher(s); + final StringBuffer buf = new StringBuffer(); + if (m.find()) { + final String match = m.group(1); //(.*?) + m.appendReplacement(buf, Matcher.quoteReplacement("")); + } + m.appendTail(buf); + + return buf.toString(); + } + + private String balanceHTML(String s) { + if (alwaysMakeTags) { + // + // try and form html + // + s = regexReplace(P_END_ARROW, "", s); + s = regexReplace(P_BODY_TO_END, "<$1>", s); + s = regexReplace(P_XML_CONTENT, "$1<$2", s); + + } else { + // + // escape stray brackets + // + s = regexReplace(P_STRAY_LEFT_ARROW, "<$1", s); + s = regexReplace(P_STRAY_RIGHT_ARROW, "$1$2><", s); + + // + // the last regexp causes '<>' entities to appear + // (we need to do a lookahead assertion so that the last bracket can + // be used in the next pass of the regexp) + // + s = regexReplace(P_BOTH_ARROWS, "", s); + } + + return s; + } + + private String checkTags(String s) { + Matcher m = P_TAGS.matcher(s); + + final StringBuffer buf = new StringBuffer(); + while (m.find()) { + String replaceStr = m.group(1); + replaceStr = processTag(replaceStr); + m.appendReplacement(buf, Matcher.quoteReplacement(replaceStr)); + } + m.appendTail(buf); + + s = buf.toString(); + + // these get tallied in processTag + // (remember to reset before subsequent calls to filter method) + for (String key : vTagCounts.keySet()) { + for (int ii = 0; ii < vTagCounts.get(key); ii++) { + s += ""; + } + } + + return s; + } + + private String processRemoveBlanks(final String s) { + String result = s; + for (String tag : vRemoveBlanks) { + if(!P_REMOVE_PAIR_BLANKS.containsKey(tag)){ + P_REMOVE_PAIR_BLANKS.putIfAbsent(tag, Pattern.compile("<" + tag + "(\\s[^>]*)?>")); + } + result = regexReplace(P_REMOVE_PAIR_BLANKS.get(tag), "", result); + if(!P_REMOVE_SELF_BLANKS.containsKey(tag)){ + P_REMOVE_SELF_BLANKS.putIfAbsent(tag, Pattern.compile("<" + tag + "(\\s[^>]*)?/>")); + } + result = regexReplace(P_REMOVE_SELF_BLANKS.get(tag), "", result); + } + + return result; + } + + private static String regexReplace(final Pattern regex_pattern, final String replacement, final String s) { + Matcher m = regex_pattern.matcher(s); + return m.replaceAll(replacement); + } + + private String processTag(final String s) { + // ending tags + Matcher m = P_END_TAG.matcher(s); + if (m.find()) { + final String name = m.group(1).toLowerCase(); + if (allowed(name)) { + if (!inArray(name, vSelfClosingTags)) { + if (vTagCounts.containsKey(name)) { + vTagCounts.put(name, vTagCounts.get(name) - 1); + return ""; + } + } + } + } + + // starting tags + m = P_START_TAG.matcher(s); + if (m.find()) { + final String name = m.group(1).toLowerCase(); + final String body = m.group(2); + String ending = m.group(3); + + //debug( "in a starting tag, name='" + name + "'; body='" + body + "'; ending='" + ending + "'" ); + if (allowed(name)) { + String params = ""; + + final Matcher m2 = P_QUOTED_ATTRIBUTES.matcher(body); + final Matcher m3 = P_UNQUOTED_ATTRIBUTES.matcher(body); + final List paramNames = new ArrayList(); + final List paramValues = new ArrayList(); + while (m2.find()) { + paramNames.add(m2.group(1)); //([a-z0-9]+) + paramValues.add(m2.group(3)); //(.*?) + } + while (m3.find()) { + paramNames.add(m3.group(1)); //([a-z0-9]+) + paramValues.add(m3.group(3)); //([^\"\\s']+) + } + + String paramName, paramValue; + for (int ii = 0; ii < paramNames.size(); ii++) { + paramName = paramNames.get(ii).toLowerCase(); + paramValue = paramValues.get(ii); + +// debug( "paramName='" + paramName + "'" ); +// debug( "paramValue='" + paramValue + "'" ); +// debug( "allowed? " + vAllowed.get( name ).contains( paramName ) ); + + if (allowedAttribute(name, paramName)) { + if (inArray(paramName, vProtocolAtts)) { + paramValue = processParamProtocol(paramValue); + } + params += " " + paramName + "=\"" + paramValue + "\""; + } + } + + if (inArray(name, vSelfClosingTags)) { + ending = " /"; + } + + if (inArray(name, vNeedClosingTags)) { + ending = ""; + } + + if (ending == null || ending.length() < 1) { + if (vTagCounts.containsKey(name)) { + vTagCounts.put(name, vTagCounts.get(name) + 1); + } else { + vTagCounts.put(name, 1); + } + } else { + ending = " /"; + } + return "<" + name + params + ending + ">"; + } else { + return ""; + } + } + + // comments + m = P_COMMENT.matcher(s); + if (!stripComment && m.find()) { + return "<" + m.group() + ">"; + } + + return ""; + } + + private String processParamProtocol(String s) { + s = decodeEntities(s); + final Matcher m = P_PROTOCOL.matcher(s); + if (m.find()) { + final String protocol = m.group(1); + if (!inArray(protocol, vAllowedProtocols)) { + // bad protocol, turn into local anchor link instead + s = "#" + s.substring(protocol.length() + 1, s.length()); + if (s.startsWith("#//")) { + s = "#" + s.substring(3, s.length()); + } + } + } + + return s; + } + + private String decodeEntities(String s) { + StringBuffer buf = new StringBuffer(); + + Matcher m = P_ENTITY.matcher(s); + while (m.find()) { + final String match = m.group(1); + final int decimal = Integer.decode(match).intValue(); + m.appendReplacement(buf, Matcher.quoteReplacement(chr(decimal))); + } + m.appendTail(buf); + s = buf.toString(); + + buf = new StringBuffer(); + m = P_ENTITY_UNICODE.matcher(s); + while (m.find()) { + final String match = m.group(1); + final int decimal = Integer.valueOf(match, 16).intValue(); + m.appendReplacement(buf, Matcher.quoteReplacement(chr(decimal))); + } + m.appendTail(buf); + s = buf.toString(); + + buf = new StringBuffer(); + m = P_ENCODE.matcher(s); + while (m.find()) { + final String match = m.group(1); + final int decimal = Integer.valueOf(match, 16).intValue(); + m.appendReplacement(buf, Matcher.quoteReplacement(chr(decimal))); + } + m.appendTail(buf); + s = buf.toString(); + + s = validateEntities(s); + return s; + } + + private String validateEntities(final String s) { + StringBuffer buf = new StringBuffer(); + + // validate entities throughout the string + Matcher m = P_VALID_ENTITIES.matcher(s); + while (m.find()) { + final String one = m.group(1); //([^&;]*) + final String two = m.group(2); //(?=(;|&|$)) + m.appendReplacement(buf, Matcher.quoteReplacement(checkEntity(one, two))); + } + m.appendTail(buf); + + return encodeQuotes(buf.toString()); + } + + private String encodeQuotes(final String s){ + if(encodeQuotes){ + StringBuffer buf = new StringBuffer(); + Matcher m = P_VALID_QUOTES.matcher(s); + while (m.find()) { + final String one = m.group(1); //(>|^) + final String two = m.group(2); //([^<]+?) + final String three = m.group(3); //(<|$) + m.appendReplacement(buf, Matcher.quoteReplacement(one + regexReplace(P_QUOTE, """, two) + three)); + } + m.appendTail(buf); + return buf.toString(); + }else{ + return s; + } + } + + private String checkEntity(final String preamble, final String term) { + + return ";".equals(term) && isValidEntity(preamble) + ? '&' + preamble + : "&" + preamble; + } + + private boolean isValidEntity(final String entity) { + return inArray(entity, vAllowedEntities); + } + + private static boolean inArray(final String s, final String[] array) { + for (String item : array) { + if (item != null && item.equals(s)) { + return true; + } + } + return false; + } + + private boolean allowed(final String name) { + return (vAllowed.isEmpty() || vAllowed.containsKey(name)) && !inArray(name, vDisallowed); + } + + private boolean allowedAttribute(final String name, final String paramName) { + return allowed(name) && (vAllowed.isEmpty() || vAllowed.get(name).contains(paramName)); + } +} \ No newline at end of file diff --git a/src/main/java/com/msdw/tms/common/xss/SQLFilter.java b/src/main/java/com/msdw/tms/common/xss/SQLFilter.java new file mode 100644 index 0000000..d8e6e5e --- /dev/null +++ b/src/main/java/com/msdw/tms/common/xss/SQLFilter.java @@ -0,0 +1,49 @@ +/** + * Copyright (c) 2016-2019 人人开源 All rights reserved. + * + * https://www.renren.io + * + * 版权所有,侵权必究! + */ + +package com.msdw.tms.common.xss; + +import org.apache.commons.lang.StringUtils; + +/** + * SQL过滤 + * + * @author Mark sunlightcs@gmail.com + */ +public class SQLFilter { + + /** + * SQL注入过滤 + * @param str 待验证的字符串 + */ + public static String sqlInject(String str){ + if(StringUtils.isBlank(str)){ + return null; + } + //去掉'|"|;|\字符 + str = StringUtils.replace(str, "'", ""); + str = StringUtils.replace(str, "\"", ""); + str = StringUtils.replace(str, ";", ""); + str = StringUtils.replace(str, "\\", ""); + + //转换成小写 + str = str.toLowerCase(); + + //非法字符 + String[] keywords = {"master", "truncate", "insert", "select", "delete", "update", "declare", "alter", "drop"}; + + //判断是否包含非法字符 + /*for(String keyword : keywords){ + if(str.indexOf(keyword) != -1){ + throw new RRException("包含非法字符"); + } + }*/ + + return str; + } +} diff --git a/src/main/java/com/msdw/tms/config/AliyunOssConfig.java b/src/main/java/com/msdw/tms/config/AliyunOssConfig.java new file mode 100644 index 0000000..3bc4d74 --- /dev/null +++ b/src/main/java/com/msdw/tms/config/AliyunOssConfig.java @@ -0,0 +1,59 @@ +package com.msdw.tms.config; + +import com.aliyun.oss.OSSClient; +import org.springframework.beans.factory.annotation.Value; +import org.springframework.context.annotation.Bean; +import org.springframework.context.annotation.Configuration; +import org.springframework.context.annotation.PropertySource; +import org.springframework.context.annotation.Scope; +import org.springframework.stereotype.Component; + +@Component +@PropertySource(value = "classpath:aliyun.properties") +@Configuration +public class AliyunOssConfig { + + @Value("${oss.endpoint}") + private String endpoint;// oss外网访问域名 + @Value("${oss.accessKeyId}") + private String accessKeyId;// oss中的密匙keyId + @Value("${oss.secretAccessKey}") + private String secretAccessKey;// oss中的密钥 + @Value("${oss.bucketName}") + private String bucketName;// 仓库名称 + @Value("${oss.sufferUrl}") + private String sufferUrl; + @Value("${user.userAvatars}")//用户头像 + private String userAvatars; + + @Bean + @Scope("prototype") + public OSSClient ossClient() { + return new OSSClient(endpoint, accessKeyId, secretAccessKey); + } + + public String getEndpoint() { + return endpoint; + } + + public String getAccessKeyId() { + return accessKeyId; + } + + public String getSecretAccessKey() { + return secretAccessKey; + } + + public String getBucketName() { + return bucketName; + } + + public String getSufferUrl() { + return sufferUrl; + } + + public String getUserAvatars() { + return userAvatars; + } + +} diff --git a/src/main/java/com/msdw/tms/config/CorsConfig.java b/src/main/java/com/msdw/tms/config/CorsConfig.java new file mode 100644 index 0000000..5250d87 --- /dev/null +++ b/src/main/java/com/msdw/tms/config/CorsConfig.java @@ -0,0 +1,19 @@ +package com.msdw.tms.config; + +import org.springframework.context.annotation.Configuration; +import org.springframework.web.servlet.config.annotation.CorsRegistry; +import org.springframework.web.servlet.config.annotation.WebMvcConfigurer; + +@Configuration +public class CorsConfig implements WebMvcConfigurer { + + @Override + public void addCorsMappings(CorsRegistry registry) { + registry.addMapping("/**") + .allowedOrigins("*") + .allowedMethods("GET", "HEAD", "POST", "PUT", "DELETE", "OPTIONS") + .allowCredentials(true) + .maxAge(3600) + .allowedHeaders("*"); + } +} diff --git a/src/main/java/com/msdw/tms/config/MyThreadConfig.java b/src/main/java/com/msdw/tms/config/MyThreadConfig.java new file mode 100644 index 0000000..b7243eb --- /dev/null +++ b/src/main/java/com/msdw/tms/config/MyThreadConfig.java @@ -0,0 +1,25 @@ +package com.msdw.tms.config; + +import org.springframework.context.annotation.Bean; +import org.springframework.context.annotation.Configuration; + +import java.util.concurrent.Executors; +import java.util.concurrent.LinkedBlockingDeque; +import java.util.concurrent.ThreadPoolExecutor; +import java.util.concurrent.TimeUnit; + +//@EnableConfigurationProperties(ThreadPoolConfigProperties.class) +@Configuration +public class MyThreadConfig { + + @Bean + public ThreadPoolExecutor threadPoolExecutor(ThreadPoolConfigProperties pool) { + return new ThreadPoolExecutor(pool.getCoreSize(), + pool.getMaxSize(), + pool.getKeepAliveTime(), + TimeUnit.SECONDS, + new LinkedBlockingDeque<>(100000), + Executors.defaultThreadFactory(), + new ThreadPoolExecutor.AbortPolicy()); + } +} diff --git a/src/main/java/com/msdw/tms/config/MybatisPlusConfig.java b/src/main/java/com/msdw/tms/config/MybatisPlusConfig.java new file mode 100644 index 0000000..e206ea3 --- /dev/null +++ b/src/main/java/com/msdw/tms/config/MybatisPlusConfig.java @@ -0,0 +1,18 @@ +package com.msdw.tms.config; + +import com.baomidou.mybatisplus.extension.plugins.PaginationInterceptor; +import org.springframework.context.annotation.Bean; +import org.springframework.context.annotation.Configuration; + +@Configuration +public class MybatisPlusConfig { + /** + * mybatis-plus分页插件 + */ + @Bean + public PaginationInterceptor paginationInterceptor() { + PaginationInterceptor page = new PaginationInterceptor(); + page.setDialectType("mysql"); + return page; + } +} \ No newline at end of file diff --git a/src/main/java/com/msdw/tms/config/RedisConfig.java b/src/main/java/com/msdw/tms/config/RedisConfig.java new file mode 100644 index 0000000..9a2e5e7 --- /dev/null +++ b/src/main/java/com/msdw/tms/config/RedisConfig.java @@ -0,0 +1,22 @@ +package com.msdw.tms.config; + +import org.springframework.data.redis.core.RedisTemplate; + +import javax.annotation.Resource; + +/** + * @ProjectName: tms + * @Package: com.msdw.tms.config + * @ClassName: RedisConfig + * @Description: 功能描述: redis配置 + * @Author: Maureen.Rong + * @CreateDate: 2020/10/29 17:55 + * @UpdateDate: 2020/10/29 17:55 + * @Version: 1.0 + */ +public class RedisConfig { + + @Resource + public RedisTemplate template; + +} diff --git a/src/main/java/com/msdw/tms/config/SwaggerConfig.java b/src/main/java/com/msdw/tms/config/SwaggerConfig.java new file mode 100644 index 0000000..ff3bc49 --- /dev/null +++ b/src/main/java/com/msdw/tms/config/SwaggerConfig.java @@ -0,0 +1,35 @@ +package com.msdw.tms.config; + +import io.swagger.annotations.ApiOperation; +import org.springframework.context.annotation.Bean; +import org.springframework.context.annotation.Configuration; +import springfox.documentation.builders.ApiInfoBuilder; +import springfox.documentation.builders.PathSelectors; +import springfox.documentation.builders.RequestHandlerSelectors; +import springfox.documentation.service.ApiInfo; +import springfox.documentation.spi.DocumentationType; +import springfox.documentation.spring.web.plugins.Docket; +import springfox.documentation.swagger2.annotations.EnableSwagger2; + +@Configuration +@EnableSwagger2 +//@Profile({"dev","test"}) +//@ConditionalOnProperty(name = "swagger.enable", havingValue = "true") +public class SwaggerConfig { + + @Bean + public Docket productApi() { + return new Docket(DocumentationType.SWAGGER_2) + .apiInfo(apiInfo()) + .select()//添加ApiOperiation注解的被扫描 + .apis(RequestHandlerSelectors.withMethodAnnotation(ApiOperation.class)) + .paths(PathSelectors.any()) + .build(); + } + + private ApiInfo apiInfo() { + return new ApiInfoBuilder().title("测评管理").description("测评管理") + .version("1.0").build(); + } + +} \ No newline at end of file diff --git a/src/main/java/com/msdw/tms/config/ThreadPoolConfigProperties.java b/src/main/java/com/msdw/tms/config/ThreadPoolConfigProperties.java new file mode 100644 index 0000000..a704f0a --- /dev/null +++ b/src/main/java/com/msdw/tms/config/ThreadPoolConfigProperties.java @@ -0,0 +1,14 @@ +package com.msdw.tms.config; + +import lombok.Data; +import org.springframework.boot.context.properties.ConfigurationProperties; +import org.springframework.stereotype.Component; + +@ConfigurationProperties(prefix = "tms.thread") +@Component +@Data +public class ThreadPoolConfigProperties { + private Integer coreSize; + private Integer maxSize; + private Integer keepAliveTime; +} diff --git a/src/main/java/com/msdw/tms/config/WebConfigurer.java b/src/main/java/com/msdw/tms/config/WebConfigurer.java new file mode 100644 index 0000000..879f263 --- /dev/null +++ b/src/main/java/com/msdw/tms/config/WebConfigurer.java @@ -0,0 +1,37 @@ +package com.msdw.tms.config; + +import com.msdw.tms.interceptor.AuthorizedAspect; +import org.springframework.beans.factory.annotation.Autowired; +import org.springframework.context.annotation.Configuration; +import org.springframework.web.servlet.config.annotation.InterceptorRegistry; +import org.springframework.web.servlet.config.annotation.WebMvcConfigurer; + +/** + * @ProjectName: tms + * @Package: com.msdw.tms.config + * @ClassName: WebConfigurer + * @Description: java类作用描述 + * @Author: Maureen.Rong + * @CreateDate: 2020/10/22 11:21 + * @UpdateDate: 2020/10/22 11:21 + * @Version: 1.0 + */ +@Configuration +public class WebConfigurer implements WebMvcConfigurer { + + @Autowired + AuthorizedAspect authorizedAspect; + + /** + * 这个方法用来添加拦截器,我们自己写好的拦截器需要通过这里添加注册才能生效 + * 静态资源不能直接写/static/**,这样还是会被拦截器拦截 + * 排除注册与一些无须登录可看的页面请求 + */ + @Override + public void addInterceptors(InterceptorRegistry registry) { + /*registry.addInterceptor(authorizedAspect).addPathPatterns("/**") + .excludePathPatterns("/swagger-ui.html") + .excludePathPatterns("");*/ + } +} + diff --git a/src/main/java/com/msdw/tms/controller/CdBankStatementsController.java b/src/main/java/com/msdw/tms/controller/CdBankStatementsController.java new file mode 100644 index 0000000..9d55985 --- /dev/null +++ b/src/main/java/com/msdw/tms/controller/CdBankStatementsController.java @@ -0,0 +1,324 @@ +package com.msdw.tms.controller; + +import com.baomidou.mybatisplus.core.conditions.query.QueryWrapper; +import com.msdw.tms.common.utils.PageUtils; +import com.msdw.tms.common.utils.R; +import com.msdw.tms.common.utils.TokenUtil; +import com.msdw.tms.common.utils.trading_rules.algorithm; +import com.msdw.tms.entity.CdFuturesConfigureEntity; +import com.msdw.tms.entity.CdUserAssetsEntity; +import com.msdw.tms.entity.CdUserOptionAccountEntity; +import com.msdw.tms.entity.QhscGangjiaosuoEntity; +import com.msdw.tms.model.req.CdGetAccountInfoReq; +import com.msdw.tms.model.req.CdTransferRecordsReq; +import com.msdw.tms.model.req.CdTransferReq; +import com.msdw.tms.model.resp.CdAccountInfoResp; +import com.msdw.tms.model.resp.CdTransferOutResp; +import com.msdw.tms.model.resp.CdTransferRecordsResp; +import com.msdw.tms.service.*; +import com.msdw.tms.service.impl.CdFuturesConfigureServiceImpl; +import io.swagger.annotations.Api; +import io.swagger.annotations.ApiOperation; +import io.swagger.annotations.ApiParam; +import org.springframework.beans.factory.annotation.Autowired; +import org.springframework.data.redis.core.RedisTemplate; +import org.springframework.web.bind.annotation.*; + +import java.math.BigDecimal; +import java.util.List; + + +/** + * @描述:账户流水记录控制类 + * @作者: Rong + * @日期: 2020-10-15 + */ +@RestController +@RequestMapping("/chuanda/bankStatements") +@Api(value = "API - 川大:账户相关操作", tags = "川大子系统:账户相关操作") +public class CdBankStatementsController { + + @Autowired + public CdBankStatementsService service; + + @Autowired + public CdUserOptionAccountService optionAccountService; + + @Autowired + public CdUserAssetsService assetsService; + + @Autowired + public CdFuturesConfigureService configureService; + + @Autowired + public QhscGangjiaosuoService gangjiaosuoService; + @Autowired + public RedisTemplate template; + + /** + * @描述: 银行/期货期权账户 转账操作 + * @作者: Rong + * @日期: 2020-10-15 + **/ + @PostMapping("/transfer") + @ApiOperation(value = "(银行/期货期权账户)转账操作") + public R save(@RequestBody CdTransferReq req) { + int userId = TokenUtil.getUserId(); + //查询银行账户余额 + CdUserAssetsEntity assets = assetsService.userAssetsByUerId(userId); + //查询期权账户余额 + CdUserOptionAccountEntity account = optionAccountService.optionAccountByUerId(userId); + + switch (req.getTransferOut()) { + case 1: + if (assets.getBalance().compareTo(req.getAmountMoney()) == -1) { + return R.error("转账失败,您的银行账户可用余额不足以本次转账"); + } + break; + case 2: + if (account.getBalance().compareTo(req.getAmountMoney()) == -1) { + return R.error("转账失败,您的期权期货账户可用余额不足以本次转账"); + } + break; + } + + if (service.modify(userId, req.getTransferOut(), req.getAmountMoney())) { + return R.ok("转账成功"); + } else { + return R.error(); + } + + } + + + /** + * @描述: 根据选择的转出账户查询可用资金 + * @入参: + * @出参: + * @作者: Rong + * @日期: 2020-10-15 + **/ + @PostMapping(value = "/getCapital") + @ApiOperation(value = "根据选择的账户查询资金", response = CdTransferOutResp.class) + public R getCapital(@RequestParam("transferOut") @ApiParam(value = "账户类型(1.银行账户 2.期货账户)") Integer transferOut) { + int userId = TokenUtil.getUserId(); + + if (transferOut == 2) { + //期权账户 + CdUserOptionAccountEntity account = optionAccountService.optionAccountByUerId(Long.valueOf(userId)); + return R.ok().put("data", account); + } else if (transferOut == 1) { + //银行账户 + CdUserAssetsEntity assets = assetsService.userAssetsByUerId(Long.valueOf(userId)); + return R.ok().put("data", assets); + } + return R.error(); + + } + + + /** + * @描述: 转账记录 + * @入参: + * @出参: + * @作者: Rong + * @日期: 2020-10-10 + **/ + @PostMapping(value = "/transferRecords") + @ApiOperation(value = "转账记录", response = CdTransferRecordsResp.class) + public R listByEntity(@RequestBody CdTransferRecordsReq req) { + int userId = TokenUtil.getUserId(); + + + List list = service.queryPageByRecode(String.valueOf(userId), req.getStartTime(), req.getEndTime()); + //总记录数 + int count = list.size(); + PageUtils pageUtils = new PageUtils(list, count, req.getPageSize(), req.getPageNum()); + + return R.ok().put("page", pageUtils); + + } + + + /** + * 期货期权账户 + * 同时此处会返回待开仓的信息 + * 可用资金 = 当前账户可用资金 + * + * @return + */ + @PostMapping(value = "/getAccountInfo") + @ApiOperation(value = "期货期权账户(此处会返回待开仓的信息)", response = CdAccountInfoResp.class) + public R getAccountInfo(@RequestBody CdGetAccountInfoReq req) { + + int userId = TokenUtil.getUserId(); + R r = service.getAccountInfoReturnOpen(req, userId); + /*//查询当前账户金额 + CdUserOptionAccountEntity entity = optionAccountService.optionAccountByUerId(userId); + + CdAccountInfoResp accountInfoResp = new CdAccountInfoResp(); + //可用资金 + accountInfoResp.setBalance(entity.getBalance()); + //冻结资金 + accountInfoResp.setForzenBalance(entity.getForzenBalance()); + //占用保证金 + accountInfoResp.setDepositBalance(entity.getDepositBalance()); + + //每手交易单位(合约面值) + Integer tradingUnit = 0; + + //查询当前用户的开仓信息 + QueryWrapper queryWrapper = new QueryWrapper(); + queryWrapper.eq("user_id", userId); + + BigDecimal float_pl = new BigDecimal(0); + BigDecimal marketAssets = new BigDecimal(0); + //查询当前用户持仓信息 + CdFuturesConfigureEntity configureEntity = configureService.getOne(queryWrapper); + if (configureEntity != null) { + + //根据pid查询当前代码 + QhscGangjiaosuoEntity qhscGangjiaosuo = gangjiaosuoService.getById(configureEntity.getPid()); + + //根据代码查询当天汇率价格 + QueryWrapper wrapper = new QueryWrapper(); + wrapper.eq("e_name", qhscGangjiaosuo.getEName()); + wrapper.last(" AND TO_DAYS( NOW( ) ) - TO_DAYS( date) <= 1 "); + QhscGangjiaosuoEntity gangjiaosuo = gangjiaosuoService.getOne(wrapper); + + tradingUnit = CdFuturesConfigureServiceImpl.setCompany(gangjiaosuo.getName()); + + //浮动盈亏 =(当天结算价—昨日结算价)* 委托数量 * 合约面值 + float_pl = algorithm.getFloatingPL(gangjiaosuo.getLastPrice(), gangjiaosuo.getDayUp(), new BigDecimal(tradingUnit), configureEntity.getEntrustNumber()); + accountInfoResp.setFloatingPL(float_pl); + //资产市值 市值=外汇期货合约价格 * 委托数量 * 合约面值 + + //查询持仓信息状态是开仓还是平仓(0.开仓 1.平仓) + if (configureEntity.getStatus() == 0) { + + //资产市值 = (开仓或者平仓) * 委托数量 * 合约面值(1份合约=一手,一手=?吨) + marketAssets = algorithm.getMarketValue(configureEntity.getEntrustPrice(), configureEntity.getEntrustNumber(), tradingUnit); + + } else if (configureEntity.getStatus() == 1) { + marketAssets = algorithm.getMarketValue(configureEntity.getCloseRate(), configureEntity.getEntrustNumber(), tradingUnit); + } + + accountInfoResp.setMarketAssets(marketAssets); + } else { + accountInfoResp.setMarketAssets(marketAssets); + accountInfoResp.setFloatingPL(float_pl); + } + + + //总资金 = 资产市值 + 占用保证金 + 冻结资金 + 可用资金 + BigDecimal totalAssets = marketAssets.add(accountInfoResp.getDepositBalance().add(accountInfoResp.getBalance().add(accountInfoResp.getForzenBalance()))); + accountInfoResp.setTotalAssets(totalAssets); + + + QhscGangjiaosuoEntity qh = gangjiaosuoService.getById(req.getId()); + + //序号 + accountInfoResp.setId(req.getId()); + //代码 + accountInfoResp.setEname(qh.getEName()); + //合约名称 + accountInfoResp.setName(qh.getName()); + //交易方向 + accountInfoResp.setTradingDirection(req.getTradingDirection()); + //需要资金 + + int unit = CdFuturesConfigureServiceImpl.setCompany(qh.getName()); + + //所需资金 = 委托价格 * 委托数量(手数) * 每手交易单位 + BigDecimal totalAmount = algorithm.getFundsRequired(req.getEntrustPrice(), BigDecimal.valueOf(req.getEntrustNumber()), unit); + accountInfoResp.setFundingNeeded(totalAmount); + + //创建时间 + accountInfoResp.setCreateTime(DateUtils.getNowTime()); + //最后交易日 + //获取最后交易日 + String tradeTime = algorithm.getLastTradingDay(qh.getName()); + accountInfoResp.setTradeTime(tradeTime);*/ + + return r; + + } + + + /** + * 期货期权账户 + * + * @return + */ + @PostMapping(value = "/getAccount") + @ApiOperation(value = "期货期权账户", response = CdAccountInfoResp.class) + public R getAccountInfo() { + + int userId = TokenUtil.getUserId(); + String getDate = template.opsForValue().get("date:userId_" + userId); + + //查询当前账户金额 + CdUserOptionAccountEntity entity = optionAccountService.optionAccountByUerId(userId); + + CdAccountInfoResp accountInfoResp = new CdAccountInfoResp(); + //可用资金 + accountInfoResp.setBalance(entity.getBalance()); + //冻结资金 + accountInfoResp.setForzenBalance(entity.getForzenBalance()); + //占用保证金 + accountInfoResp.setDepositBalance(entity.getDepositBalance()); + + + //查询当前用户的开仓信息 + QueryWrapper queryWrapper = new QueryWrapper(); + queryWrapper.eq("user_id", userId); + + BigDecimal float_pl = new BigDecimal(0); + BigDecimal marketAssets = new BigDecimal(0); + //查询当前用户持仓信息 + CdFuturesConfigureEntity configureEntity = configureService.getOne(queryWrapper); + if (configureEntity != null) { + + //根据pid查询当前代码 + QhscGangjiaosuoEntity qhscGangjiaosuo = gangjiaosuoService.getById(configureEntity.getPid()); + + //根据代码查询当天汇率价格 + QueryWrapper wrapper = new QueryWrapper(); + wrapper.eq("e_name", qhscGangjiaosuo.getEName()); + wrapper.eq("date", getDate); + QhscGangjiaosuoEntity gangjiaosuo = gangjiaosuoService.getOne(wrapper); + + //每手交易单位(合约面值) + Integer tradingUnit = CdFuturesConfigureServiceImpl.setCompany(gangjiaosuo.getName()); + + //浮动盈亏 =(当天结算价—昨日结算价)* 委托数量 * 合约面值 + float_pl = algorithm.getFloatingPL(gangjiaosuo.getLastPrice(), gangjiaosuo.getDayUp(), new BigDecimal(tradingUnit), configureEntity.getEntrustNumber()); + accountInfoResp.setFloatingPL(float_pl); + //资产市值 市值=外汇期货合约价格 * 委托数量 * 合约面值 + + //查询持仓信息状态是开仓还是平仓(0.开仓 1.平仓) + if (configureEntity.getStatus() == 0) { + + //资产市值 = (开仓或者平仓) * 委托数量 * 合约面值(1份合约=一手,一手=?吨) + marketAssets = algorithm.getMarketValue(configureEntity.getEntrustPrice(), configureEntity.getEntrustNumber(), tradingUnit); + + } else if (configureEntity.getStatus() == 1) { + marketAssets = algorithm.getMarketValue(configureEntity.getCloseRate(), configureEntity.getEntrustNumber(), tradingUnit); + } + + accountInfoResp.setMarketAssets(marketAssets); + } else { + accountInfoResp.setMarketAssets(marketAssets); + accountInfoResp.setFloatingPL(float_pl); + } + + + //总资金 = 资产市值 + 占用保证金 + 冻结资金 + 可用资金 + BigDecimal totalAssets = marketAssets.add(accountInfoResp.getDepositBalance().add(accountInfoResp.getBalance().add(accountInfoResp.getForzenBalance()))); + accountInfoResp.setTotalAssets(totalAssets); + + + return R.ok().put("data", accountInfoResp); + } +} + diff --git a/src/main/java/com/msdw/tms/controller/CdCacheController.java b/src/main/java/com/msdw/tms/controller/CdCacheController.java new file mode 100644 index 0000000..df221d1 --- /dev/null +++ b/src/main/java/com/msdw/tms/controller/CdCacheController.java @@ -0,0 +1,84 @@ +package com.msdw.tms.controller; + +import com.alibaba.fastjson.JSONObject; +import com.baomidou.mybatisplus.core.conditions.query.QueryWrapper; +import com.msdw.tms.common.utils.R; +import com.msdw.tms.common.utils.TokenUtil; +import com.msdw.tms.entity.CdCacheEntity; +import com.msdw.tms.model.req.CdSaveCacheReq; +import com.msdw.tms.service.CdCacheService; +import io.swagger.annotations.Api; +import io.swagger.annotations.ApiOperation; +import org.springframework.beans.factory.annotation.Autowired; +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; + + +/** + * @描述:步骤缓存记录表控制类 + * @作者: Rong + * @日期: 2020-10-21 + */ + +@RestController +@RequestMapping("/chuanda/cache") +@Api(value = "API - 川大:步骤记录", tags = "川大子系统:步骤记录") +public class CdCacheController { + + @Autowired + public CdCacheService service; + + + /** + * @描述: 新增步骤缓存 + * @入参: + * @出参: + * @作者: Rong + * @日期: 2020-10-21 + **/ + @PostMapping("/save") + @ApiOperation(value = "步骤缓存", response = CdSaveCacheReq.class) + public R save(@RequestBody CdSaveCacheReq req) { + int userId = TokenUtil.getUserId(); + return service.cache(userId, req.getStepNumber(), req.getJson()); + + } + + /** + * @描述: 根据用户id查询步骤 + * @入参: + * @出参: + * @作者: Rong + * @日期: 2020-10-21 + **/ + @PostMapping("/list") + @ApiOperation(value = "查询步骤/实验报告", response = CdCacheEntity.class) + public R list() { + int userId = TokenUtil.getUserId(); + QueryWrapper wrapper = new QueryWrapper<>(); + wrapper.eq("user_id", userId); + CdCacheEntity cache = service.getOne(wrapper); + + + cache.getStep1(); + return R.ok().put("data", cache); + + } + + + public static void main(String[] args) { + javaToJSON(); + } + + public static void javaToJSON() { + JSONObject jsonObject = new JSONObject(); + + jsonObject.put("userId", "1"); + System.out.println("java--->json \n " + jsonObject.toString()); + } + + +} + diff --git a/src/main/java/com/msdw/tms/controller/CdExperimentalController.java b/src/main/java/com/msdw/tms/controller/CdExperimentalController.java new file mode 100644 index 0000000..bcceda6 --- /dev/null +++ b/src/main/java/com/msdw/tms/controller/CdExperimentalController.java @@ -0,0 +1,197 @@ +package com.msdw.tms.controller; + +import com.baomidou.mybatisplus.core.conditions.query.QueryWrapper; +import com.msdw.tms.common.utils.R; +import com.msdw.tms.common.utils.TokenUtil; +import com.msdw.tms.entity.CdExperimentalEntity; +import com.msdw.tms.model.req.CdExperimentReq; +import com.msdw.tms.service.CdExperimentalService; +import io.swagger.annotations.*; +import org.apache.ibatis.annotations.Param; +import org.springframework.beans.factory.annotation.Autowired; +import org.springframework.data.redis.core.RedisTemplate; +import org.springframework.http.MediaType; +import org.springframework.web.bind.annotation.*; + +import javax.servlet.http.HttpServletResponse; +import java.util.List; + + +/** + * @描述:实验数据控制类 + * @作者: Rong + * @日期: 2020-10-20 + */ +@RestController +@RequestMapping("/chuanda/experimental") +@Api(value = "API - 川大:实验数据", tags = "川大子系统:实验数据") +public class CdExperimentalController { + + @Autowired + public CdExperimentalService service; + + @Autowired + public RedisTemplate template; + + /** + * @描述: 实验数据展示 + * @入参: + * @出参: + * @作者: Rong + * @日期: 2020-10-20 + **/ + @PostMapping("/listByCondition") + @ApiOperation(value = " 实验数据展示", response = CdExperimentalEntity.class) + public R listByEntity(@RequestParam("type") @ApiParam(value = "实验类型(0正态Var,1历史模拟,2蒙特卡洛)") Integer type) { + + int userId = TokenUtil.getUserId(); + QueryWrapper entity = new QueryWrapper<>(); + entity.eq("type", type); + entity.eq("user_id", userId); + List list = service.list(entity); + return R.ok().put("data", list); + } + + + /** + * @描述: 保存实验 + * @入参: + * @出参: + * @作者: Rong + * @日期: 2020-09-28 + **/ + @ApiOperation(value = "保存实验") + @PostMapping(value = "/save", produces = MediaType.APPLICATION_JSON_UTF8_VALUE) + @CrossOrigin + public R save(@RequestBody CdExperimentReq req) { + int userId = TokenUtil.getUserId(); + + CdExperimentalEntity entity = new CdExperimentalEntity(); + String getDate = template.opsForValue().get("date:userId_" + userId); + //当前时间 + entity.setCreatTime(getDate); + //汇率类型 + entity.setType(Integer.valueOf(req.getType())); + //汇率名称 + entity.setExchangeRate(req.getName()); + //样本数据 + entity.setSampleData(req.getSampleData()); + //置信水平 + entity.setConfidenceLevel(req.getConfidenceLevel()); + //持有天数 + entity.setValidPeriod(req.getValidPeriod()); + + entity.setUserId(Integer.valueOf(userId)); + + //实验类型(0正态Var,1历史模拟,2蒙特卡洛) + switch (req.getType()) { + case "0": + case "1": + //Var值 + entity.setVarCode(req.getVarCode()); + break; + + case "2": + //实验次数 + entity.setExperimentsNumber(Integer.valueOf(req.getExperimentsNumber())); + //汇率价格走势图 + entity.setTrendChart(req.getTrendChart()); + //汇率损益分布图 + entity.setProfitLossDistribution(req.getProfitLossDistribution()); + break; + } + boolean result = service.save(entity); + if (result) { + return R.ok(); + } + return R.error(); + } + + + /** + * @描述: 根据主键删除 + * @入参: id + * @出参: + * @作者: Rong + * @日期: 2020-10-20 + **/ + @PostMapping("/delete") + @ApiOperation(value = "根据主键删除") + public R delete(@RequestParam("id") @ApiParam(value = "要删除的id") Integer id) { + service.removeById(id); + return R.ok(); + } + + + /** + * @描述: 批量删除 + * @入参: id + * @出参: + * @作者: Rong + * @日期: 2020-10-20 + **/ + @PostMapping("/deleteBatchIds") + @ApiOperation(value = "批量删除") + public R deleteBatchIds(@RequestParam("ids") @ApiParam(value = "要删除的id列表") List ids) { + boolean result = service.removeByIds(ids); + if (result) { + return R.ok(); + } + return R.error(); + } + + + /** + * @描述: 根据时间、币种条件查询后导出报表 + * @入参: + * @出参: + * @作者: Rong + * @日期: 2020-09-28 + **/ + @ApiOperation(value = "单条导出实验结果") + @GetMapping(value = "/export", produces = MediaType.APPLICATION_JSON_UTF8_VALUE) + @ResponseBody + @CrossOrigin + @ApiImplicitParams({ + @ApiImplicitParam(name = "id", value = "序号", required = true, dataType = "String", paramType = "query") + }) + public R export(HttpServletResponse response, @Param(value = "id") Integer id) { + + try { + //TODO:历史数据下载:只能选取所选择的行情日期之前的数据下载 + R r = service.exportProjectRecord(response, id); + + return r; + } catch (Exception e) { + e.printStackTrace(); + return R.error(); + } + + } + + /** + * 根据类型导出相应实验结果 + * + * @param response + * @param ids + * @return + */ + @ApiOperation(value = "根据类型导出相应实验结果", response = CdExperimentalEntity.class) + @GetMapping(value = "/exportByAll", produces = MediaType.APPLICATION_JSON_UTF8_VALUE) + @ResponseBody + @CrossOrigin + public R exportByAll(HttpServletResponse response, @RequestParam("ids") @ApiParam(value = "要导出的id") List ids) { + try { + int userId = TokenUtil.getUserId(); + R r = service.exportexportProjectRecordById(response, userId, ids); + return r; + } catch (Exception e) { + e.printStackTrace(); + return R.error(); + } + + } + + +} + diff --git a/src/main/java/com/msdw/tms/controller/CdFuturesConfigureController.java b/src/main/java/com/msdw/tms/controller/CdFuturesConfigureController.java new file mode 100644 index 0000000..9e3a77f --- /dev/null +++ b/src/main/java/com/msdw/tms/controller/CdFuturesConfigureController.java @@ -0,0 +1,189 @@ +package com.msdw.tms.controller; + +import com.msdw.tms.common.utils.R; +import com.msdw.tms.common.utils.TokenUtil; +import com.msdw.tms.entity.CdFuturesConfigureEntity; +import com.msdw.tms.entity.vo.CdFuturesConfigureEntityVo; +import com.msdw.tms.model.req.CdBuyInReq; +import com.msdw.tms.model.req.CdOpenPositionReq; +import com.msdw.tms.model.resp.CdAfterHedgingResp; +import com.msdw.tms.model.resp.CdBeforeHedgingResp; +import com.msdw.tms.model.resp.CdHoldPositionInfoResp; +import com.msdw.tms.model.resp.CdTransferWarehouseDetailResp; +import com.msdw.tms.service.CdFuturesConfigureService; +import com.msdw.tms.service.QhscGangjiaosuoService; +import io.swagger.annotations.Api; +import io.swagger.annotations.ApiOperation; +import io.swagger.annotations.ApiParam; +import org.springframework.beans.factory.annotation.Autowired; +import org.springframework.web.bind.annotation.*; + + +/** + * @描述:期货资产头寸配置控制类 + * @作者: Rong + * @日期: 2020-10-10 + */ +@RestController +@RequestMapping("/chuanda/futuresConfigure") +@Api(tags = "川大子系统:开仓平仓相关操作") +public class CdFuturesConfigureController { + + @Autowired + public CdFuturesConfigureService service; + + @Autowired + public QhscGangjiaosuoService qhscGangjiaosuoService; + + /** + * @描述: 开仓 + * @入参: + * @出参: + * @作者: Rong + * @日期: 2020-10-10 + **/ + @PostMapping("/save") + @ApiOperation(value = "开仓操作") + public R save(@RequestBody CdOpenPositionReq req) { + int userId = TokenUtil.getUserId(); + + if (req.getEntrustNumber() <= 0) { + return R.error("委托数量不能小于等于0!"); + } + CdFuturesConfigureEntity entity = new CdFuturesConfigureEntity(); + entity.setUserId(userId); + entity.setPid(req.getPid()); + entity.setTradingDirection(req.getTradingDirection()); + entity.setNewestPrice(req.getNewestPrice()); + entity.setEntrustPrice(req.getEntrustPrice()); + entity.setEntrustNumber(req.getEntrustNumber()); + entity.setFundingNeeded(req.getFundingNeeded()); + + + return service.openPosition(entity); + } + + /** + * @描述: 外汇期货持仓情况 + * @入参: + * @出参: + * @作者: Rong + * @日期: 2020-10-12 + **/ + @PostMapping("/findById") + @ApiOperation(value = "外汇期货持仓情况", response = CdHoldPositionInfoResp.class) + public R findById() { + try { + int userId = TokenUtil.getUserId(); + CdHoldPositionInfoResp entity = service.myPosition(userId); + + if (entity == null) { + return R.error("暂无持仓信息"); + } + return R.ok().put("data", entity); + + } catch (Exception e) { + e.printStackTrace(); + return R.error(); + } + } + + /** + * @描述: 平仓 + * @入参: + * @出参: + * @作者: Rong + * @日期: 2020-10-10 + **/ + @PostMapping("/buyIn") + @ApiOperation(value = "平仓操作", response = CdFuturesConfigureEntity.class) + public R closePosition(@RequestBody CdBuyInReq req) { + int userId = TokenUtil.getUserId(); + return service.buyIn(req.getId(), req.getDate(), userId); + + + } + + /** + * @描述: 调仓详情 + * @作者: Rong + * @日期: 2020-10-14 + **/ + @PostMapping("/detailByTransferWarehouse") + @ApiOperation(value = "调仓详情", response = CdTransferWarehouseDetailResp.class) + public R transferWarehouse(@RequestParam("id") @ApiParam(value = "序号") Integer id) { + try { + CdTransferWarehouseDetailResp configure = service.transferWarehouseByDetail(id); + + + return R.ok().put("data", configure); + } catch (Exception e) { + e.printStackTrace(); + return R.error(); + } + + + } + + /** + * @描述: 外汇期货平仓绩效 + * @入参: + * @出参: + * @作者: Rong + * @日期: 2020-10-10 + **/ + @PostMapping("/buyInAchievements") + @ApiOperation(value = "外汇期货平仓绩效", response = CdFuturesConfigureEntityVo.class) + public R buyInAchievements(@RequestParam("id") @ApiParam(value = "序号") Integer id) { + try { + int userId = TokenUtil.getUserId(); + CdFuturesConfigureEntityVo entity = service.buyInAchievements(id, userId); + return R.ok().put("data", entity); + } catch (Exception e) { + e.printStackTrace(); + return R.error(); + } + + } + + /** + * 对冲前-外汇现货盈亏 + * + * @return + */ + @PostMapping("/beforeHedging") + @ApiOperation(value = "对冲前-外汇现货盈亏", response = CdBeforeHedgingResp.class) + public R beforeHedging() { + try { + int userId = TokenUtil.getUserId(); + CdBeforeHedgingResp cdBeforeHedgingResp = service.beforeHedging(userId); + return R.ok().put("data", cdBeforeHedgingResp); + } catch (Exception e) { + e.printStackTrace(); + return R.error(); + } + + } + + /** + * 对冲后损益情况 + * 样本区间:取开仓时间-开仓后的三个月 + * + * @return + */ + @PostMapping("/afterHedging") + @ApiOperation(value = "对冲后损益情况", response = CdAfterHedgingResp.class) + public R afterHedging() { + try { + int userId = TokenUtil.getUserId(); + CdAfterHedgingResp afterHedging = service.afterHedging(userId); + return R.ok().put("data", afterHedging); + } catch (Exception e) { + e.printStackTrace(); + return R.error(); + } + + } + +} + diff --git a/src/main/java/com/msdw/tms/controller/CdHedgingController.java b/src/main/java/com/msdw/tms/controller/CdHedgingController.java new file mode 100644 index 0000000..248bf57 --- /dev/null +++ b/src/main/java/com/msdw/tms/controller/CdHedgingController.java @@ -0,0 +1,193 @@ +package com.msdw.tms.controller; + +import com.msdw.tms.common.utils.R; +import com.msdw.tms.common.utils.TokenUtil; +import com.msdw.tms.common.utils.date.DateUtils; +import com.msdw.tms.entity.CdFuturesConfigureEntity; +import com.msdw.tms.entity.vo.CdFuturesConfigureEntityVo; +import com.msdw.tms.model.resp.CdBeforeHedgingResp; +import com.msdw.tms.model.resp.CdHedgingEfficiencyResp; +import com.msdw.tms.model.resp.CdHedgingResp; +import com.msdw.tms.service.CdFuturesConfigureService; +import com.msdw.tms.service.impl.CdFuturesConfigureServiceImpl; +import io.swagger.annotations.Api; +import io.swagger.annotations.ApiOperation; +import io.swagger.annotations.ApiParam; +import org.springframework.beans.factory.annotation.Autowired; +import org.springframework.web.bind.annotation.PostMapping; +import org.springframework.web.bind.annotation.RequestMapping; +import org.springframework.web.bind.annotation.RequestParam; +import org.springframework.web.bind.annotation.RestController; + +import java.math.BigDecimal; +import java.math.RoundingMode; +import java.text.DecimalFormat; + + +/** + * @描述:对冲 + * @作者: Rong + * @日期: 2020-10-21 + */ + +@RestController +@RequestMapping("/chuanda/hedging") +@Api(value = "API - 川大:对冲", tags = "川大子系统:对冲") +public class CdHedgingController { + @Autowired + public CdFuturesConfigureService configureService; + + /** + * @描述: 对冲 + * @入参: + * @出参: + * @作者: Rong + * @日期: 2020-10-21 + **/ + @PostMapping("/hedgingInfo") + @ApiOperation(value = "风险对冲核算", response = CdHedgingResp.class) + public R buyInAchievements(@RequestParam("id") @ApiParam(value = "序号") Integer id) { + try { + + CdHedgingResp resp = new CdHedgingResp(); + int userId = TokenUtil.getUserId(); + + //转换百分比 + DecimalFormat df = new DecimalFormat("0.00%"); + + //期货开仓平仓记录 + CdFuturesConfigureEntity entity = configureService.getById(id); + + CdFuturesConfigureEntityVo configure = configureService.buyInAchievements(id, userId); + configure.setEntrustPrice(entity.getEntrustPrice()); + + CdBeforeHedgingResp beforeHedging = configureService.beforeHedging(userId); + String getCreateTime = DateUtils.dateForByStr(beforeHedging.getCreateTime()); + String getUpdateTime = DateUtils.dateForByStr(beforeHedging.getUpdateTime()); + + beforeHedging.setCreateTime(getCreateTime); + beforeHedging.setUpdateTime(getUpdateTime); + + + CdHedgingEfficiencyResp efficiencyResp = new CdHedgingEfficiencyResp(); + + + //获取期货合约面值 + Integer setCompany = CdFuturesConfigureServiceImpl.setCompany(configure.getName()); + + + //合约名称 + efficiencyResp.setName(configure.getName().substring(0, 6)); + + + //现货盈亏 + efficiencyResp.setPromptGoodsPL(beforeHedging.getProfitLoss()); + + //期货盈亏 + efficiencyResp.setFuturesPl(configure.getWh_pl()); + + + //总盈亏 = 外汇期货盈亏 + 外汇现货盈亏 + BigDecimal totalPl = configure.getWh_pl().add(beforeHedging.getProfitLoss()); + efficiencyResp.setTotalPl(totalPl); + //totalPl = totalPl.divide(new BigDecimal(3), 2, BigDecimal.ROUND_HALF_UP); + + //外汇期货盈亏 + Integer getWh_pl = configure.getWh_pl().intValue(); + + //外汇现货盈亏的绝对值 + Integer getProfitLoss = beforeHedging.getProfitLoss().intValue(); + + + //风险对冲效率(%) = 外汇期货盈亏 / 外汇现货盈亏的绝对值 + double getWh_plRiskEfficiency = getAbsolute(getWh_pl); + double getProfitLossRiskEfficiency = getAbsolute(getProfitLoss); + + + BigDecimal RiskEfficiency = new BigDecimal(getProfitLossRiskEfficiency); + if (RiskEfficiency.intValue() == 0) { + efficiencyResp.setRiskEfficiency((0) + "%"); + } else { + BigDecimal riskEfficiency = new BigDecimal(getWh_plRiskEfficiency).divide(RiskEfficiency, 4, RoundingMode.HALF_UP); + efficiencyResp.setRiskEfficiency((riskEfficiency.multiply(new BigDecimal(100))) + "%"); + } + + //风险对冲比率(%)=(期货合约面值 * 持仓总量) / 外汇金额 + + double num = configure.getEntrustNumber(); + + //期货合约面值 * 持仓总量 + double price = setCompany * num; + + /** + * 如果 风险对冲比率(%)=(期货合约面值 * 持仓总量) /所需要的的金额=(期货合约价*持仓总量*每手) + * 比如合约每手价格为6.85元,合约面值为 100000 持仓量为1手 + * (100000 * 1)/(6.85*100000 *1) + */ + + + //TODO 风险对冲比率(%)=(期货合约面值 * 持仓总量) / 外汇金额(10000000元) + //外汇金额=所需资金 + //BigDecimal needPrice = BigDecimal.valueOf(setCompany).multiply(BigDecimal.valueOf(configure.getEntrustNumber())).multiply(configure.getEntrustPrice()); + // BigDecimal riskRatio = price.subtract(needPrice); + + double riskRatio = price / 10000000; + + + //double percentage2 = riskRatio / setNum; + + //riskRatio转换为% + efficiencyResp.setRiskRatio(riskRatio + "%"); + + BigDecimal need = beforeHedging.getNeededPriceByOpen().add(beforeHedging.getNeededPriceByClose()); + + //need = need.divide(new BigDecimal(3), 2, BigDecimal.ROUND_HALF_UP); + + //总盈亏率 = (外汇期货盈亏+外汇现货的盈亏)/(外汇期货所需资金+外汇现货所需资金) + BigDecimal totalPlRatio = totalPl.divide(need, 4, RoundingMode.HALF_UP); + efficiencyResp.setTotalPlRatio(totalPlRatio.multiply(new BigDecimal(100)) + "%"); + + + //外汇期货平仓绩效 + resp.setConfigure(configure); + //外汇现货盈亏 + resp.setBeforeHedging(beforeHedging); + //对冲效率 + resp.setHedgingEfficiency(efficiencyResp); + + return R.ok().put("data", resp); + } catch (Exception e) { + e.printStackTrace(); + return R.error(); + } + + } + + //获取绝对值 + public static int getAbsolute(Integer num) { + return num * (1 - ((num >>> 31) << 1)); + } + + public static void main(String[] args) { + // System.out.println(getAbsolute(5)); + + //转换百分比 + DecimalFormat df = new DecimalFormat("0.00%"); + //System.out.println(df.format(0.00196778)); + + double a = 1000000; + double b = 10000000; + + double c = a / b; + System.out.println(c); + + + } + + /* public static void main(String[] args) { + String str = "日元兑人民币期货2010"; + System.out.println(str.substring(0,2)); + }*/ + +} + diff --git a/src/main/java/com/msdw/tms/controller/CdPointController.java b/src/main/java/com/msdw/tms/controller/CdPointController.java new file mode 100644 index 0000000..c4c3a5f --- /dev/null +++ b/src/main/java/com/msdw/tms/controller/CdPointController.java @@ -0,0 +1,88 @@ +package com.msdw.tms.controller; + +import com.baomidou.mybatisplus.core.conditions.query.QueryWrapper; +import com.msdw.tms.common.utils.R; +import com.msdw.tms.entity.CdPoint; +import com.msdw.tms.entity.CdPointChildren; +import com.msdw.tms.service.CdPointChildrenService; +import com.msdw.tms.service.CdPointService; +import io.swagger.annotations.*; +import org.springframework.beans.factory.annotation.Autowired; +import org.springframework.web.bind.annotation.*; + +import java.util.List; + + +/** + * @描述:控制类 + * @作者: Rong + * @日期: 2021-01-11 + */ +@RestController +@RequestMapping("/point") +@Api(value = "API - 判分点:CdPointController", tags = "判分点:") +public class CdPointController { + + @Autowired + public CdPointService service; + + @Autowired + public CdPointChildrenService childrenService; + + /** + * @描述: 查询一级目录 + * @入参: + * @出参: + * @作者: Rong + * @日期: 2021-01-11 + **/ + @CrossOrigin + @GetMapping("/firstLevel") + @ApiOperation(value = " 查询一级目录", response = CdPoint.class) + public R listByEntity() { + QueryWrapper queryWrapper = new QueryWrapper<>(); + queryWrapper.eq("parent_id", 0); + + List pointsList = service.list(queryWrapper); + + return R.ok().put("list", pointsList); + } + + + /** + * @描述: 查询二级目录 + * @入参: + * @出参: + * @作者: Rong + * @日期: 2021-01-11 + **/ + @CrossOrigin + @GetMapping("/secondaryLevel") + @ApiOperation(value = " 查询二级目录", response = CdPoint.class) + public R secondaryLevel(@RequestParam("id") @ApiParam(value = "序号") Integer id) { + QueryWrapper queryWrapper = new QueryWrapper<>(); + queryWrapper.eq("parent_id", id); + List pointsList = service.list(queryWrapper); + return R.ok().put("list", pointsList); + } + + + /** + * @描述: 查询三级目录 + * @入参: + * @出参: + * @作者: Rong + * @日期: 2021-01-11 + **/ + @CrossOrigin + @GetMapping("/thirdLevel") + @ApiOperation(value = " 查询三级目录", response = CdPointChildren.class) + public R thirdLevel(@RequestParam("id") @ApiParam(value = "序号") Integer id) { + QueryWrapper queryWrapper = new QueryWrapper<>(); + queryWrapper.eq("point_id", id); + List pointsList = childrenService.list(queryWrapper); + return R.ok().put("list", pointsList); + } + +} + diff --git a/src/main/java/com/msdw/tms/controller/CdTransferWarehouseRecordController.java b/src/main/java/com/msdw/tms/controller/CdTransferWarehouseRecordController.java new file mode 100644 index 0000000..536df89 --- /dev/null +++ b/src/main/java/com/msdw/tms/controller/CdTransferWarehouseRecordController.java @@ -0,0 +1,63 @@ +package com.msdw.tms.controller; + +import com.msdw.tms.common.utils.R; +import com.msdw.tms.common.utils.TokenUtil; +import com.msdw.tms.entity.CdFuturesConfigureEntity; +import com.msdw.tms.model.req.CdTransferWarehouseReq; +import com.msdw.tms.service.CdTransferWarehouseRecordService; +import com.msdw.tms.service.CdUserAssetsService; +import com.msdw.tms.service.CdUserOptionAccountService; +import io.swagger.annotations.Api; +import io.swagger.annotations.ApiOperation; +import org.springframework.beans.factory.annotation.Autowired; +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; + + +/** + * @描述:调仓记录表控制类 + * @作者: Rong + * @日期: 2020-10-10 + */ +@RestController +@RequestMapping("/chuanda/transferWarehouseRecord") +@Api(value = "API - 川大:调仓相关操作", tags = "川大子系统:调仓相关操作") +public class CdTransferWarehouseRecordController { + + @Autowired + public CdTransferWarehouseRecordService service; + + @Autowired + public CdUserOptionAccountService optionAccountService; + + @Autowired + public CdUserAssetsService assetsService; + + /** + * @描述: 调仓操作 + * @入参: + * @出参: + * @作者: Rong + * @日期: 2020-10-10 + **/ + @PostMapping("/modify") + @ApiOperation(value = "调仓操作") + public R modify(@RequestBody CdTransferWarehouseReq req) { + if (req.getEntrustNumber() <= 0) { + return R.error("委托数量不能小于等于0!"); + } + CdFuturesConfigureEntity entity = new CdFuturesConfigureEntity(); + entity.setUserId(TokenUtil.getUserId()); + entity.setId(req.getId()); + /*entity.setTradingDirection(req.getTradingDirection());*/ + entity.setStatus(req.getStatus()); + entity.setEntrustPrice(req.getEntrustPrice()); + entity.setEntrustNumber(req.getEntrustNumber()); + entity.setTradableNumber(req.getTradableNumber()); + return service.add(entity); + } + +} + diff --git a/src/main/java/com/msdw/tms/controller/CdUserAssetsController.java b/src/main/java/com/msdw/tms/controller/CdUserAssetsController.java new file mode 100644 index 0000000..32a1bbf --- /dev/null +++ b/src/main/java/com/msdw/tms/controller/CdUserAssetsController.java @@ -0,0 +1,87 @@ +package com.msdw.tms.controller; + +import com.msdw.tms.common.utils.R; +import com.msdw.tms.common.utils.date.DateUtils; +import com.msdw.tms.entity.CdUserAssetsEntity; +import com.msdw.tms.entity.CdUserOptionAccountEntity; +import com.msdw.tms.service.CdUserAssetsService; +import com.msdw.tms.service.CdUserOptionAccountService; +import io.swagger.annotations.Api; +import io.swagger.annotations.ApiOperation; +import org.springframework.beans.factory.annotation.Autowired; +import org.springframework.data.redis.core.RedisTemplate; +import org.springframework.web.bind.annotation.PostMapping; +import org.springframework.web.bind.annotation.RequestMapping; +import org.springframework.web.bind.annotation.RestController; + +import javax.annotation.Resource; +import java.math.BigDecimal; +import java.time.LocalDateTime; + + +/** + * @描述:用户银行账户控制类 + * @作者: Rong + * @日期: 2020-10-10 + */ +@RestController +@RequestMapping("/chuanda/userAssets") +@Api(value = "API - 川大:账户信息新增", tags = "川大子系统:账户信息新增") +public class CdUserAssetsController { + + @Autowired + public CdUserAssetsService service; + + @Autowired + public CdUserOptionAccountService optionAccountService; + + @Resource + public RedisTemplate template; + + /** + * @描述: 新增银行账户信息和期权账户信息 + * @作者: Rong + * @日期: 2020-10-10 + **/ + @PostMapping("/save") + @ApiOperation(value = "新增银行账户信息和期权账户信息") + public R save(Integer userId) { + + try { + + String getDate = template.opsForValue().get("date:userId_" + userId); + //新增银行信息 + CdUserAssetsEntity userAssets = new CdUserAssetsEntity(Long.valueOf(userId), new BigDecimal(100000), new BigDecimal(100000), getDate); + + //新增期权账户信息 + CdUserOptionAccountEntity optionAccount = new CdUserOptionAccountEntity(Long.valueOf(userId), new BigDecimal(100000), new BigDecimal(0), new BigDecimal(0), getDate); + + //TODO 判断期权表和银行账户有没有过userId,没有则新增 + + //1.银行账户信息 + CdUserAssetsEntity getBankInfo = service.userAssetsByUerId(userId); + CdUserOptionAccountEntity getOptionInfo = optionAccountService.optionAccountByUerId(userId); + if (getBankInfo == null && getOptionInfo == null) { + //TODO getDate:这里是获取步骤二选中的时间(历史时间) + userAssets.setCreateTime(getDate); + userAssets.setUpdateTime(DateUtils.formatTime((LocalDateTime.now()))); + + //设置当前时间 + optionAccount.setCreateTime(getDate); + optionAccount.setUpdateTime(DateUtils.formatTime((LocalDateTime.now()))); + + service.addInfo(userAssets); + optionAccountService.addInfoByOptionAccount(optionAccount); + } + return R.ok("新增账户信息成功"); + } catch (Exception e) { + e.printStackTrace(); + return R.error("账户信息新增失败"); + } + + + } + + +} + diff --git a/src/main/java/com/msdw/tms/controller/QhscGangjiaosuoController.java b/src/main/java/com/msdw/tms/controller/QhscGangjiaosuoController.java new file mode 100644 index 0000000..f06b6f9 --- /dev/null +++ b/src/main/java/com/msdw/tms/controller/QhscGangjiaosuoController.java @@ -0,0 +1,209 @@ +package com.msdw.tms.controller; + +import com.baomidou.mybatisplus.core.conditions.query.QueryWrapper; +import com.msdw.tms.common.utils.PageUtils; +import com.msdw.tms.common.utils.R; +import com.msdw.tms.common.utils.TokenUtil; +import com.msdw.tms.common.utils.date.DateUtils; +import com.msdw.tms.common.utils.trading_rules.algorithm; +import com.msdw.tms.entity.QhscGangjiaosuoEntity; +import com.msdw.tms.entity.WhscRenminbipinzhongEntity; +import com.msdw.tms.model.req.QhscGangjiaosuoReq; +import com.msdw.tms.model.resp.CdGetDetailByIdResp; +import com.msdw.tms.model.resp.CdGetExchangeRateResp; +import com.msdw.tms.service.QhscGangjiaosuoService; +import com.msdw.tms.service.WhscRenminbipinzhongService; +import com.msdw.tms.service.impl.CdFuturesConfigureServiceImpl; +import io.swagger.annotations.Api; +import io.swagger.annotations.ApiOperation; +import io.swagger.annotations.ApiParam; +import org.springframework.beans.factory.annotation.Autowired; +import org.springframework.web.bind.annotation.*; + +import java.math.BigDecimal; +import java.util.*; + + +/** + * @描述:控制类 + * @作者: Rong + * @日期: 2020-10-10 + */ +@RestController +@RequestMapping("/chuanda/qhscGangjiaosuo") +@Api(value = "API - 川大:期货合约", tags = "川大子系统:期货合约") +public class QhscGangjiaosuoController { + + @Autowired + public QhscGangjiaosuoService service; + + @Autowired + public WhscRenminbipinzhongService rmbService; + + /** + * @描述: 根据实体属性分页查询 + * @入参: + * @出参: + * @作者: Rong + * @日期: 2020-10-10 + **/ + @PostMapping("/listByEntity") + @ApiOperation(value = " 列表:根据外币币种分页查询", response = QhscGangjiaosuoEntity.class) + public R listByEntity(@RequestBody QhscGangjiaosuoReq req) { + + Integer userId = TokenUtil.getUserId(); + if (null == req.getDate()) { + return R.error("选择时间不能为空"); + } + PageUtils list = service.queryPageByQh(req.getPageNum(), req.getPageSize(), req.getName(), req.getDate().substring(0, 10)); + return R.ok().put("page", list); + } + + + /** + * 列表:查询所有外币币种类型 + * + * @return + */ + @GetMapping("/getAllCurrency") + @ApiOperation(value = " 列表:查询所有外币币种类型", response = QhscGangjiaosuoEntity.class) + public Map getAllCurrency() { + + Integer userId = TokenUtil.getUserId(); + List list = service.getName(); + + QueryWrapper wrapper = new QueryWrapper(); + wrapper.orderByAsc("date").last("limit 1"); + WhscRenminbipinzhongEntity date = rmbService.getOne(wrapper); + + + Iterator it = list.iterator(); + while (it.hasNext()) { + String x = it.next().getCurrency(); + if (x.equals("人民币")) { + it.remove(); + } + } + String time = DateUtils.dateForByStr(date.getDate()); + Map map = new HashMap<>(); + map.put("errmessage", "success"); + map.put("data", list); + map.put("status", 200); + map.put("startingTime", time);//获取外汇市场人民币品种最前一天的日期 + + + return map; + //return R.ok().put("data", list); + + } + + + /** + * 列表:汇率类型 + * 以中间表查询 + * + * @return + */ + @GetMapping("/getExchangeRate") + @ApiOperation(value = " 汇率类型", response = CdGetExchangeRateResp.class) + public R getExchangeRate() { + + Integer userId = TokenUtil.getUserId(); + //查询汇率类型 + List list = rmbService.getExchangeRate(); + + //respList:用来保存去除其他字段的list + List respList = new ArrayList<>(); + + //查询币种名称 + List getRMB_Name = service.getName(); + Iterator it = getRMB_Name.iterator(); + while (it.hasNext()) { + String x = it.next().getCurrency(); + if (x.equals("人民币")) { + it.remove(); + } + } + + for (WhscRenminbipinzhongEntity entity : list) { + CdGetExchangeRateResp rateResp = new CdGetExchangeRateResp(); + //name:循环出中间价的类型 + String name = entity.getName(); + + //循环出人民币币种 + for (QhscGangjiaosuoEntity g : getRMB_Name) { + String rmbType = g.getCurrency(); + //判断中间价 是否包含 人民币币种 + if (name.contains(rmbType)) { + rateResp.setTypeName(name); + } + } + + if (rateResp.getTypeName() != null) { + respList.add(rateResp); + } + + } + + + return R.ok().put("data", respList); + + } + + + /** + * 外汇期货合约类型选择—根据id查看配置头寸信息 + * + * @return + */ + @PostMapping("/getDetailById") + @ApiOperation(value = " 外汇期货合约类型选择—根据id查看配置头寸信息", response = CdGetDetailByIdResp.class) + public R getDetailById(@RequestParam("id") @ApiParam(value = "要查询的合约id") Integer id) { + + + Integer userId = TokenUtil.getUserId(); + + //根据id查询合约的信息 + QhscGangjiaosuoEntity exchange = this.service.getById(id); + + //设置每手交易单位(合约面值) + Integer tradingUnit = 0; + tradingUnit = CdFuturesConfigureServiceImpl.setCompany(exchange.getName()); + + CdGetDetailByIdResp resp = new CdGetDetailByIdResp(); + //最新价格 + resp.setNewestPrice(exchange.getLastPrice()); + //合约名称 + resp.setName(exchange.getName()); + //可交易数量 + resp.setTradableNumber(exchange.getHava()); + //委托价(暂为合约最新价) + resp.setEntrustPrice(exchange.getLastPrice()); + //委托数量(暂为1手) + resp.setEntrustNumber(1); + + + //:预冻结保证金 = 外汇期货合约价格 * 合约面值 * 手数 * 保证金比例 + BigDecimal getPreFreezingMargin = algorithm.getPreFreezingMargin(exchange.getLastPrice(), new BigDecimal(tradingUnit), exchange.getName().substring(0, 8)); + resp.setPreFreezingMargin(getPreFreezingMargin); + + //:预冻结手续费 = 委托数量(手)* 费用标准 + BigDecimal getPreFreezingServiceCharge = algorithm.getPreFreezingServiceCharge(new BigDecimal(resp.getEntrustNumber())); + resp.setPreFreezingFrozen(getPreFreezingServiceCharge); + + //:冻结资金 = 预计冻结保证金+预冻结手续费 + BigDecimal frozen_price = getPreFreezingMargin.add(getPreFreezingServiceCharge); + resp.setFrozenPrice(frozen_price); + resp.setPid(id); + resp.setTradingUnit(tradingUnit); + BigDecimal bond = algorithm.getBond(exchange.getName()); + resp.setTradingBond(bond); + + return R.ok().put("data", resp); + + + } + + +} + diff --git a/src/main/java/com/msdw/tms/controller/WhscRenminbipinzhongController.java b/src/main/java/com/msdw/tms/controller/WhscRenminbipinzhongController.java new file mode 100644 index 0000000..bfaec26 --- /dev/null +++ b/src/main/java/com/msdw/tms/controller/WhscRenminbipinzhongController.java @@ -0,0 +1,197 @@ +package com.msdw.tms.controller; + +import com.baomidou.mybatisplus.core.conditions.query.QueryWrapper; +import com.msdw.tms.common.utils.PageUtils; +import com.msdw.tms.common.utils.R; +import com.msdw.tms.common.utils.TokenUtil; +import com.msdw.tms.entity.WhscRenminbipinzhongEntity; +import com.msdw.tms.entity.vo.CdCreatePhotoVo; +import com.msdw.tms.model.req.CdExportReq; +import com.msdw.tms.model.req.CdGetWeekAndMonthInfoReq; +import com.msdw.tms.model.req.CdPageConditionReq; +import com.msdw.tms.model.req.CdSimulationReq; +import com.msdw.tms.model.resp.CdGetWeekAndMonthInfoResp; +import com.msdw.tms.service.WhscRenminbipinzhongService; +import io.swagger.annotations.Api; +import io.swagger.annotations.ApiOperation; +import io.swagger.annotations.ApiParam; +import org.springframework.http.MediaType; +import org.springframework.web.bind.annotation.*; +import redis.clients.jedis.Jedis; + +import javax.annotation.Resource; +import javax.servlet.http.HttpServletResponse; +import java.util.HashMap; +import java.util.List; +import java.util.Map; + + +/** + * @描述:外汇市场人民币品种控制类 + * @作者: Rong + * @日期: 2020-09-28 + */ + +@RestController +@RequestMapping("/chuanda/foreignExchange") +@Api(value = "API - 川大:外汇市场人民币品种", tags = "川大子系统:外汇市场") +public class WhscRenminbipinzhongController { + + @Resource + public WhscRenminbipinzhongService service; + + /** + * @描述: 列表:根据时间、币种条件查询 + * @入参: + * @出参: + * @作者: Rong + * @日期: 2020-09-28 + **/ + @ApiOperation(value = "当日外汇行情:根据时间、币种条件查询", response = WhscRenminbipinzhongEntity.class) + @PostMapping(value = "/pageCondition") + public R pageCondition(@RequestBody CdPageConditionReq entity) { + + Integer userId = TokenUtil.getUserId(); + //TODO 日期格式化 + String dateFormat = entity.getDate(); + PageUtils list = service.queryPageByRecode(entity.getPageNum(), entity.getPageSize(), entity.getName(), dateFormat, userId); + return R.ok().put("data", list); + } + + + /** + * @描述: 查看外汇详情 + * @入参: + * @出参: + * @作者: Rong + * @日期: 2020-09-28 + **/ + @ApiOperation(value = "查看外汇详情", response = WhscRenminbipinzhongEntity.class) + @PostMapping(value = "/detail") + public R detail(@RequestParam("id") @ApiParam(value = "序号") Integer id) { + Integer userId = TokenUtil.getUserId(); + WhscRenminbipinzhongEntity entity = service.getById(id); + return R.ok().put("data", entity); + } + + + /** + * @描述: 查看外汇每周/每月的信息 + * @入参: + * @出参: + * @作者: Rong + * @日期: 2020-09-28 + **/ + @ApiOperation(value = "查看外汇每周/每月的信息", response = CdGetWeekAndMonthInfoResp.class) + @PostMapping(value = "/getWeekAndMonthInfo") + public Map getWeekAndMonthInfo(@RequestBody CdGetWeekAndMonthInfoReq req) { + + Map map = new HashMap(); + + Integer userId = TokenUtil.getUserId(); + + + //1.根据id查询到该条外汇信息 + WhscRenminbipinzhongEntity entity = service.getById(req.getId()); + + //2.根据外汇名称查询该合约一周的信息 + QueryWrapper wrapper = new QueryWrapper<>(); + wrapper.eq("name", entity.getName()); + wrapper.last(" and YEARWEEK(date_format(date,'%Y-%m-%d')) = YEARWEEK('" + req.getDate() + "') ORDER BY date "); + List week = service.list(wrapper); + + /*List getWeek = new ArrayList(); + + for (WhscRenminbipinzhongEntity list : week) { + CdGetWeekAndMonthInfoResp resp = new CdGetWeekAndMonthInfoResp(); + resp.setDate(list.getDate()); + resp.setLastPrice(list.getLastPrice()); + getWeek.add(resp); + + }*/ + + + //3.根据外汇名称查询该合约一个月的信息 + + QueryWrapper queryWrapper = new QueryWrapper<>(); + queryWrapper.eq("name", entity.getName()); + queryWrapper.last(" AND DATE_FORMAT( date, '%Y%m' ) = DATE_FORMAT( '" + req.getDate() + "' , '%Y%m' ) ORDER BY date "); + List month = service.list(queryWrapper); + + /* List getMonth = new ArrayList<>(); + + for (WhscRenminbipinzhongEntity list1 : month) { + CdGetWeekAndMonthInfoResp resp1 = new CdGetWeekAndMonthInfoResp(); + resp1.setDate(list1.getDate()); + resp1.setLastPrice(list1.getLastPrice()); + getMonth.add(resp1); + + }*/ + + map.put("errmessage", "success"); + map.put("status", 200); + map.put("week", week); + map.put("month", month); + return map; + + } + + + /** + * 根据时间、币种条件查询后导出报表 + * + * @param exportReq + * @param response + * @return + */ + @ApiOperation(value = "根据时间、币种条件查询后导出报表", notes = "根据时间、币种条件查询后导出报表") + @RequestMapping(value = "/export", method = RequestMethod.GET, produces = "application/json") + public R export(CdExportReq exportReq, HttpServletResponse response) { + try { + //TODO:历史数据下载:只能选取所选择的行情日期之前的数据下载 + R r = service.exportProjectRecord(response, exportReq.getName(), exportReq.getStartTime(), exportReq.getEndTime()); + return r; + } catch (Exception e) { + e.printStackTrace(); + return R.error(); + } + + } + + + /** + * @描述: 根据选择的模拟法传值获取相应数据 + * @入参: + * @出参: + * @作者: Rong + * @日期: 2020-09-28 + **/ + @ApiOperation(value = "根据选择的模拟法传值获取相应数据", response = CdCreatePhotoVo.class) + @PostMapping(value = "/simulation", produces = MediaType.APPLICATION_JSON_UTF8_VALUE) + @CrossOrigin + public R simulation(@RequestBody CdSimulationReq req) { + + try { + Integer userId = TokenUtil.getUserId(); + //TODO:历史数据下载:只能选取所选择的行情日期之前的数据下载 + R r = service.getInfobyId(req.getName(), req.getStartTime(), req.getEndTime(), req.getConfidenceLevel(), req.getValidity(), req.getType(), req.getExperimentsNumber()); + + return r; + } catch (Exception e) { + e.printStackTrace(); + return R.error(); + } + + + } + + public static void main(String[] args) { + //连接本地的 Redis 服务 + Jedis jedis = new Jedis("localhost"); + System.out.println("连接成功"); + //查看服务是否运行 + System.out.println("服务正在运行: " + jedis.ping()); + } + + +} diff --git a/src/main/java/com/msdw/tms/dao/CdBankStatementsDao.java b/src/main/java/com/msdw/tms/dao/CdBankStatementsDao.java new file mode 100644 index 0000000..9945795 --- /dev/null +++ b/src/main/java/com/msdw/tms/dao/CdBankStatementsDao.java @@ -0,0 +1,16 @@ +package com.msdw.tms.dao; + +import com.baomidou.mybatisplus.core.mapper.BaseMapper; +import com.msdw.tms.entity.CdBankStatementsEntity; +import org.apache.ibatis.annotations.Mapper; + +/** + * @描述:账户流水记录 Mapper 接口 + * @作者: Rong + * @日期: 2020-10-15 + */ +@Mapper +public interface CdBankStatementsDao extends BaseMapper { + + +} \ No newline at end of file diff --git a/src/main/java/com/msdw/tms/dao/CdCacheDao.java b/src/main/java/com/msdw/tms/dao/CdCacheDao.java new file mode 100644 index 0000000..d88af8c --- /dev/null +++ b/src/main/java/com/msdw/tms/dao/CdCacheDao.java @@ -0,0 +1,15 @@ +package com.msdw.tms.dao; + +import org.apache.ibatis.annotations.Mapper; +import com.msdw.tms.entity.CdCacheEntity; +import com.baomidou.mybatisplus.core.mapper.BaseMapper; + +/** + * @描述:步骤缓存记录表 Mapper 接口 + * @作者: Rong + * @日期: 2020-10-21 + */ +@Mapper +public interface CdCacheDao extends BaseMapper { + +} \ No newline at end of file diff --git a/src/main/java/com/msdw/tms/dao/CdExperimentalDao.java b/src/main/java/com/msdw/tms/dao/CdExperimentalDao.java new file mode 100644 index 0000000..0d8721b --- /dev/null +++ b/src/main/java/com/msdw/tms/dao/CdExperimentalDao.java @@ -0,0 +1,15 @@ +package com.msdw.tms.dao; + +import org.apache.ibatis.annotations.Mapper; +import com.msdw.tms.entity.CdExperimentalEntity; +import com.baomidou.mybatisplus.core.mapper.BaseMapper; + +/** + * @描述:实验数据 Mapper 接口 + * @作者: Rong + * @日期: 2020-10-20 + */ +@Mapper +public interface CdExperimentalDao extends BaseMapper { + +} \ No newline at end of file diff --git a/src/main/java/com/msdw/tms/dao/CdFuturesConfigureDao.java b/src/main/java/com/msdw/tms/dao/CdFuturesConfigureDao.java new file mode 100644 index 0000000..ae109fb --- /dev/null +++ b/src/main/java/com/msdw/tms/dao/CdFuturesConfigureDao.java @@ -0,0 +1,15 @@ +package com.msdw.tms.dao; + +import org.apache.ibatis.annotations.Mapper; +import com.msdw.tms.entity.CdFuturesConfigureEntity; +import com.baomidou.mybatisplus.core.mapper.BaseMapper; + +/** + * @描述:期货资产头寸配置 Mapper 接口 + * @作者: Rong + * @日期: 2020-10-10 + */ +@Mapper +public interface CdFuturesConfigureDao extends BaseMapper { + +} \ No newline at end of file diff --git a/src/main/java/com/msdw/tms/dao/CdPointChildrenDao.java b/src/main/java/com/msdw/tms/dao/CdPointChildrenDao.java new file mode 100644 index 0000000..bb9f8ea --- /dev/null +++ b/src/main/java/com/msdw/tms/dao/CdPointChildrenDao.java @@ -0,0 +1,15 @@ +package com.msdw.tms.dao; + +import com.baomidou.mybatisplus.core.mapper.BaseMapper; +import com.msdw.tms.entity.CdPointChildren; +import org.apache.ibatis.annotations.Mapper; + +/** + * @描述:判分点值子级表 Mapper 接口 + * @作者: Rong + * @日期: 2021-01-12 + */ +@Mapper +public interface CdPointChildrenDao extends BaseMapper { + +} \ No newline at end of file diff --git a/src/main/java/com/msdw/tms/dao/CdPointDao.java b/src/main/java/com/msdw/tms/dao/CdPointDao.java new file mode 100644 index 0000000..b1a64ab --- /dev/null +++ b/src/main/java/com/msdw/tms/dao/CdPointDao.java @@ -0,0 +1,15 @@ +package com.msdw.tms.dao; + +import com.baomidou.mybatisplus.core.mapper.BaseMapper; +import com.msdw.tms.entity.CdPoint; +import org.apache.ibatis.annotations.Mapper; + +/** + * @描述: Mapper 接口 + * @作者: Rong + * @日期: 2021-01-11 + */ +@Mapper +public interface CdPointDao extends BaseMapper { + +} \ No newline at end of file diff --git a/src/main/java/com/msdw/tms/dao/CdTransferWarehouseRecordDao.java b/src/main/java/com/msdw/tms/dao/CdTransferWarehouseRecordDao.java new file mode 100644 index 0000000..35943e7 --- /dev/null +++ b/src/main/java/com/msdw/tms/dao/CdTransferWarehouseRecordDao.java @@ -0,0 +1,15 @@ +package com.msdw.tms.dao; + +import org.apache.ibatis.annotations.Mapper; +import com.msdw.tms.entity.CdTransferWarehouseRecordEntity; +import com.baomidou.mybatisplus.core.mapper.BaseMapper; + +/** + * @描述:调仓记录表 Mapper 接口 + * @作者: Rong + * @日期: 2020-10-10 + */ +@Mapper +public interface CdTransferWarehouseRecordDao extends BaseMapper { + +} \ No newline at end of file diff --git a/src/main/java/com/msdw/tms/dao/CdUserAssetsDao.java b/src/main/java/com/msdw/tms/dao/CdUserAssetsDao.java new file mode 100644 index 0000000..b573f79 --- /dev/null +++ b/src/main/java/com/msdw/tms/dao/CdUserAssetsDao.java @@ -0,0 +1,15 @@ +package com.msdw.tms.dao; + +import org.apache.ibatis.annotations.Mapper; +import com.msdw.tms.entity.CdUserAssetsEntity; +import com.baomidou.mybatisplus.core.mapper.BaseMapper; + +/** + * @描述:用户银行账户 Mapper 接口 + * @作者: Rong + * @日期: 2020-10-10 + */ +@Mapper +public interface CdUserAssetsDao extends BaseMapper { + +} \ No newline at end of file diff --git a/src/main/java/com/msdw/tms/dao/CdUserOptionAccountDao.java b/src/main/java/com/msdw/tms/dao/CdUserOptionAccountDao.java new file mode 100644 index 0000000..2d5de64 --- /dev/null +++ b/src/main/java/com/msdw/tms/dao/CdUserOptionAccountDao.java @@ -0,0 +1,15 @@ +package com.msdw.tms.dao; + +import org.apache.ibatis.annotations.Mapper; +import com.msdw.tms.entity.CdUserOptionAccountEntity; +import com.baomidou.mybatisplus.core.mapper.BaseMapper; + +/** + * @描述:期货期权账户 Mapper 接口 + * @作者: Rong + * @日期: 2020-10-10 + */ +@Mapper +public interface CdUserOptionAccountDao extends BaseMapper { + +} \ No newline at end of file diff --git a/src/main/java/com/msdw/tms/dao/QhscGangjiaosuoDao.java b/src/main/java/com/msdw/tms/dao/QhscGangjiaosuoDao.java new file mode 100644 index 0000000..0b0a30c --- /dev/null +++ b/src/main/java/com/msdw/tms/dao/QhscGangjiaosuoDao.java @@ -0,0 +1,28 @@ +package com.msdw.tms.dao; + +import com.baomidou.dynamic.datasource.annotation.DS; +import com.baomidou.mybatisplus.core.mapper.BaseMapper; +import com.baomidou.mybatisplus.core.metadata.IPage; +import com.baomidou.mybatisplus.extension.plugins.pagination.Page; +import com.msdw.tms.entity.QhscGangjiaosuoEntity; +import org.apache.ibatis.annotations.Mapper; +import org.apache.ibatis.annotations.Param; + +import java.util.List; + +/** + * @描述: Mapper 接口 + * @作者: Rong + * @日期: 2020-10-10 + */ +@Mapper +@DS("pydb") +public interface QhscGangjiaosuoDao extends BaseMapper { + IPage queryPageByQh(Page page, @Param("name") String name, @Param("date") String date); + + + //查询所有币种 + List getName(); + + +} \ No newline at end of file diff --git a/src/main/java/com/msdw/tms/dao/WhscRenminbipinzhongDao.java b/src/main/java/com/msdw/tms/dao/WhscRenminbipinzhongDao.java new file mode 100644 index 0000000..493b96d --- /dev/null +++ b/src/main/java/com/msdw/tms/dao/WhscRenminbipinzhongDao.java @@ -0,0 +1,25 @@ +package com.msdw.tms.dao; + +import com.baomidou.dynamic.datasource.annotation.DS; +import com.baomidou.mybatisplus.core.mapper.BaseMapper; +import com.msdw.tms.entity.WhscRenminbipinzhongEntity; +import org.apache.ibatis.annotations.Mapper; + +import java.util.List; + +/** + * @描述:外汇市场人民币品种 Mapper 接口 + * @作者: Rong + * @日期: 2020-09-28 + */ + +@Mapper +@DS("pydb") +public interface WhscRenminbipinzhongDao extends BaseMapper { + + /*汇率风险识别历史行情数据下载 根据时间区间查询*/ + List exportByDate(String startTime,String endTime); + + //查询所有汇率类型 + List getExchangeRate(); +} \ No newline at end of file diff --git a/src/main/java/com/msdw/tms/entity/CdBankStatementsEntity.java b/src/main/java/com/msdw/tms/entity/CdBankStatementsEntity.java new file mode 100644 index 0000000..c057215 --- /dev/null +++ b/src/main/java/com/msdw/tms/entity/CdBankStatementsEntity.java @@ -0,0 +1,57 @@ +package com.msdw.tms.entity; + +import com.baomidou.mybatisplus.annotation.TableName; +import io.swagger.annotations.ApiModel; +import io.swagger.annotations.ApiModelProperty; +import lombok.Data; + +import javax.validation.constraints.NotBlank; +import java.io.Serializable; +import java.math.BigDecimal; + +/** + * @描述:账户流水记录 + * @作者: Rong + * @日期: 2020-10-15 + */ +@Data +@ApiModel(value = "账户流水记录") +@TableName("cd_bank_statements") +public class CdBankStatementsEntity implements Serializable { + + private static final long serialVersionUID = 1L; + + private Long id; + @ApiModelProperty(value = "用户id") + @NotBlank(message = "用户id不能为空") + private Integer userId; + + @ApiModelProperty(value = "类型(1银行账户 2期货账户)") + private Integer type; + + @ApiModelProperty(value = "币种") + private String coinType; + + @ApiModelProperty(value = "改变前金额") + private BigDecimal beforeAmount; + + @ApiModelProperty(value = "金额") + private BigDecimal amountMoney; + + @ApiModelProperty(value = "改变后金额") + private BigDecimal afterAmount; + + @ApiModelProperty(value = "流水类型(1:转账 2:流水)") + private Integer transferType; + + @ApiModelProperty(value = "备注") + private String remark; + + @ApiModelProperty(value = "创建时间") + private String createTime; + + @ApiModelProperty(value = "修改时间") + private String updateTime; + + +} \ No newline at end of file diff --git a/src/main/java/com/msdw/tms/entity/CdCacheEntity.java b/src/main/java/com/msdw/tms/entity/CdCacheEntity.java new file mode 100644 index 0000000..1caa641 --- /dev/null +++ b/src/main/java/com/msdw/tms/entity/CdCacheEntity.java @@ -0,0 +1,62 @@ +package com.msdw.tms.entity; + +import com.baomidou.mybatisplus.annotation.TableName; +import io.swagger.annotations.ApiModel; +import io.swagger.annotations.ApiModelProperty; +import lombok.Data; + +import java.io.Serializable; + +/** + * @描述:步骤缓存记录表 + * @作者: Rong + * @日期: 2020-10-21 + */ +@Data +@ApiModel(value = "步骤缓存记录表") +@TableName("cd_cache") +public class CdCacheEntity implements Serializable { + + private static final long serialVersionUID = 1L; + + @ApiModelProperty(value = "主键") + private Integer id; + + @ApiModelProperty(value = "用户id") + private Integer userId; + + @ApiModelProperty(value = "步骤标识(标识为用户做到哪一步骤了)") + private Integer stepNumber; + + @ApiModelProperty(value = "步骤1 Json字符串") + private String step1; + + @ApiModelProperty(value = "步骤2 Json字符串") + private String step2; + + @ApiModelProperty(value = "步骤3 Json字符串") + private String step3; + + @ApiModelProperty(value = "步骤4 Json字符串") + private String step4; + + @ApiModelProperty(value = "步骤5 Json字符串") + private String step5; + + @ApiModelProperty(value = "步骤6 Json字符串") + private String step6; + + @ApiModelProperty(value = "步骤7 Json字符串") + private String step7; + + @ApiModelProperty(value = "步骤8 Json字符串") + private String step8; + + @ApiModelProperty(value = "步骤9 Json字符串") + private String step9; + + @ApiModelProperty(value = "步骤10 Json字符串") + private String step10; + + +} \ No newline at end of file diff --git a/src/main/java/com/msdw/tms/entity/CdExperimentalEntity.java b/src/main/java/com/msdw/tms/entity/CdExperimentalEntity.java new file mode 100644 index 0000000..6d278f8 --- /dev/null +++ b/src/main/java/com/msdw/tms/entity/CdExperimentalEntity.java @@ -0,0 +1,74 @@ +package com.msdw.tms.entity; + +import cn.afterturn.easypoi.excel.annotation.Excel; +import com.baomidou.mybatisplus.annotation.TableName; +import io.swagger.annotations.ApiModel; +import io.swagger.annotations.ApiModelProperty; +import lombok.Data; + +import java.io.Serializable; + +/** + * @描述:实验数据 + * @作者: Rong + * @日期: 2020-10-20 + */ +@Data +@ApiModel(value = "实验数据") +@TableName("cd_experimental") +public class CdExperimentalEntity implements Serializable { + + private static final long serialVersionUID = 1L; + + @Excel(name = "序号", orderNum = "1", mergeVertical = true, isImportField = "id", width = 15) + @ApiModelProperty(value = "主键") + private Integer id; + + @ApiModelProperty(value = "用户id") + private Integer userId; + + @ApiModelProperty(value = "实验类型(0正态Var,1历史模拟,2蒙特卡洛)") + private Integer type; + + + @Excel(name = "汇率类型", orderNum = "2", mergeVertical = true, isImportField = "exchangeRate", width = 15) + @ApiModelProperty(value = "汇率类型") + private String exchangeRate; + + + @Excel(name = "样本数据", orderNum = "3", mergeVertical = true, isImportField = "sampleData", width = 25) + @ApiModelProperty(value = "样本数据") + private String sampleData; + + + @Excel(name = "置信水平", orderNum = "4", mergeVertical = true, isImportField = "confidenceLevel", width = 15) + @ApiModelProperty(value = "置信水平") + private String confidenceLevel; + + @Excel(name = "持有天数", orderNum = "5", mergeVertical = true, isImportField = "validPeriod", width = 15) + @ApiModelProperty(value = "持有天数") + private String validPeriod; + + @ApiModelProperty(value = "实验次数") + private Integer experimentsNumber; + + + @Excel(name = "Var值", orderNum = "6", mergeVertical = true, isImportField = "varCode", width = 20) + @ApiModelProperty(value = "Var值") + private String varCode; + + @ApiModelProperty(value = "汇率走势图") + private String trendChart; + + @ApiModelProperty(value = "汇率损益分布图") + private String profitLossDistribution; + + @Excel(name = "创建时间", orderNum = "7", mergeVertical = true, isImportField = "creatTime", width = 20) + @ApiModelProperty(value = "创建时间") + private String creatTime; + + @ApiModelProperty(value = "修改时间") + private String updateTime; + + +} \ No newline at end of file diff --git a/src/main/java/com/msdw/tms/entity/CdFuturesConfigureEntity.java b/src/main/java/com/msdw/tms/entity/CdFuturesConfigureEntity.java new file mode 100644 index 0000000..f3f558b --- /dev/null +++ b/src/main/java/com/msdw/tms/entity/CdFuturesConfigureEntity.java @@ -0,0 +1,148 @@ +package com.msdw.tms.entity; + +import com.baomidou.mybatisplus.annotation.IdType; +import com.baomidou.mybatisplus.annotation.TableId; +import com.baomidou.mybatisplus.annotation.TableName; +import io.swagger.annotations.ApiModel; +import io.swagger.annotations.ApiModelProperty; +import lombok.Data; + +import javax.validation.constraints.NotBlank; +import javax.validation.constraints.NotNull; +import java.io.Serializable; +import java.math.BigDecimal; + +/** + * @描述:建仓记录表 + * @作者: Rong + * @日期: 2020-10-12 + */ +@Data +@ApiModel(value = "建仓记录表") +@TableName("cd_futures_configure") +public class CdFuturesConfigureEntity implements Serializable { + + private static final long serialVersionUID = 1L; + + @ApiModelProperty(value = "主键", required = false) + @TableId(type = IdType.AUTO) + private Integer id; + + @ApiModelProperty(value = "用户id") + @NotNull(message = "用户id不能为空") + private Integer userId; + + @ApiModelProperty(value = "合约表主键") + @NotNull(message = "合约表主键不能为空") + private Integer pid; + + @ApiModelProperty(value = "交易方向(0空头,1多头)") + @NotBlank(message = "交易方向不能为空") + private Integer tradingDirection; + + @ApiModelProperty(value = "最新价格") + @NotBlank(message = "最新价格不能为空") + private BigDecimal newestPrice; + + @ApiModelProperty(value = "委托价格") + @NotNull(message = "委托价格不能为空") + private BigDecimal entrustPrice; + + @ApiModelProperty(value = "委托数量") + @NotNull(message = "委托数量不能为空") + private Integer entrustNumber; + + @ApiModelProperty(value = "可交易数量") + @NotNull(message = "可交易数量不能为空") + private BigDecimal tradableNumber; + + @ApiModelProperty(value = "预冻结保证金") + private BigDecimal preFreezingMargin; + + @ApiModelProperty(value = "预冻结手续费") + private BigDecimal preFreezingFrozen; + + @ApiModelProperty(value = "所需资金") + private BigDecimal fundingNeeded; + + @ApiModelProperty(value = "冻结资金") + private BigDecimal frozenPrice; + + @ApiModelProperty(value = "0.开仓 1.平仓") + private Integer status; + + @ApiModelProperty(value = "是否自动平仓(0否 1是)") + private Integer type; + + @ApiModelProperty(value = "浮动盈亏") + private BigDecimal floatingPl; + + @ApiModelProperty(value = "开仓时间") + @NotBlank(message = "开仓时间不能为空") + private String createTime; + + @ApiModelProperty(value = "平仓时间") + @NotBlank(message = "平仓时间不能为空") + private String updateTime; + + @ApiModelProperty(value = "最后交易日") + @NotBlank(message = "最后交易日不能为空") + private String tradeTime; + + + @ApiModelProperty(value = "平仓价格") + @NotBlank(message = "平仓价格不能为空") + private BigDecimal closeRate; + + //transient设置非数据库字段 + /** + * 浮动盈亏 + */ + //private transient String floatingPL; + + /** + * 名称 + */ + @ApiModelProperty(value = "名称") + private transient String name; + + /** + * 代码 + */ + @ApiModelProperty(value = "代码") + private transient String ename; + + + /** + * 当前最新价 + */ + @ApiModelProperty(value = "当前最新价") + private transient BigDecimal lastPrice; + + /** + * 涨跌幅 + */ + @ApiModelProperty(value = "涨跌幅") + private transient String u; + + + /** + * 昨收 + */ + @ApiModelProperty(value = "昨结") + private transient BigDecimal dayUp; + + //买卖方向为开仓时候:可交易数量为Python表的持仓总量 + @ApiModelProperty(value = "买卖方向为开仓时候:可交易数量为Python表的持仓总量") + private transient BigDecimal tradableQuantityByBuy; + + //买卖方向为平仓时候:可交易数量为自己的持仓总量 + @ApiModelProperty(value = "买卖方向为平仓时候:可交易数量为自己的持仓总量") + private transient BigDecimal tradableQuantityBySell; + + //当前账户期权可用资金 + @ApiModelProperty(value = "当前期权账户可用资金") + private transient BigDecimal availableFunds; + + +} \ No newline at end of file diff --git a/src/main/java/com/msdw/tms/entity/CdPoint.java b/src/main/java/com/msdw/tms/entity/CdPoint.java new file mode 100644 index 0000000..ea06269 --- /dev/null +++ b/src/main/java/com/msdw/tms/entity/CdPoint.java @@ -0,0 +1,35 @@ +package com.msdw.tms.entity; + +import com.baomidou.mybatisplus.annotation.IdType; +import com.baomidou.mybatisplus.annotation.TableId; +import com.baomidou.mybatisplus.annotation.TableName; +import io.swagger.annotations.ApiModel; +import io.swagger.annotations.ApiModelProperty; +import lombok.Data; + +import java.io.Serializable; + +/** + * @描述: + * @作者: Rong + * @日期: 2021-01-11 + */ +@Data +@ApiModel(value = "判分点值设置") +@TableName("cd_point") +public class CdPoint implements Serializable { + + private static final long serialVersionUID = 1L; + + @TableId(type = IdType.AUTO) + @ApiModelProperty(value = "主键") + private Integer id; + + @ApiModelProperty(value = "名称") + private String name; + + @ApiModelProperty(value = "父级id") + private Integer parentId; + + +} \ No newline at end of file diff --git a/src/main/java/com/msdw/tms/entity/CdPointChildren.java b/src/main/java/com/msdw/tms/entity/CdPointChildren.java new file mode 100644 index 0000000..116fc46 --- /dev/null +++ b/src/main/java/com/msdw/tms/entity/CdPointChildren.java @@ -0,0 +1,39 @@ +package com.msdw.tms.entity; + +import com.baomidou.mybatisplus.annotation.IdType; +import com.baomidou.mybatisplus.annotation.TableId; +import com.baomidou.mybatisplus.annotation.TableName; +import io.swagger.annotations.ApiModel; +import io.swagger.annotations.ApiModelProperty; +import lombok.Data; + +import java.io.Serializable; + +/** + * @描述:判分点值子级表 + * @作者: Rong + * @日期: 2021-01-12 + */ +@Data +@ApiModel(value = "判分点值子级表") +@TableName("cd_point_children") +public class CdPointChildren implements Serializable { + + private static final long serialVersionUID = 1L; + + @TableId(type = IdType.AUTO) + @ApiModelProperty(value = "主键") + private Integer cid; + + @ApiModelProperty(value = "名称") + private String childrenName; + + @ApiModelProperty(value = "父级id") + private Integer pointId; + + + @ApiModelProperty(value = "类型(1.选择题 2.填空题 3.问答题 4.指标结果 )") + private String type; + + +} \ No newline at end of file diff --git a/src/main/java/com/msdw/tms/entity/CdTransferWarehouseRecordEntity.java b/src/main/java/com/msdw/tms/entity/CdTransferWarehouseRecordEntity.java new file mode 100644 index 0000000..dd2f2bc --- /dev/null +++ b/src/main/java/com/msdw/tms/entity/CdTransferWarehouseRecordEntity.java @@ -0,0 +1,52 @@ +package com.msdw.tms.entity; + +import com.baomidou.mybatisplus.annotation.TableName; +import io.swagger.annotations.ApiModel; +import io.swagger.annotations.ApiModelProperty; +import lombok.Data; + +import javax.validation.constraints.NotNull; +import java.io.Serializable; +import java.math.BigDecimal; + +/** + * @描述:调仓记录表 + * @作者: Rong + * @日期: 2020-10-10 + */ +@Data +@ApiModel(value = "操作记录表") +@TableName("cd_transfer_warehouse_record") +public class CdTransferWarehouseRecordEntity implements Serializable { + + private static final long serialVersionUID = 1L; + + private Integer id; + + @ApiModelProperty(value = "头寸主键") + private Integer cid; + + @ApiModelProperty(value = "用户id") + @NotNull(message = "用户id不能为空") + private Integer userId; + + @ApiModelProperty(value = "金额") + private BigDecimal balance; + + @ApiModelProperty(value = "买卖方向(0开仓 1平仓)") + private Integer direction; + + @ApiModelProperty(value = "委托类型(0市价 1限价)") + private Integer type; + + @ApiModelProperty(value = "委托手数") + private BigDecimal number; + + @ApiModelProperty(value = "创建时间") + private String createTime; + + @ApiModelProperty(value = "修改时间") + private String updateTime; + + +} \ No newline at end of file diff --git a/src/main/java/com/msdw/tms/entity/CdUserAssetsEntity.java b/src/main/java/com/msdw/tms/entity/CdUserAssetsEntity.java new file mode 100644 index 0000000..c90aa04 --- /dev/null +++ b/src/main/java/com/msdw/tms/entity/CdUserAssetsEntity.java @@ -0,0 +1,50 @@ +package com.msdw.tms.entity; + +import com.baomidou.mybatisplus.annotation.TableName; +import io.swagger.annotations.ApiModel; +import io.swagger.annotations.ApiModelProperty; +import lombok.Data; + +import java.io.Serializable; +import java.math.BigDecimal; + +/** + * @描述:用户银行账户 + * @作者: Rong + * @日期: 2020-10-10 + */ +@Data +@ApiModel(value = "用户银行账户") +@TableName("cd_user_assets") +public class CdUserAssetsEntity implements Serializable { + + private static final long serialVersionUID = 1L; + + private Long id; + + @ApiModelProperty(value = "用户id") + private Long userId; + + @ApiModelProperty(value = "初始资金") + private BigDecimal initialBalance; + + @ApiModelProperty(value = "可用资金") + private BigDecimal balance; + + @ApiModelProperty(value = "创建时间") + private String createTime; + + @ApiModelProperty(value = "修改时间") + private String updateTime; + + + public CdUserAssetsEntity() { + } + + public CdUserAssetsEntity(Long userId, BigDecimal initialBalance, BigDecimal balance, String createTime ) { + this.userId = userId; + this.initialBalance = initialBalance; + this.balance = balance; + this.createTime = createTime; + } +} \ No newline at end of file diff --git a/src/main/java/com/msdw/tms/entity/CdUserOptionAccountEntity.java b/src/main/java/com/msdw/tms/entity/CdUserOptionAccountEntity.java new file mode 100644 index 0000000..d1d31b5 --- /dev/null +++ b/src/main/java/com/msdw/tms/entity/CdUserOptionAccountEntity.java @@ -0,0 +1,56 @@ +package com.msdw.tms.entity; + +import com.baomidou.mybatisplus.annotation.TableName; +import io.swagger.annotations.ApiModel; +import io.swagger.annotations.ApiModelProperty; +import lombok.Data; + +import java.io.Serializable; +import java.math.BigDecimal; + +/** + * @描述:期货期权账户 + * @作者: Rong + * @日期: 2020-10-10 + */ +@Data +@ApiModel(value = "期货期权账户") +@TableName("cd_user_option_account") +public class CdUserOptionAccountEntity implements Serializable { + + private static final long serialVersionUID = 1L; + + private Long id; + + @ApiModelProperty(value = "用户id") + private Long userId; + + @ApiModelProperty(value = "可用资金") + private BigDecimal balance; + + @ApiModelProperty(value = "冻结资金") + private BigDecimal forzenBalance; + + @ApiModelProperty(value = "占用保证金") + private BigDecimal depositBalance; + + @ApiModelProperty(value = "创建时间") + private String createTime; + + @ApiModelProperty(value = "修改时间") + private String updateTime; + + @ApiModelProperty(value = "总资产") + private transient BigDecimal totalAssets; + + public CdUserOptionAccountEntity() { + } + + public CdUserOptionAccountEntity(Long userId, BigDecimal balance, BigDecimal forzenBalance, BigDecimal depositBalance, String createTime) { + this.userId = userId; + this.balance = balance; + this.forzenBalance = forzenBalance; + this.depositBalance = depositBalance; + this.createTime = createTime; + } +} \ No newline at end of file diff --git a/src/main/java/com/msdw/tms/entity/QhscGangjiaosuoEntity.java b/src/main/java/com/msdw/tms/entity/QhscGangjiaosuoEntity.java new file mode 100644 index 0000000..d6f9f80 --- /dev/null +++ b/src/main/java/com/msdw/tms/entity/QhscGangjiaosuoEntity.java @@ -0,0 +1,79 @@ +package com.msdw.tms.entity; + +import com.baomidou.mybatisplus.annotation.TableName; +import io.swagger.annotations.ApiModel; +import io.swagger.annotations.ApiModelProperty; +import lombok.Data; + +import javax.validation.constraints.NotNull; +import java.io.Serializable; +import java.math.BigDecimal; + +/** + * @描述: + * @作者: Rong + * @日期: 2020-10-10 + */ +@Data +@ApiModel(value = "") +@TableName("qhsc_gangjiaosuo") +public class QhscGangjiaosuoEntity implements Serializable { + + private static final long serialVersionUID = 1L; + + private Integer id; + + @ApiModelProperty(value = "代码") + @NotNull + private String eName; + + @ApiModelProperty(value = "名称") + private String name; + + @ApiModelProperty(value = "最新价") + private BigDecimal lastPrice; + + @ApiModelProperty(value = "涨跌幅") + private String u; + + @ApiModelProperty(value = "涨跌额") + private BigDecimal udPrice; + + @ApiModelProperty(value = "买入价") + private BigDecimal buyPrice; + + @ApiModelProperty(value = "卖出价") + private BigDecimal cellPrice; + + @ApiModelProperty(value = "买量") + private Integer buy; + + @ApiModelProperty(value = "卖量") + private Integer cell; + + @ApiModelProperty(value = "总量") + private BigDecimal suoyou; + + @ApiModelProperty(value = "现量") + private BigDecimal nowHava; + + @ApiModelProperty(value = "持仓量") + private String hava; + + @ApiModelProperty(value = "日增") + private Double yFinish; + + @ApiModelProperty(value = "昨结") + private BigDecimal dayUp; + + @ApiModelProperty(value = "日期") + private String date; + + + /*非数据库字段*/ + @ApiModelProperty(value = "币种") + private transient String currency; + + + +} \ No newline at end of file diff --git a/src/main/java/com/msdw/tms/entity/WhscRenminbipinzhongEntity.java b/src/main/java/com/msdw/tms/entity/WhscRenminbipinzhongEntity.java new file mode 100644 index 0000000..0ff36f3 --- /dev/null +++ b/src/main/java/com/msdw/tms/entity/WhscRenminbipinzhongEntity.java @@ -0,0 +1,190 @@ +package com.msdw.tms.entity; + +import cn.afterturn.easypoi.excel.annotation.Excel; +import cn.afterturn.easypoi.excel.annotation.ExcelTarget; +import com.baomidou.mybatisplus.annotation.TableField; +import com.baomidou.mybatisplus.annotation.TableId; +import com.baomidou.mybatisplus.annotation.TableName; +import io.swagger.annotations.ApiModel; +import io.swagger.annotations.ApiModelProperty; + +import java.io.Serializable; + +/** + * @描述:外汇市场人民币品种 + * @作者: Rong + * @日期: 2020-09-28 + */ + +//@EqualsAndHashCode(callSuper = true) +@ExcelTarget("whsc_renminbipinzhong") +@TableName("whsc_renminbipinzhong") +@ApiModel(value = "外汇市场人民币品种") + +public class WhscRenminbipinzhongEntity implements Serializable { + + private static final long serialVersionUID = 1L; + + + @TableId("id") + @Excel(name = "编号", orderNum = "1", mergeVertical = true, isImportField = "id", width = 15) + private Integer id; + + + @TableField("e_name") + @Excel(name = "代码", orderNum = "2", mergeVertical = true, isImportField = "eName", width = 15) + @ApiModelProperty(value = "代码") + private String eName; + + @TableField("name") + @Excel(name = "名称", orderNum = "3", mergeVertical = true, isImportField = "name", width = 30) + @ApiModelProperty(value = "名称") + private String name; + + @TableField("last_price") + @Excel(name = "最新价", orderNum = "4", mergeVertical = true, isImportField = "lastPrice", width = 15) + @ApiModelProperty(value = "最新价") + private Double lastPrice; + + + @TableField("ud_price") + @Excel(name = "涨跌额", orderNum = "5", mergeVertical = true, isImportField = "udPrice", width = 15) + @ApiModelProperty(value = "涨跌额") + private Double udPrice; + + + @TableField("u") + @Excel(name = "涨跌幅", orderNum = "6", mergeVertical = true, isImportField = "u", width = 15) + @ApiModelProperty(value = "涨跌幅") + private String u; + + + @TableField("t_open") + @Excel(name = "今开", orderNum = "15", mergeVertical = true, isImportField = "tOpen", width = 15) + @ApiModelProperty(value = "今开") + private Double tOpen; + + + @TableField("high") + @Excel(name = "最高", orderNum = "8", mergeVertical = true, isImportField = "high", width = 15) + @ApiModelProperty(value = "最高") + private Double high; + + + @TableField("low") + @Excel(name = "最低", orderNum = "9", mergeVertical = true, isImportField = "low", width = 15) + @ApiModelProperty(value = "最低") + private Double low; + + @TableField("y_finish") + @Excel(name = "昨结", orderNum = "10", mergeVertical = true, isImportField = "yFinish", width = 15) + @ApiModelProperty(value = "昨结") + private Double yFinish; + + + @TableField("date") + @Excel(name = "时间", orderNum = "11", mergeVertical = true, isImportField = "date", width = 25) + @ApiModelProperty(value = "时间") + private String date; + + + @ApiModelProperty(value = "汇率类型") + private transient String typeName; + + + public Integer getId() { + return id; + } + + public void setId(Integer id) { + this.id = id; + } + + public String geteName() { + return eName; + } + + public void seteName(String eName) { + this.eName = eName; + } + + public String getName() { + return name; + } + + public void setName(String name) { + this.name = name; + } + + public Double getLastPrice() { + return lastPrice; + } + + public void setLastPrice(Double lastPrice) { + this.lastPrice = lastPrice; + } + + public Double getUdPrice() { + return udPrice; + } + + public void setUdPrice(Double udPrice) { + this.udPrice = udPrice; + } + + public String getU() { + return u; + } + + public void setU(String u) { + this.u = u; + } + + public Double gettOpen() { + return tOpen; + } + + public void settOpen(Double tOpen) { + this.tOpen = tOpen; + } + + public Double getHigh() { + return high; + } + + public void setHigh(Double high) { + this.high = high; + } + + public Double getLow() { + return low; + } + + public void setLow(Double low) { + this.low = low; + } + + public Double getyFinish() { + return yFinish; + } + + public void setyFinish(Double yFinish) { + this.yFinish = yFinish; + } + + public String getDate() { + return date; + } + + public void setDate(String date) { + this.date = date; + } + + public String getTypeName() { + return typeName; + } + + public void setTypeName(String typeName) { + this.typeName = typeName; + } +} \ No newline at end of file diff --git a/src/main/java/com/msdw/tms/entity/request/ProjectRecordImportRequest.java b/src/main/java/com/msdw/tms/entity/request/ProjectRecordImportRequest.java new file mode 100644 index 0000000..b250786 --- /dev/null +++ b/src/main/java/com/msdw/tms/entity/request/ProjectRecordImportRequest.java @@ -0,0 +1,41 @@ +package com.msdw.tms.entity.request; + +import com.msdw.tms.common.utils.poi.ExcelAttribute; +import lombok.Data; + +@Data +public class ProjectRecordImportRequest { + + /** + * 实验项目名称 + */ + @ExcelAttribute(sort = 0) + private String projectName; + /** + * 状态 + */ + @ExcelAttribute(sort = 1) + private String userRecordstate; + + private Integer recordstate; + /** + * 得分 + */ + @ExcelAttribute(sort = 2) + private Integer score; + /** + * 耗时 + */ + @ExcelAttribute(sort = 3) + private Integer timeSum; + /** + * 起始时间 + */ + @ExcelAttribute(sort = 4) + private String startTime; + /** + * 结束时间 + */ + @ExcelAttribute(sort = 5) + private String endTime; +} diff --git a/src/main/java/com/msdw/tms/entity/request/QuestionsAddRequest.java b/src/main/java/com/msdw/tms/entity/request/QuestionsAddRequest.java new file mode 100644 index 0000000..5da4a57 --- /dev/null +++ b/src/main/java/com/msdw/tms/entity/request/QuestionsAddRequest.java @@ -0,0 +1,67 @@ +package com.msdw.tms.entity.request; + +import io.swagger.annotations.ApiModel; +import io.swagger.annotations.ApiModelProperty; +import lombok.Data; + +import javax.validation.constraints.NotNull; + +/** + * 试题的基本信息表 + * + * @author gongsj + */ +@Data +@ApiModel(value = "QuestionsAddRequest", description = "添加试题请求体对象") +public class QuestionsAddRequest { + /** + * 题型:1、单选题,2、多选题,3、判断题 + */ + @ApiModelProperty(value = "题型:1、单选题,2、多选题,3、判断题", name = "questionType", example = "1", required = true) + private Integer questionType; + /** + * 题干信息 + */ + @ApiModelProperty(value = "题干信息", name = "questionStem", example = "世界上最大的哺乳动物是什么?", required = true) + private String questionStem; + /** + * A选项内容 + */ + @ApiModelProperty(value = "A选项内容", name = "optionA", example = "鲸鱼") + private String optionA; + /** + * B选项内容 + */ + @ApiModelProperty(value = "B选项内容", name = "optionB", example = "鲨鱼") + private String optionB; + /** + * C选项内容 + */ + @ApiModelProperty(value = "C选项内容", name = "optionC", example = "河马") + private String optionC; + /** + * D选项内容 + */ + @ApiModelProperty(value = "D选项内容", name = "optionD", example = "豹子") + private String optionD; + /** + * E选项内容 + */ + @ApiModelProperty(value = "E选项内容", name = "optionE", example = "大象") + private String optionE; + /** + * F选项内容 + */ + @ApiModelProperty(value = "F选项内容", name = "optionF", example = "老虎") + private String optionF; + /** + * 正确答案 + */ + @ApiModelProperty(value = "正确答案", name = "answer", example = "A", required = true) + private String answer; + /** + * 答案解析 + */ + @ApiModelProperty(value = "答案解析", name = "answerAnalysis", example = "鲸鱼是最大的哺乳动物") + private String answerAnalysis; +} diff --git a/src/main/java/com/msdw/tms/entity/request/QuestionsImportRequest.java b/src/main/java/com/msdw/tms/entity/request/QuestionsImportRequest.java new file mode 100644 index 0000000..d9435ff --- /dev/null +++ b/src/main/java/com/msdw/tms/entity/request/QuestionsImportRequest.java @@ -0,0 +1,81 @@ +package com.msdw.tms.entity.request; + +import com.msdw.tms.common.utils.poi.ExcelAttribute; +import lombok.Data; +import lombok.ToString; + +/** + * 试题的基本信息表 + * + * @author gongsj + */ +@Data +@ToString +public class QuestionsImportRequest { + /** + * 第几行 + */ + private Integer index; + + /** + * 题干,问题描述 + */ + @ExcelAttribute(sort = 0) + private String questionStem; + /** + * 题型 + */ + @ExcelAttribute(sort = 1) + private String questionTypeName; + /** + * 选项A + */ + @ExcelAttribute(sort = 2) + private String optionA; + /** + * 选项B + */ + @ExcelAttribute(sort = 3) + private String optionB; + /** + * 选项C + */ + @ExcelAttribute(sort = 4) + private String optionC; + /** + * 选项D + */ + @ExcelAttribute(sort = 5) + private String optionD; + /** + * 选项E + */ + @ExcelAttribute(sort = 6) + private String optionE; + /** + * 选项F + */ + @ExcelAttribute(sort = 7) + private String optionF; + /** + * 正确答案 + */ + @ExcelAttribute(sort = 8) + private String answer; + /** + * 答案解析 + */ + @ExcelAttribute(sort = 9) + private String answerAnalysis; + + public String toStringForCompare() { + return questionStem + + questionTypeName + + optionA + + optionB + + optionC + + optionD + + optionE + + optionF; + } +} diff --git a/src/main/java/com/msdw/tms/entity/request/QuestionsQueryRequest.java b/src/main/java/com/msdw/tms/entity/request/QuestionsQueryRequest.java new file mode 100644 index 0000000..0e96b33 --- /dev/null +++ b/src/main/java/com/msdw/tms/entity/request/QuestionsQueryRequest.java @@ -0,0 +1,39 @@ +package com.msdw.tms.entity.request; + +import io.swagger.annotations.ApiModel; +import io.swagger.annotations.ApiModelProperty; +import lombok.Data; + +/** + * 试题的基本信息表 + * + * @author gongsj + */ +@Data +@ApiModel(value = "QuestionsQueryRequest", description = "条件查询请求对象") +public class QuestionsQueryRequest { + + /** + * 题干,问题描述 + */ + @ApiModelProperty(value = "题干,问题描述", name = "questionStem", example = "世界上最大的哺乳动物是什么?") + private String questionStem; + + /** + * 题型 + */ + @ApiModelProperty(value = "题型:1、单选题,2、多选题,3、判断题", name = "questionType", example = "1") + private Integer questionType; + // /** + // * 参考答案 + // */ + // private String answer; + // /** + // * 答案解析 + // */ + // private String answerAnalysis; + // /** + // * 创建时,修改时间即为创建时间,修改时间用于前端显示和排序 + // */ + // private Date modifyTime; +} diff --git a/src/main/java/com/msdw/tms/entity/request/QuestionsUpdateRequest.java b/src/main/java/com/msdw/tms/entity/request/QuestionsUpdateRequest.java new file mode 100644 index 0000000..f44f6fa --- /dev/null +++ b/src/main/java/com/msdw/tms/entity/request/QuestionsUpdateRequest.java @@ -0,0 +1,70 @@ +package com.msdw.tms.entity.request; + +import io.swagger.annotations.ApiModel; +import io.swagger.annotations.ApiModelProperty; +import lombok.Data; + +/** + * 试题的基本信息表 + * + * @author gongsj + */ +@Data +@ApiModel(value = "QuestionsUpdateRequest", description = "修改试题请求体对象") +public class QuestionsUpdateRequest { + /** + * 主键 + */ + @ApiModelProperty(value = "主键", name = "id", example = "1", required = true) + private Integer id; + /** + * 题型:1、单选题,2、多选题,3、判断题 + */ + @ApiModelProperty(value = "题型:1、单选题,2、多选题,3、判断题", name = "questionType", example = "1", required = true) + private Integer questionType; + /** + * 题干信息 + */ + @ApiModelProperty(value = "题干信息", name = "questionStem", example = "世界上最大的哺乳动物是什么?", required = true) + private String questionStem; + /** + * A选项内容 + */ + @ApiModelProperty(value = "A选项内容", name = "optionA", example = "鲸鱼") + private String optionA; + /** + * B选项内容 + */ + @ApiModelProperty(value = "B选项内容", name = "optionB", example = "鲨鱼") + private String optionB; + /** + * C选项内容 + */ + @ApiModelProperty(value = "C选项内容", name = "optionC", example = "河马") + private String optionC; + /** + * D选项内容 + */ + @ApiModelProperty(value = "D选项内容", name = "optionD", example = "豹子") + private String optionD; + /** + * E选项内容 + */ + @ApiModelProperty(value = "E选项内容", name = "optionE", example = "大象") + private String optionE; + /** + * F选项内容 + */ + @ApiModelProperty(value = "F选项内容", name = "optionF", example = "老虎") + private String optionF; + /** + * 正确答案 + */ + @ApiModelProperty(value = "正确答案", name = "answer", example = "A", required = true) + private String answer; + /** + * 答案解析 + */ + @ApiModelProperty(value = "答案解析", name = "answerAnalysis", example = "鲸鱼是最大的哺乳动物") + private String answerAnalysis; +} diff --git a/src/main/java/com/msdw/tms/entity/response/CommonCode.java b/src/main/java/com/msdw/tms/entity/response/CommonCode.java new file mode 100644 index 0000000..b7c7ff9 --- /dev/null +++ b/src/main/java/com/msdw/tms/entity/response/CommonCode.java @@ -0,0 +1,51 @@ +package com.msdw.tms.entity.response; + +import lombok.ToString; + +@ToString +public enum CommonCode implements ResultCode { + + /* SUCCESS(true, 10000, "操作成功!"), + UNAUTHENTICATED(false, 10001, "此操作需要登陆系统!"), + UNAUTHORISE(false, 10002, "权限不足,无权操作!"), + INVALID_PARAM(false, 10003, "非法参数!"), + QUESTION_NUM_INVALID(false, 10004, "测评题目数量设置超出范围!"), + QUESTION_EXISTS(false, 10005, "此题已存在!"), + QUESTIONTYPE_INVALID(false, 10006, "题型错误!"), + EXCEL_INVALID(false, 10007, "excel表内容错误!"), + EVALUATION_TIME_INVALID(false, 10008, "测评时间错误!"), + EXCEL_FILE_INVALID(false, 10009, "上传excel文件错误!"), + REPEAT_INEXCEL(false, 10010, "试题在excel表中重复!"), + EVALUATION_QUESTION_NUM_INVALID(false, 10011, "当前测评题数设置为0,请先设置测评题数!"), + FAIL(false, 11111, "操作失败!"), + SERVER_ERROR(false, 99999, "抱歉,系统繁忙,请稍后重试!"); + //操作是否成功 + boolean success; + //操作代码 + int code; + //提示信息 + String message; + + CommonCode(boolean success, int code, String message) { + this.success = success; + this.code = code; + this.message = message; + } + + @Override + public boolean success() { + return success; + } + + @Override + public int code() { + return code; + } + + @Override + public String message() { + return message; + }*/ + + +} diff --git a/src/main/java/com/msdw/tms/entity/response/Response.java b/src/main/java/com/msdw/tms/entity/response/Response.java new file mode 100644 index 0000000..35b841e --- /dev/null +++ b/src/main/java/com/msdw/tms/entity/response/Response.java @@ -0,0 +1,9 @@ +package com.msdw.tms.entity.response; + +/** + * Created by admin on 2018/3/5. + */ +public interface Response { + boolean SUCCESS = true; + int SUCCESS_CODE = 10000; +} diff --git a/src/main/java/com/msdw/tms/entity/response/ResponseResult.java b/src/main/java/com/msdw/tms/entity/response/ResponseResult.java new file mode 100644 index 0000000..9f6e454 --- /dev/null +++ b/src/main/java/com/msdw/tms/entity/response/ResponseResult.java @@ -0,0 +1,35 @@ +package com.msdw.tms.entity.response; + +import lombok.Data; +import lombok.NoArgsConstructor; +import lombok.ToString; + +@Data +@ToString +@NoArgsConstructor +public class ResponseResult implements Response { + + //操作是否成功 + /*boolean success = SUCCESS; + + //操作代码 + int code = SUCCESS_CODE; + + //提示信息 + String message; + + public ResponseResult(ResultCode resultCode) { + this.success = resultCode.success(); + this.code = resultCode.code(); + this.message = resultCode.message(); + } + + public static ResponseResult SUCCESS() { + return new ResponseResult(CommonCode.SUCCESS); + } + + public static ResponseResult FAIL() { + return new ResponseResult(CommonCode.FAIL); + }*/ + +} diff --git a/src/main/java/com/msdw/tms/entity/response/ResultCode.java b/src/main/java/com/msdw/tms/entity/response/ResultCode.java new file mode 100644 index 0000000..0bce5ff --- /dev/null +++ b/src/main/java/com/msdw/tms/entity/response/ResultCode.java @@ -0,0 +1,21 @@ +package com.msdw.tms.entity.response; + +/** + * Created by mrt on 2018/3/5. + * 10000-- 通用错误代码 + * 22000-- 媒资错误代码 + * 23000-- 用户中心错误代码 + * 24000-- cms错误代码 + * 25000-- 文件系统 + */ +public interface ResultCode { + /* //操作是否成功,true为成功,false操作失败 + boolean success(); + + //操作代码 + int code(); + + //提示信息 + String message();*/ + +} diff --git a/src/main/java/com/msdw/tms/entity/vo/CdCreatePhotoVo.java b/src/main/java/com/msdw/tms/entity/vo/CdCreatePhotoVo.java new file mode 100644 index 0000000..886e8d9 --- /dev/null +++ b/src/main/java/com/msdw/tms/entity/vo/CdCreatePhotoVo.java @@ -0,0 +1,19 @@ +package com.msdw.tms.entity.vo; + +import io.swagger.annotations.ApiModelProperty; +import lombok.Data; + +@Data +public class CdCreatePhotoVo { + + + //生成图片1 + @ApiModelProperty(value = "汇率价格走势图") + private String photo_url1; + //生成图片2 + @ApiModelProperty(value = "汇率损益分布图") + private String photo_url2; + //Var值 + @ApiModelProperty(value = "Var值") + private String var; +} diff --git a/src/main/java/com/msdw/tms/entity/vo/CdExperimentalEntityVo.java b/src/main/java/com/msdw/tms/entity/vo/CdExperimentalEntityVo.java new file mode 100644 index 0000000..e78b3f5 --- /dev/null +++ b/src/main/java/com/msdw/tms/entity/vo/CdExperimentalEntityVo.java @@ -0,0 +1,59 @@ +package com.msdw.tms.entity.vo; + +import cn.afterturn.easypoi.excel.annotation.Excel; +import cn.afterturn.easypoi.excel.annotation.ExcelTarget; +import com.baomidou.mybatisplus.annotation.TableName; +import io.swagger.annotations.ApiModel; +import io.swagger.annotations.ApiModelProperty; +import lombok.Data; + +import java.io.Serializable; + +/** + * @描述:实验数据 + * @作者: Rong + * @日期: 2020-10-20 + */ +@Data +@ApiModel(value = "蒙特卡洛实验数据封装") +@TableName("cd_experimental") +@ExcelTarget("cd_experimental") +public class CdExperimentalEntityVo implements Serializable { + + private static final long serialVersionUID = 1L; + + @Excel(name = "编号", orderNum = "1", mergeVertical = true, isImportField = "id", width = 15) + @ApiModelProperty(value = "主键") + private Integer id; + + @Excel(name = "汇率类型", orderNum = "2", mergeVertical = true, isImportField = "exchangeRate", width = 15) + @ApiModelProperty(value = "汇率类型") + private String exchangeRate; + + @Excel(name = "样本数据", orderNum = "3", mergeVertical = true, isImportField = "sampleData", width = 25) + @ApiModelProperty(value = "样本数据") + private String sampleData; + + @Excel(name = "置信水平", orderNum = "4", mergeVertical = true, isImportField = "confidenceLevel", width = 20) + @ApiModelProperty(value = "置信水平") + private String confidenceLevel; + + @Excel(name = "持有天数", orderNum = "5", mergeVertical = true, isImportField = "validPeriod", width = 30) + @ApiModelProperty(value = "持有天数") + private String validPeriod; + + + @Excel(name = "汇率走势图", orderNum = "6", mergeVertical = true, isImportField = "trendChart", width = 30) + @ApiModelProperty(value = "汇率走势图") + private String trendChart; + + @Excel(name = "汇率损益分布图", orderNum = "7", mergeVertical = true, isImportField = "profitLossDistribution", width = 30) + @ApiModelProperty(value = "汇率损益分布图") + private String profitLossDistribution; + + @Excel(name = "创建时间", orderNum = "8", mergeVertical = true, isImportField = "creatTime", width = 30) + @ApiModelProperty(value = "创建时间") + private String creatTime; + + +} \ No newline at end of file diff --git a/src/main/java/com/msdw/tms/entity/vo/CdFuturesConfigureEntityVo.java b/src/main/java/com/msdw/tms/entity/vo/CdFuturesConfigureEntityVo.java new file mode 100644 index 0000000..03bfa38 --- /dev/null +++ b/src/main/java/com/msdw/tms/entity/vo/CdFuturesConfigureEntityVo.java @@ -0,0 +1,73 @@ +package com.msdw.tms.entity.vo; + +import com.baomidou.mybatisplus.annotation.IdType; +import com.baomidou.mybatisplus.annotation.TableId; +import io.swagger.annotations.ApiModel; +import io.swagger.annotations.ApiModelProperty; +import lombok.Data; + +import java.math.BigDecimal; + +/** + * @描述:外汇期货平仓绩效 + * @作者: Rong + * @日期: 2020-10-12 + */ +@Data +@ApiModel(value = "外汇期货平仓绩效") +public class CdFuturesConfigureEntityVo { + + + //序号 + @TableId(type = IdType.AUTO) + private Integer id; + + //代码 + @ApiModelProperty(value = "代码") + private String eName; + + //合约名称 + @ApiModelProperty(value = "名称") + private String name; + + //头寸部位 + @ApiModelProperty(value = "交易方向(0空头,1多头)") + private String tradingDirection; + + //开仓价格(委托价格) + @ApiModelProperty(value = "开仓价格/委托价格") + private BigDecimal entrustPrice; + + + //平仓价格 + @ApiModelProperty(value = "平仓价格") + private BigDecimal closeRate; + + //资产市值1 + @ApiModelProperty(value = "资产市值1") + private BigDecimal marketValue1; + + //资产市值2 + @ApiModelProperty(value = "资产市值2") + private BigDecimal marketValue2; + + //数量(委托数量) + @ApiModelProperty(value = "数量(委托数量)") + private Integer entrustNumber; + + //盈亏 + @ApiModelProperty(value = "盈亏") + private BigDecimal wh_pl; + + + @ApiModelProperty(value = "开仓时间") + private String createTime; + + @ApiModelProperty(value = "平仓时间") + private String updateTime; + + @ApiModelProperty(value = "最后交易日") + private String tradeTime; + + +} \ No newline at end of file diff --git a/src/main/java/com/msdw/tms/feign/UserEntityFeignService.java b/src/main/java/com/msdw/tms/feign/UserEntityFeignService.java new file mode 100644 index 0000000..663b2c9 --- /dev/null +++ b/src/main/java/com/msdw/tms/feign/UserEntityFeignService.java @@ -0,0 +1,13 @@ +package com.msdw.tms.feign; + +import org.springframework.cloud.openfeign.FeignClient; +import com.msdw.tms.common.utils.R; +import org.springframework.web.bind.annotation.RequestMapping; + +@FeignClient +public interface UserEntityFeignService { + + @RequestMapping("userInfo/queryUserInfo") + public R getUser(); + +} diff --git a/src/main/java/com/msdw/tms/interceptor/AuthorizedAspect.java b/src/main/java/com/msdw/tms/interceptor/AuthorizedAspect.java new file mode 100644 index 0000000..8bd1976 --- /dev/null +++ b/src/main/java/com/msdw/tms/interceptor/AuthorizedAspect.java @@ -0,0 +1,92 @@ +package com.msdw.tms.interceptor; + +/** + * @ProjectName: tms + * @Package: com.msdw.tms.interceptor + * @ClassName: AuthorizedAspect + * @Description: java类作用描述 + * @Author: Maureen.Rong + * @CreateDate: 2020/10/22 10:01 + * @UpdateDate: 2020/10/22 10:01 + * @Version: 1.0 + */ + +import org.apache.commons.lang.StringUtils; +import org.springframework.beans.factory.annotation.Autowired; +import org.springframework.data.redis.core.StringRedisTemplate; +import org.springframework.stereotype.Component; +import org.springframework.web.servlet.HandlerInterceptor; +import org.springframework.web.servlet.ModelAndView; + +import javax.servlet.http.HttpServletRequest; +import javax.servlet.http.HttpServletResponse; + + +@Component +public class AuthorizedAspect implements HandlerInterceptor { + @Autowired + private StringRedisTemplate redisTemplate; + + + @Override + public boolean preHandle(HttpServletRequest request, HttpServletResponse response, Object handler) throws Exception { + //去redis里查询 + String token = request.getHeader("token"); + + String tokenValue = redisTemplate.opsForValue().get("token:" + token); + if (StringUtils.isEmpty(tokenValue)) { + System.err.println("【登录校验】Redis中查不到token"); + return false; + } + return true; + } + + @Override + public void postHandle(HttpServletRequest request, HttpServletResponse response, Object handler, ModelAndView modelAndView) throws Exception { + + } + + @Override + public void afterCompletion(HttpServletRequest request, HttpServletResponse response, Object handler, Exception ex) throws Exception { + + } + + + + /*@Override + public boolean preHandle(HttpServletRequest request, HttpServletResponse response, Object handler) throws Exception { + //去redis里查询 + String tokenValue = redisTemplate.opsForValue().get("token"); + if (StringUtils.isEmpty(tokenValue)) { + log.warn("【登录校验】Redis中查不到token"); + return false; + } + return true; + }*/ + + + //切面拦截器,拦截订单接口请求中是否能查询到token + /* @Pointcut("execution(public * com.msdw.tms.controller.*(..))") //切入点 + public void verify() { + } + + @Before("verify()") //在请求之前 + public R doVerify() { + AuthCustomize authCustomize; + ServletRequestAttributes attributes = (ServletRequestAttributes) RequestContextHolder.getRequestAttributes(); + HttpServletRequest request = attributes.getRequest(); + String token = request.getHeader("token"); + + //去redis里查询 + String tokenValue = redisTemplate.opsForValue().get("token:" + token); + if (StringUtils.isEmpty(tokenValue)) { + log.warn("【登录校验】Redis中查不到token"); + return R.error("Redis中查不到token"); + } + return R.ok(); + }*/ + + + + +} diff --git a/src/main/java/com/msdw/tms/model/req/CdBuyInReq.java b/src/main/java/com/msdw/tms/model/req/CdBuyInReq.java new file mode 100644 index 0000000..2cc2b75 --- /dev/null +++ b/src/main/java/com/msdw/tms/model/req/CdBuyInReq.java @@ -0,0 +1,21 @@ +package com.msdw.tms.model.req; + +import io.swagger.annotations.ApiModel; +import io.swagger.annotations.ApiModelProperty; +import lombok.Data; + +@ApiModel(value = "平仓请求参数") +@Data +public class CdBuyInReq { + /*@ApiImplicitParams({ + @ApiImplicitParam(name = "id", value = "要平仓的序号", required = true, dataType = "string", paramType = "query"), + @ApiImplicitParam(name = "date", value = "行情滚动的日期", required = true, dataType = "string", paramType = "query"), + })*/ + + @ApiModelProperty("要平仓的序号") + private int id; + + @ApiModelProperty(value = "行情滚动的日期") + private String date; + +} diff --git a/src/main/java/com/msdw/tms/model/req/CdExperimentReq.java b/src/main/java/com/msdw/tms/model/req/CdExperimentReq.java new file mode 100644 index 0000000..3971d43 --- /dev/null +++ b/src/main/java/com/msdw/tms/model/req/CdExperimentReq.java @@ -0,0 +1,62 @@ +package com.msdw.tms.model.req; + +import io.swagger.annotations.ApiModel; +import io.swagger.annotations.ApiModelProperty; +import lombok.Data; + +/** + * @ProjectName: tms + * @Package: com.msdw.tms.model.req + * @ClassName: CdExperimentReq + * @Description: 实验保存 + * @Author: Maureen.Rong + * @CreateDate: 2020/10/23 15:41 + * @UpdateDate: 2020/10/23 15:41 + * @Version: 1.0 + */ +@Data +@ApiModel(value = "实验保存") +public class CdExperimentReq { + /* + @ApiImplicitParams({ + @ApiImplicitParam(name = "name", value = "步骤二选择的币种", required = true, dataType = "String", paramType = "query"), + @ApiImplicitParam(name = "sampleData", value = "样本数据", required = true, dataType = "String", paramType = "query"), + @ApiImplicitParam(name = "confidenceLevel", value = "置信水平", required = true, dataType = "String", paramType = "query"), + @ApiImplicitParam(name = "validPeriod", value = "持有天数", required = false, dataType = "String", paramType = "query"), + @ApiImplicitParam(name = "varCode", value = "Var值", required = false, dataType = "String", paramType = "query"), + @ApiImplicitParam(name = "trendChart", value = "汇率价格走势图", required = false, dataType = "String", paramType = "query"), + @ApiImplicitParam(name = "profitLossDistribution", value = "汇率损益分布图", required = false, dataType = "String", paramType = "query"), + @ApiImplicitParam(name = "experimentsNumber", value = "实验次数", required = true, dataType = "String", paramType = "query"), + @ApiImplicitParam(name = "type", value = "实验类型(0正态Var,1历史模拟,2蒙特卡洛)", required = true, dataType = "String", paramType = "query") + }) + */ + + @ApiModelProperty(value = "步骤二选择的币种") + private String name; + + @ApiModelProperty(value = "样本数据") + private String sampleData; + + @ApiModelProperty(value = "置信水平") + private String confidenceLevel; + + @ApiModelProperty(value = "持有天数") + private String validPeriod; + + @ApiModelProperty(value = "Var值") + private String varCode; + + @ApiModelProperty(value = "汇率价格走势图") + private String trendChart; + + @ApiModelProperty(value = "汇率损益分布图") + private String profitLossDistribution; + + @ApiModelProperty(value = "实验类型(0正态Var,1历史模拟,2蒙特卡洛)") + private String type; + + @ApiModelProperty(value = "实验次数") + private String experimentsNumber; + + +} diff --git a/src/main/java/com/msdw/tms/model/req/CdExportReq.java b/src/main/java/com/msdw/tms/model/req/CdExportReq.java new file mode 100644 index 0000000..ab77e57 --- /dev/null +++ b/src/main/java/com/msdw/tms/model/req/CdExportReq.java @@ -0,0 +1,31 @@ +package com.msdw.tms.model.req; + +import io.swagger.annotations.ApiModel; +import io.swagger.annotations.ApiModelProperty; +import lombok.Data; + +/** + * @ProjectName: tms + * @Package: com.msdw.tms.mode.req + * @ClassName: ExportReq + * @Description: 导出 + * @Author: Maureen.Rong + * @CreateDate: 2020/10/23 13:47 + * @UpdateDate: 2020/10/23 13:47 + * @Version: 1.0 + */ +@Data +@ApiModel("汇率中间价/根据时间、币种条件查询后导出报表") +public class CdExportReq { + /** + * @ApiParam(value = "要筛选的币种") @RequestParam(value = "name", required = true) String name, + * @ApiParam(value = "要筛选的开始时间") @RequestParam(value = "startTime", required = true) String startTime, + * @ApiParam(value = "要筛选的结束时间") @RequestParam(value = "endTime", required = true) String endTime + */ + @ApiModelProperty(value = "要筛选的币种") + public String name; + @ApiModelProperty(value = "要筛选的开始时间") + public String startTime; + @ApiModelProperty(value = "要筛选的结束时间") + public String endTime; +} diff --git a/src/main/java/com/msdw/tms/model/req/CdGetAccountInfoReq.java b/src/main/java/com/msdw/tms/model/req/CdGetAccountInfoReq.java new file mode 100644 index 0000000..7b27a8d --- /dev/null +++ b/src/main/java/com/msdw/tms/model/req/CdGetAccountInfoReq.java @@ -0,0 +1,40 @@ +package com.msdw.tms.model.req; + +import io.swagger.annotations.ApiModel; +import io.swagger.annotations.ApiModelProperty; +import lombok.Data; + +import javax.validation.constraints.NotBlank; +import javax.validation.constraints.NotNull; +import java.math.BigDecimal; + +/** + * @ProjectName: tms + * @Package: com.msdw.tms.model.req + * @ClassName: CdGetAccountInfoReq + * @Description: 期权账户请求参数 + * @Author: Maureen.Rong + * @CreateDate: 2020/10/29 11:06 + * @UpdateDate: 2020/10/29 11:06 + * @Version: 1.0 + */ +@Data +@ApiModel("期权账户请求参数") +public class CdGetAccountInfoReq { + + @ApiModelProperty(value = "委托价格") + @NotNull(message = "委托价格不能为空") + private BigDecimal entrustPrice; + + @ApiModelProperty(value = "委托数量") + @NotNull(message = "委托数量不能为空") + private Integer entrustNumber; + + @ApiModelProperty(value = "交易方向(0空头,1多头)") + @NotBlank(message = "交易方向不能为空") + private Integer tradingDirection; + + @ApiModelProperty(value = "合约id") + @NotBlank(message = "合约id为空") + private Integer id; +} diff --git a/src/main/java/com/msdw/tms/model/req/CdGetCapitalReq.java b/src/main/java/com/msdw/tms/model/req/CdGetCapitalReq.java new file mode 100644 index 0000000..db7bbfe --- /dev/null +++ b/src/main/java/com/msdw/tms/model/req/CdGetCapitalReq.java @@ -0,0 +1,11 @@ +package com.msdw.tms.model.req; + +import io.swagger.annotations.ApiModelProperty; +import lombok.Data; + +@Data +public class CdGetCapitalReq { + + @ApiModelProperty(value = "账户类型(1.银行账户 2.期货账户)") + private Integer transferOut; +} diff --git a/src/main/java/com/msdw/tms/model/req/CdGetWeekAndMonthInfoReq.java b/src/main/java/com/msdw/tms/model/req/CdGetWeekAndMonthInfoReq.java new file mode 100644 index 0000000..581f80c --- /dev/null +++ b/src/main/java/com/msdw/tms/model/req/CdGetWeekAndMonthInfoReq.java @@ -0,0 +1,23 @@ +package com.msdw.tms.model.req; + +import io.swagger.annotations.ApiModelProperty; +import lombok.Data; + +/** + * @ProjectName: tms + * @Package: com.msdw.tms.model.req + * @ClassName: CdGetWeekAndMonthInfoReq + * @Description: java类作用描述 + * @Author: Maureen.Rong + * @CreateDate: 2020/11/16 14:34 + * @UpdateDate: 2020/11/16 14:34 + * @Version: 1.0 + */ +@Data +public class CdGetWeekAndMonthInfoReq { + @ApiModelProperty("选择的id") + private int id; + + @ApiModelProperty(value = "选择的时间日期") + private String date; +} diff --git a/src/main/java/com/msdw/tms/model/req/CdOpenPositionReq.java b/src/main/java/com/msdw/tms/model/req/CdOpenPositionReq.java new file mode 100644 index 0000000..c66a14a --- /dev/null +++ b/src/main/java/com/msdw/tms/model/req/CdOpenPositionReq.java @@ -0,0 +1,41 @@ +package com.msdw.tms.model.req; + +import io.swagger.annotations.ApiModel; +import io.swagger.annotations.ApiModelProperty; +import lombok.Data; + +import javax.validation.constraints.NotBlank; +import javax.validation.constraints.NotNull; +import java.math.BigDecimal; + +@Data +@ApiModel("开仓请求参数") +public class CdOpenPositionReq { + private static final long serialVersionUID = 1L; + + + @ApiModelProperty(value = "合约表主键") + @NotNull(message = "合约表主键不能为空") + private Integer pid; + + @ApiModelProperty(value = "交易方向(0空头,1多头)") + @NotBlank(message = "交易方向不能为空") + private Integer tradingDirection; + + @ApiModelProperty(value = "最新价格") + @NotBlank(message = "最新价格不能为空") + private BigDecimal newestPrice; + + @ApiModelProperty(value = "委托价格") + @NotNull(message = "委托价格不能为空") + private BigDecimal entrustPrice; + + @ApiModelProperty(value = "委托数量") + @NotNull(message = "委托数量不能为空") + private Integer entrustNumber; + + @ApiModelProperty(value = "所需资金") + private BigDecimal fundingNeeded; + + +} diff --git a/src/main/java/com/msdw/tms/model/req/CdPageConditionReq.java b/src/main/java/com/msdw/tms/model/req/CdPageConditionReq.java new file mode 100644 index 0000000..83683cd --- /dev/null +++ b/src/main/java/com/msdw/tms/model/req/CdPageConditionReq.java @@ -0,0 +1,38 @@ +package com.msdw.tms.model.req; + +import io.swagger.annotations.ApiModelProperty; +import lombok.Data; + +/** + * @ProjectName: tms + * @Package: com.msdw.tms.mode.req + * @ClassName: pageConditionReq + * @Description: java类作用描述 + * @Author: Maureen.Rong + * @CreateDate: 2020/10/23 13:50 + * @UpdateDate: 2020/10/23 13:50 + * @Version: 1.0 + */ +@Data +public class CdPageConditionReq { + /** + * @ApiImplicitParams({ + * @ApiImplicitParam(name = "pageNum", value = "pageIndex:当前页数"), + * @ApiImplicitParam(name = "pageSize", value = "pageSize:当前页需要显示的数量"), + * @ApiImplicitParam(name = "name", value = "要筛选的币种"), + * @ApiImplicitParam(name = "date", value = "要筛选的时间") + * }) + */ + + @ApiModelProperty(value = "当前页数") + public Integer pageNum; + + @ApiModelProperty(value = "当前页需要显示的数量") + public Integer pageSize; + + @ApiModelProperty(value = "要筛选的币种") + public String name; + + @ApiModelProperty(value = "要筛选的结束时间") + public String date; +} diff --git a/src/main/java/com/msdw/tms/model/req/CdSaveCacheReq.java b/src/main/java/com/msdw/tms/model/req/CdSaveCacheReq.java new file mode 100644 index 0000000..d21da8a --- /dev/null +++ b/src/main/java/com/msdw/tms/model/req/CdSaveCacheReq.java @@ -0,0 +1,25 @@ +package com.msdw.tms.model.req; + +import com.alibaba.fastjson.JSONObject; +import io.swagger.annotations.ApiModelProperty; +import lombok.Data; + +/** + * @ProjectName: tms + * @Package: com.msdw.tms.model.req + * @ClassName: SaveCacheRwq + * @Description: 缓存步骤请求参数 + * @Author: Maureen.Rong + * @CreateDate: 2020/10/23 15:24 + * @UpdateDate: 2020/10/23 15:24 + * @Version: 1.0 + */ +@Data +public class CdSaveCacheReq { + + @ApiModelProperty(value = "当前步骤数(传数字)") + private Integer stepNumber; + + @ApiModelProperty(value = "json字符串") + private JSONObject json; +} diff --git a/src/main/java/com/msdw/tms/model/req/CdSimulationReq.java b/src/main/java/com/msdw/tms/model/req/CdSimulationReq.java new file mode 100644 index 0000000..30989f2 --- /dev/null +++ b/src/main/java/com/msdw/tms/model/req/CdSimulationReq.java @@ -0,0 +1,35 @@ +package com.msdw.tms.model.req; + +import io.swagger.annotations.ApiModelProperty; +import lombok.Data; + +/** + * @ProjectName: tms + * @Package: com.msdw.tms.mode.req + * @ClassName: SimulationReq + * @Description: 根据选择的模拟法传值获取相应数据 + * @Author: Maureen.Rong + * @CreateDate: 2020/10/23 13:29 + * @UpdateDate: 2020/10/23 13:29 + * @Version: 1.0 + */ +@Data +public class CdSimulationReq { + + @ApiModelProperty(value = "类型(0.正态VaR 1.历史模拟法 2.蒙特卡洛模拟法) 传数字") + private Integer type; + @ApiModelProperty(value = "要筛选的币种") + private String name; + @ApiModelProperty(value = "样本区间开始时间") + private String startTime; + @ApiModelProperty(value = "样本区间结束时间:由第二步骤中选择的日期") + private String endTime; + @ApiModelProperty(value = "置信水平") + private String confidenceLevel; + @ApiModelProperty(value = "持有效") + private String validity; + @ApiModelProperty(value = "实验次数") + private String experimentsNumber; + + +} diff --git a/src/main/java/com/msdw/tms/model/req/CdTransferRecordsReq.java b/src/main/java/com/msdw/tms/model/req/CdTransferRecordsReq.java new file mode 100644 index 0000000..2908091 --- /dev/null +++ b/src/main/java/com/msdw/tms/model/req/CdTransferRecordsReq.java @@ -0,0 +1,39 @@ +package com.msdw.tms.model.req; + +import io.swagger.annotations.ApiModel; +import io.swagger.annotations.ApiModelProperty; +import lombok.Data; + +/** + * @ProjectName: tms + * @Package: com.msdw.tms.model.req + * @ClassName: CdTransferRecordsReq + * @Description: 转账记录请求参数 + * @Author: Maureen.Rong + * @CreateDate: 2020/10/23 16:30 + * @UpdateDate: 2020/10/23 16:30 + * @Version: 1.0 + */ +@Data +@ApiModel(value = "转账记录", description = "查询对象封装") +public class CdTransferRecordsReq { + /** + * @ApiImplicitParams({ + * @ApiImplicitParam(name = "pageNum", value = "pageIndex:当前页数", required = true, dataType = "String", paramType = "query"), + * @ApiImplicitParam(name = "pageSize", value = "pageSize:当前页需要显示的数量", required = true, dataType = "String", paramType = "query"), + * @ApiImplicitParam(name = "startTime", value = "开始时间", required = false, dataType = "String", paramType = "query"), + * @ApiImplicitParam(name = "endTime", value = "结束时间", required = false, dataType = "String", paramType = "query") + * }) + */ + + @ApiModelProperty(value = "开始时间") + private String startTime; + @ApiModelProperty(value = "结束时间") + private String endTime; + @ApiModelProperty(value = "当前页数") + private Integer pageNum; + @ApiModelProperty(value = "当前页需要显示的数量") + private Integer pageSize; + + +} diff --git a/src/main/java/com/msdw/tms/model/req/CdTransferReq.java b/src/main/java/com/msdw/tms/model/req/CdTransferReq.java new file mode 100644 index 0000000..04a1b7e --- /dev/null +++ b/src/main/java/com/msdw/tms/model/req/CdTransferReq.java @@ -0,0 +1,22 @@ +package com.msdw.tms.model.req; + +import io.swagger.annotations.ApiModelProperty; +import lombok.Data; + +import java.math.BigDecimal; + +@Data +public class CdTransferReq { + /** + * @ApiImplicitParams({ + * @ApiImplicitParam(name = "transferOut", value = "要转出的账户(1.银行账户 2.期货账户)", required = true, dataType = "string", paramType = "query"), + * @ApiImplicitParam(name = "amountMoney", value = "转账金额", required = true, dataType = "string", paramType = "query"), + * }) + */ + + @ApiModelProperty("要转出的账户(1.银行账户 2.期货账户)") + private Integer transferOut; + + @ApiModelProperty("转账金额") + private BigDecimal amountMoney; +} diff --git a/src/main/java/com/msdw/tms/model/req/CdTransferWarehouseReq.java b/src/main/java/com/msdw/tms/model/req/CdTransferWarehouseReq.java new file mode 100644 index 0000000..33b9855 --- /dev/null +++ b/src/main/java/com/msdw/tms/model/req/CdTransferWarehouseReq.java @@ -0,0 +1,37 @@ +package com.msdw.tms.model.req; + +import io.swagger.annotations.ApiModel; +import io.swagger.annotations.ApiModelProperty; +import lombok.Data; + +import javax.validation.constraints.NotNull; +import java.math.BigDecimal; + +@Data +@ApiModel("调仓请求参数") +public class CdTransferWarehouseReq { + + @ApiModelProperty(value = "主键", required = false) + private Integer id; + + /* @ApiModelProperty(value = "交易方向(0空头,1多头)") + @NotBlank(message = "交易方向不能为空") + private Integer tradingDirection;*/ + + @ApiModelProperty(value = "买卖方向:0.开仓 1.平仓") + private Integer status; + + @ApiModelProperty(value = "委托价格") + @NotNull(message = "委托价格不能为空") + private BigDecimal entrustPrice; + + @ApiModelProperty(value = "委托手数") + @NotNull(message = "委托数量不能为空") + private Integer entrustNumber; + + @ApiModelProperty(value = "可交易数量") + @NotNull(message = "可交易数量不能为空") + private BigDecimal tradableNumber; + + +} diff --git a/src/main/java/com/msdw/tms/model/req/QhscGangjiaosuoReq.java b/src/main/java/com/msdw/tms/model/req/QhscGangjiaosuoReq.java new file mode 100644 index 0000000..ecb274c --- /dev/null +++ b/src/main/java/com/msdw/tms/model/req/QhscGangjiaosuoReq.java @@ -0,0 +1,38 @@ +package com.msdw.tms.model.req; + +import io.swagger.annotations.ApiModelProperty; +import lombok.Data; + +import javax.validation.constraints.NotEmpty; + +@Data +public class QhscGangjiaosuoReq { + + //String name, String date, Integer pageNum, Integer pageSize + + /** + * @ApiImplicitParams({ + * @ApiImplicitParam(name = "pageNum", value = "pageIndex:当前页数", required = true, dataType = "String", paramType = "query"), + * @ApiImplicitParam(name = "pageSize", value = "pageSize:当前页需要显示的数量", required = true, dataType = "String", paramType = "query"), + * @ApiImplicitParam(name = "name", value = "要筛选的币种", required = false, dataType = "String", paramType = "query"), + * @ApiImplicitParam(name = "date", value = "日期(步骤二选中的时间)", required = false, dataType = "String", paramType = "query") + * }) + */ + + @ApiModelProperty(value = "要筛选的币种") + private String name; + + @ApiModelProperty(value = "步骤二选中的时间") + @NotEmpty(message = "时间不能为空") + private String date; + + @ApiModelProperty(value = "当前页数") + @NotEmpty(message = "当前页数不能为空") + private Integer pageNum; + + @ApiModelProperty(value = "当前页需要显示的数量") + @NotEmpty(message = "当前页需要显示的数量不能为空") + private Integer pageSize; + + +} diff --git a/src/main/java/com/msdw/tms/model/req/Testreq.java b/src/main/java/com/msdw/tms/model/req/Testreq.java new file mode 100644 index 0000000..2905c16 --- /dev/null +++ b/src/main/java/com/msdw/tms/model/req/Testreq.java @@ -0,0 +1,14 @@ +package com.msdw.tms.model.req; + +/** + * @ProjectName: tms + * @Package: com.msdw.tms.mode.req + * @ClassName: Testreq + * @Description: java类作用描述 + * @Author: Maureen.Rong + * @CreateDate: 2020/10/23 10:56 + * @UpdateDate: 2020/10/23 10:56 + * @Version: 1.0 + */ +public class Testreq { +} diff --git a/src/main/java/com/msdw/tms/model/resp/CdAccountInfoResp.java b/src/main/java/com/msdw/tms/model/resp/CdAccountInfoResp.java new file mode 100644 index 0000000..4e14ecc --- /dev/null +++ b/src/main/java/com/msdw/tms/model/resp/CdAccountInfoResp.java @@ -0,0 +1,67 @@ +package com.msdw.tms.model.resp; + +import io.swagger.annotations.ApiModel; +import io.swagger.annotations.ApiModelProperty; +import lombok.Data; + +import java.math.BigDecimal; + +/** + * @ProjectName: tms + * @Package: com.msdw.tms.model.req + * @ClassName: CdAccountInfoResp + * @Description: java类作用描述 + * @Author: Maureen.Rong + * @CreateDate: 2020/10/26 11:13 + * @UpdateDate: 2020/10/26 11:13 + * @Version: 1.0 + */ +@ApiModel(value = "期货期权账户返回参数") +@Data +public class CdAccountInfoResp { + + @ApiModelProperty(value = "总资产") + private BigDecimal totalAssets; + + @ApiModelProperty(value = "可用资金") + private BigDecimal balance; + + @ApiModelProperty(value = "资产市值") + private BigDecimal marketAssets; + + @ApiModelProperty(value = "浮动盈亏") + private BigDecimal floatingPL; + + @ApiModelProperty(value = "占用保证金") + private BigDecimal depositBalance; + + @ApiModelProperty(value = "冻结资金") + private BigDecimal forzenBalance; + + + /** + * 待开仓信息 + */ + @ApiModelProperty(value = "序号") + private Integer id; + + @ApiModelProperty(value = "合约名称") + private transient String name; + + @ApiModelProperty(value = "代码") + private transient String ename; + + @ApiModelProperty(value = "交易方向(0空头,1多头)") + private Integer tradingDirection; + + @ApiModelProperty(value = "创建时间") + private String createTime; + + @ApiModelProperty(value = "最后交易日") + private String tradeTime; + + @ApiModelProperty(value = "所需资金") + private BigDecimal fundingNeeded; + + +} diff --git a/src/main/java/com/msdw/tms/model/resp/CdAfterHedgingResp.java b/src/main/java/com/msdw/tms/model/resp/CdAfterHedgingResp.java new file mode 100644 index 0000000..6662e55 --- /dev/null +++ b/src/main/java/com/msdw/tms/model/resp/CdAfterHedgingResp.java @@ -0,0 +1,45 @@ +package com.msdw.tms.model.resp; + +import io.swagger.annotations.ApiModel; +import io.swagger.annotations.ApiModelProperty; +import lombok.Data; + +/** + * @ProjectName: tms + * @Package: com.msdw.tms.model.resp + * @ClassName: CdAfterHedgingResp + * @Description: 对冲后返回对象 + * @Author: Maureen.Rong + * @CreateDate: 2020/10/30 9:17 + * @UpdateDate: 2020/10/30 9:17 + * @Version: 1.0 + */ +@Data +@ApiModel("对冲后损益情况返回信息") +public class CdAfterHedgingResp { + + @ApiModelProperty(value = "汇率类型") + private String name; + + @ApiModelProperty(value = "样本区间:开始时间") + private String startTime; + + @ApiModelProperty(value = "样本区间:结束时间") + private String endTime; + + @ApiModelProperty(value = "持有效") + private String effective; + + @ApiModelProperty("置信水平") + private String confidenceLevel; + + @ApiModelProperty("实验次数") + private String experimentNum; + + @ApiModelProperty("对冲前损益分布图") + private String beforeHedgingUrl; + + @ApiModelProperty("对冲后损益分布图") + private String afterHedgingUrl; + +} diff --git a/src/main/java/com/msdw/tms/model/resp/CdBeforeHedgingResp.java b/src/main/java/com/msdw/tms/model/resp/CdBeforeHedgingResp.java new file mode 100644 index 0000000..efd0f26 --- /dev/null +++ b/src/main/java/com/msdw/tms/model/resp/CdBeforeHedgingResp.java @@ -0,0 +1,73 @@ +package com.msdw.tms.model.resp; + +import io.swagger.annotations.ApiModel; +import io.swagger.annotations.ApiModelProperty; +import lombok.Data; + +import java.math.BigDecimal; + +/** + * @ProjectName: tms + * @Package: com.msdw.tms.model.resp + * @ClassName: CdBeforeHedgingResp + * @Description: java类作用描述 + * @Author: Maureen.Rong + * @CreateDate: 2020/10/28 14:26 + * @UpdateDate: 2020/10/28 14:26 + * @Version: 1.0 + */ +@ApiModel(value = "返回信息", description = "外汇现货盈亏返回对象") +@Data +public class CdBeforeHedgingResp { + + + @ApiModelProperty(value = "序号", required = false) + private Integer id; + + @ApiModelProperty(value = "交易方向(0空头卖,1多头买)") + private String tradingDirection; + + @ApiModelProperty(value = "(持仓可用)委托数量") + private Integer entrustNumber; + + @ApiModelProperty(value = "持仓状态(0.开仓 1.平仓)") + private String status; + + @ApiModelProperty(value = "开仓时间") + private String createTime; + + @ApiModelProperty(value = "平仓时间") + private String updateTime; + + @ApiModelProperty(value = "合约名称") + private String name; + + @ApiModelProperty(value = "开仓价格") + private BigDecimal entrustPrice; + + @ApiModelProperty(value = "平仓价格") + private BigDecimal closeRate; + + @ApiModelProperty(value = "金额外币(开仓)") + private BigDecimal foreignCurrencyByOpen; + + @ApiModelProperty(value = "金额外币(平仓)") + private BigDecimal foreignCurrencyByClose; + + @ApiModelProperty(value = "所需资金(开仓)") + private BigDecimal neededPriceByOpen; + + @ApiModelProperty(value = "所需资金(平仓)") + private BigDecimal neededPriceByClose; + + @ApiModelProperty(value = "盈亏") + private BigDecimal profitLoss; + + @ApiModelProperty(value = "汇率1") + private BigDecimal exchangeRate1; + + @ApiModelProperty(value = "汇率2") + private BigDecimal exchangeRate2; + + +} diff --git a/src/main/java/com/msdw/tms/model/resp/CdFxSpotResp.java b/src/main/java/com/msdw/tms/model/resp/CdFxSpotResp.java new file mode 100644 index 0000000..389035d --- /dev/null +++ b/src/main/java/com/msdw/tms/model/resp/CdFxSpotResp.java @@ -0,0 +1,83 @@ +package com.msdw.tms.model.resp; + +import com.baomidou.mybatisplus.annotation.IdType; +import com.baomidou.mybatisplus.annotation.TableId; +import io.swagger.annotations.ApiModelProperty; +import lombok.Data; + +import javax.validation.constraints.NotBlank; +import javax.validation.constraints.NotNull; +import java.math.BigDecimal; + +/** + * @ProjectName: tms + * @Package: com.msdw.tms.model.req + * @ClassName: CdFxSpotReq + * @Description: 外汇现货返回类 + * @Author: Maureen.Rong + * @CreateDate: 2020/10/27 9:19 + * @UpdateDate: 2020/10/27 9:19 + * @Version: 1.0 + */ +@Data +public class CdFxSpotResp { + + @ApiModelProperty(value = "序号", required = false) + @TableId(type = IdType.AUTO) + private Integer id; + + @ApiModelProperty(value = "用户id") + @NotNull(message = "用户id不能为空") + private Integer userId; + + @ApiModelProperty(value = "合约表主键") + @NotNull(message = "合约表主键不能为空") + private Integer pid; + + @ApiModelProperty(value = "交易方向(0空头,1多头)") + @NotBlank(message = "交易方向不能为空") + private Integer tradingDirection; + + @ApiModelProperty(value = "最新价格") + @NotBlank(message = "最新价格不能为空") + private BigDecimal newestPrice; + + @ApiModelProperty(value = "委托价格") + @NotNull(message = "委托价格不能为空") + private BigDecimal entrustPrice; + + @ApiModelProperty(value = "委托数量") + @NotNull(message = "委托数量不能为空") + private Integer entrustNumber; + + @ApiModelProperty(value = "可交易数量") + @NotNull(message = "可交易数量不能为空") + private BigDecimal tradableNumber; + + + @ApiModelProperty(value = "0.开仓 1.平仓") + private Integer status; + + @ApiModelProperty(value = "是否自动平仓(0否 1是)") + private Integer type; + + @ApiModelProperty(value = "浮动盈亏") + private BigDecimal floatingPl; + + @ApiModelProperty(value = "开仓时间") + @NotBlank(message = "开仓时间不能为空") + private String createTime; + + @ApiModelProperty(value = "平仓时间") + @NotBlank(message = "平仓时间不能为空") + private String updateTime; + + @ApiModelProperty(value = "最后交易日") + @NotBlank(message = "最后交易日不能为空") + private String tradeTime; + + + @ApiModelProperty(value = "平仓价格") + @NotBlank(message = "平仓价格不能为空") + private BigDecimal closeRate; +} diff --git a/src/main/java/com/msdw/tms/model/resp/CdGetDetailByIdResp.java b/src/main/java/com/msdw/tms/model/resp/CdGetDetailByIdResp.java new file mode 100644 index 0000000..c8dad3d --- /dev/null +++ b/src/main/java/com/msdw/tms/model/resp/CdGetDetailByIdResp.java @@ -0,0 +1,54 @@ +package com.msdw.tms.model.resp; + +import io.swagger.annotations.ApiModelProperty; +import lombok.Data; + +import java.math.BigDecimal; + +/** + * @ProjectName: tms + * @Package: com.msdw.tms.model.resp + * @ClassName: CdGetDetailByIdResp + * @Description: java类作用描述 + * @Author: Maureen.Rong + * @CreateDate: 2020/10/27 18:45 + * @UpdateDate: 2020/10/27 18:45 + * @Version: 1.0 + */ +@Data +public class CdGetDetailByIdResp { + + @ApiModelProperty(value = "合约表主键") + private Integer pid; + @ApiModelProperty(value = "合约名称") + private String name; + + @ApiModelProperty(value = "最新价格") + private BigDecimal newestPrice; + + @ApiModelProperty(value = "委托价格(暂默认为最新价格)") + private BigDecimal entrustPrice; + + @ApiModelProperty(value = "委托数量(这里默认为1)") + private Integer entrustNumber; + + @ApiModelProperty(value = "可交易数量") + private String tradableNumber; + + @ApiModelProperty(value = "预冻结保证金") + private BigDecimal preFreezingMargin; + + @ApiModelProperty(value = "预冻结手续费") + private BigDecimal preFreezingFrozen; + + @ApiModelProperty(value = "冻结资金") + private BigDecimal frozenPrice; + + @ApiModelProperty(value = "交易单位") + private Integer tradingUnit; + + @ApiModelProperty(value = "交易保证金") + private BigDecimal tradingBond; + + +} diff --git a/src/main/java/com/msdw/tms/model/resp/CdGetExchangeRateResp.java b/src/main/java/com/msdw/tms/model/resp/CdGetExchangeRateResp.java new file mode 100644 index 0000000..5f98f47 --- /dev/null +++ b/src/main/java/com/msdw/tms/model/resp/CdGetExchangeRateResp.java @@ -0,0 +1,21 @@ +package com.msdw.tms.model.resp; + +import io.swagger.annotations.ApiModelProperty; +import lombok.Data; + +/** + * @ProjectName: tms + * @Package: com.msdw.tms.model.resp + * @ClassName: CdGetExchangeRateResp + * @Description: java类作用描述 + * @Author: Maureen.Rong + * @CreateDate: 2020/10/27 10:21 + * @UpdateDate: 2020/10/27 10:21 + * @Version: 1.0 + */ +@Data +public class CdGetExchangeRateResp { + //汇率类型 + @ApiModelProperty(value = "汇率类型") + private String typeName; +} diff --git a/src/main/java/com/msdw/tms/model/resp/CdGetWeekAndMonthInfoResp.java b/src/main/java/com/msdw/tms/model/resp/CdGetWeekAndMonthInfoResp.java new file mode 100644 index 0000000..a1255be --- /dev/null +++ b/src/main/java/com/msdw/tms/model/resp/CdGetWeekAndMonthInfoResp.java @@ -0,0 +1,29 @@ +package com.msdw.tms.model.resp; + +import com.baomidou.mybatisplus.annotation.TableField; +import io.swagger.annotations.ApiModel; +import io.swagger.annotations.ApiModelProperty; +import lombok.Data; + +/** + * @ProjectName: tms + * @Package: com.msdw.tms.model.resp + * @ClassName: CdGetWeekAndMonthInfoResp + * @Description: java类作用描述 + * @Author: Maureen.Rong + * @CreateDate: 2020/11/16 18:32 + * @UpdateDate: 2020/11/16 18:32 + * @Version: 1.0 + */ +@Data +@ApiModel(value = "查看外汇每周/每月的信息返回对象") +public class CdGetWeekAndMonthInfoResp { + @TableField("last_price") + @ApiModelProperty(value = "最新价") + private Double lastPrice; + + + @TableField("date") + @ApiModelProperty(value = "时间") + private String date; +} diff --git a/src/main/java/com/msdw/tms/model/resp/CdHedgingEfficiencyResp.java b/src/main/java/com/msdw/tms/model/resp/CdHedgingEfficiencyResp.java new file mode 100644 index 0000000..5bf8f27 --- /dev/null +++ b/src/main/java/com/msdw/tms/model/resp/CdHedgingEfficiencyResp.java @@ -0,0 +1,53 @@ +package com.msdw.tms.model.resp; + +import io.swagger.annotations.ApiModel; +import io.swagger.annotations.ApiModelProperty; +import lombok.Data; + +import java.math.BigDecimal; + +/** + * @ProjectName: tms + * @Package: com.msdw.tms.model.resp + * @ClassName: CdHedgingEfficiencyResp + * @Description: 对冲效率 + * @Author: Maureen.Rong + * @CreateDate: 2020/11/3 12:02 + * @UpdateDate: 2020/11/3 12:02 + * @Version: 1.0 + */ +@Data +@ApiModel("对冲效率") +public class CdHedgingEfficiencyResp { + //序号 + @ApiModelProperty(value = "序号") + private Integer id; + + //合约名称 + @ApiModelProperty(value = "合约名称") + private String name; + + //现货盈亏 + @ApiModelProperty(value = "现货盈亏") + private BigDecimal promptGoodsPL; + + //期货盈亏 + @ApiModelProperty(value = "期货盈亏") + private BigDecimal futuresPl; + + //总盈亏 + @ApiModelProperty(value = "总盈亏") + private BigDecimal totalPl; + //总盈亏率 + @ApiModelProperty(value = "总盈亏率") + private String totalPlRatio; + + //对冲风险效率 + @ApiModelProperty(value = "对冲风险效率") + private String riskEfficiency; + + //对冲风险比率 + @ApiModelProperty(value = "对冲风险比率") + private String riskRatio; + +} diff --git a/src/main/java/com/msdw/tms/model/resp/CdHedgingResp.java b/src/main/java/com/msdw/tms/model/resp/CdHedgingResp.java new file mode 100644 index 0000000..5a9ef68 --- /dev/null +++ b/src/main/java/com/msdw/tms/model/resp/CdHedgingResp.java @@ -0,0 +1,33 @@ +package com.msdw.tms.model.resp; + +import com.msdw.tms.entity.vo.CdFuturesConfigureEntityVo; +import io.swagger.annotations.ApiModel; +import io.swagger.annotations.ApiModelProperty; +import lombok.Data; + +/** + * @ProjectName: tms + * @Package: com.msdw.tms.model.resp + * @ClassName: CdHedgingResp + * @Description: 对冲信息返回 + * @Author: Maureen.Rong + * @CreateDate: 2020/11/3 10:07 + * @UpdateDate: 2020/11/3 10:07 + * @Version: 1.0 + */ +@Data +@ApiModel("对冲返回信息") +public class CdHedgingResp { + + + @ApiModelProperty(value = "外汇期货平仓绩效", required = false) + private CdFuturesConfigureEntityVo configure; + + @ApiModelProperty(value = "外汇现货盈亏", required = false) + private CdBeforeHedgingResp beforeHedging; + + @ApiModelProperty(value = "对冲效率", required = false) + private CdHedgingEfficiencyResp hedgingEfficiency; + + +} diff --git a/src/main/java/com/msdw/tms/model/resp/CdHoldPositionInfoResp.java b/src/main/java/com/msdw/tms/model/resp/CdHoldPositionInfoResp.java new file mode 100644 index 0000000..1447f72 --- /dev/null +++ b/src/main/java/com/msdw/tms/model/resp/CdHoldPositionInfoResp.java @@ -0,0 +1,67 @@ +package com.msdw.tms.model.resp; + +import io.swagger.annotations.ApiModel; +import io.swagger.annotations.ApiModelProperty; +import lombok.Data; + +import java.math.BigDecimal; + +/** + * @ProjectName: tms + * @Package: com.msdw.tms.model.resp + * @ClassName: CdHoldPositionInfoResp + * @Description: 外汇期货持仓信息 + * @Author: Maureen.Rong + * @CreateDate: 2020/10/28 11:34 + * @UpdateDate: 2020/10/28 11:34 + * @Version: 1.0 + */ +@ApiModel(value = "返回信息", description = "外汇期货持仓信息") +@Data +public class CdHoldPositionInfoResp { + @ApiModelProperty(value = "序号", required = false) + private Integer id; + + @ApiModelProperty(value = "用户id") + private Integer userId; + + + @ApiModelProperty(value = "交易方向(0空头卖,1多头买)") + private String tradingDirection; + + + @ApiModelProperty(value = "均价/现价") + private BigDecimal entrustPrice; + + @ApiModelProperty(value = "(持仓可用)委托数量") + private Integer entrustNumber; + + @ApiModelProperty(value = "持仓状态(0.开仓 1.平仓)") + private String status; + + + @ApiModelProperty(value = "开仓时间") + private String createTime; + + @ApiModelProperty(value = "平仓时间") + private String updateTime; + + @ApiModelProperty(value = "最后交易日") + private String tradeTime; + + + @ApiModelProperty(value = "合约名称") + private String name; + + @ApiModelProperty(value = "合约代码") + private String ename; + + + @ApiModelProperty(value = "浮动盈亏") + private BigDecimal floatingPl; + + @ApiModelProperty(value = "保证金") + private BigDecimal preFreezingMargin; + + +} diff --git a/src/main/java/com/msdw/tms/model/resp/CdTransferOutResp.java b/src/main/java/com/msdw/tms/model/resp/CdTransferOutResp.java new file mode 100644 index 0000000..95583e2 --- /dev/null +++ b/src/main/java/com/msdw/tms/model/resp/CdTransferOutResp.java @@ -0,0 +1,36 @@ +package com.msdw.tms.model.resp; + +import io.swagger.annotations.ApiModelProperty; +import lombok.Data; + +import java.math.BigDecimal; + +@Data +public class CdTransferOutResp { + + @ApiModelProperty(value = "用户id") + private Long userId; + + @ApiModelProperty(value = "可用资金") + private BigDecimal balance; + + @ApiModelProperty(value = "冻结资金") + private BigDecimal forzenBalance; + + @ApiModelProperty(value = "占用保证金") + private BigDecimal depositBalance; + + @ApiModelProperty(value = "创建时间") + private String createTime; + + @ApiModelProperty(value = "修改时间") + private String updateTime; + + @ApiModelProperty(value = "初始资金") + private BigDecimal initialBalance; + + @ApiModelProperty(value = "总资产") + private transient BigDecimal totalAssets; + + +} diff --git a/src/main/java/com/msdw/tms/model/resp/CdTransferRecordsResp.java b/src/main/java/com/msdw/tms/model/resp/CdTransferRecordsResp.java new file mode 100644 index 0000000..fc458ad --- /dev/null +++ b/src/main/java/com/msdw/tms/model/resp/CdTransferRecordsResp.java @@ -0,0 +1,39 @@ +package com.msdw.tms.model.resp; + +import io.swagger.annotations.ApiModel; +import io.swagger.annotations.ApiModelProperty; +import lombok.Data; + +import java.math.BigDecimal; + +@Data +@ApiModel(value = "查询对象", description = "转账记录查询对象封装") +public class CdTransferRecordsResp { + + //SELECT create_time,type,amount_money,coin_type from cd_bank_statements; + + /** + * 类型(1银行账户 2期货账户) + */ + @ApiModelProperty(value = "转出账户") + private String out; + + @ApiModelProperty(value = "转入账户") + private String enter; + + @ApiModelProperty(value = "币种") + private String coinType; + + + @ApiModelProperty(value = "金额") + private BigDecimal amountMoney; + + + @ApiModelProperty(value = "转账时间") + private String createTime; + + + @ApiModelProperty(value = "转账类型") + private String type; + +} diff --git a/src/main/java/com/msdw/tms/model/resp/CdTransferWarehouseDetailResp.java b/src/main/java/com/msdw/tms/model/resp/CdTransferWarehouseDetailResp.java new file mode 100644 index 0000000..9334c96 --- /dev/null +++ b/src/main/java/com/msdw/tms/model/resp/CdTransferWarehouseDetailResp.java @@ -0,0 +1,86 @@ +package com.msdw.tms.model.resp; + +import com.baomidou.mybatisplus.annotation.IdType; +import com.baomidou.mybatisplus.annotation.TableId; +import io.swagger.annotations.ApiModel; +import io.swagger.annotations.ApiModelProperty; +import lombok.Data; + +import java.math.BigDecimal; + +/** + * @ProjectName: tms + * @Package: com.msdw.tms.model.resp + * @ClassName: CdTransferWarehouseDetailResp + * @Description: 调仓展示详情 + * @Author: Maureen.Rong + * @CreateDate: 2020/11/2 15:40 + * @UpdateDate: 2020/11/2 15:40 + * @Version: 1.0 + */ +@Data +@ApiModel("调仓前详情展示") +public class CdTransferWarehouseDetailResp { + + @ApiModelProperty(value = "主键", required = false) + @TableId(type = IdType.AUTO) + private Integer id; + + + @ApiModelProperty(value = "合约表主键") + private Integer pid; + + @ApiModelProperty(value = "交易方向(0空头,1多头)") + private Integer tradingDirection; + + @ApiModelProperty(value = "委托价") + private BigDecimal newestPrice; + + @ApiModelProperty(value = "名称") + private transient String name; + + @ApiModelProperty(value = "代码") + private transient String ename; + + @ApiModelProperty(value = "当前最新价") + private transient BigDecimal lastPrice; + + @ApiModelProperty(value = "涨跌幅") + private transient String u; + + @ApiModelProperty(value = "昨收") + private transient BigDecimal dayUp; + + @ApiModelProperty(value = "买卖方向为开仓时候:可交易数量为Python表的持仓总量") + private transient BigDecimal tradableQuantityByBuy; + + @ApiModelProperty(value = "买卖方向为平仓时候:可交易数量为自己的持仓总量") + private transient BigDecimal tradableQuantityBySell; + + @ApiModelProperty(value = "当前期权账户可用资金") + private transient BigDecimal availableFunds; + + + @ApiModelProperty(value = "涨跌额") + private BigDecimal udPrice; + + @ApiModelProperty(value = "买入价") + private BigDecimal buyPrice; + + @ApiModelProperty(value = "卖出价") + private BigDecimal cellPrice; + + @ApiModelProperty(value = "买量") + private Integer buy; + + @ApiModelProperty(value = "卖量") + private Integer cell; + + @ApiModelProperty(value = "总量") + private BigDecimal suoyou; + + @ApiModelProperty(value = "持仓量") + private String hava; + + +} diff --git a/src/main/java/com/msdw/tms/model/resp/TestResq.java b/src/main/java/com/msdw/tms/model/resp/TestResq.java new file mode 100644 index 0000000..258770b --- /dev/null +++ b/src/main/java/com/msdw/tms/model/resp/TestResq.java @@ -0,0 +1,14 @@ +package com.msdw.tms.model.resp; + +/** + * @ProjectName: tms + * @Package: com.msdw.tms.mode.resp + * @ClassName: TestResq + * @Description: java类作用描述 + * @Author: Maureen.Rong + * @CreateDate: 2020/10/23 10:57 + * @UpdateDate: 2020/10/23 10:57 + * @Version: 1.0 + */ +public class TestResq { +} diff --git a/src/main/java/com/msdw/tms/service/AliyunOssService.java b/src/main/java/com/msdw/tms/service/AliyunOssService.java new file mode 100644 index 0000000..9833ba4 --- /dev/null +++ b/src/main/java/com/msdw/tms/service/AliyunOssService.java @@ -0,0 +1,29 @@ +package com.msdw.tms.service; + +import com.msdw.tms.common.utils.FilesResult; +import org.springframework.web.multipart.MultipartFile; + +import javax.servlet.http.HttpServletResponse; +import java.io.IOException; + +public interface AliyunOssService { + + /** + * 上传文件 + * + * @param file 上传文件 + */ + FilesResult uploadFiles(MultipartFile file) throws IOException; + + /** + * 下载文件 + * + * @param objectName 本地路径 + */ + void downloadFiles(HttpServletResponse response, String objectName) throws IOException; + + /** + * 根据文件路径+文件名称,删除该文件 + */ + void deleteFile(String filename); +} diff --git a/src/main/java/com/msdw/tms/service/CdBankStatementsService.java b/src/main/java/com/msdw/tms/service/CdBankStatementsService.java new file mode 100644 index 0000000..fb50e94 --- /dev/null +++ b/src/main/java/com/msdw/tms/service/CdBankStatementsService.java @@ -0,0 +1,29 @@ +package com.msdw.tms.service; + +import com.baomidou.mybatisplus.extension.service.IService; +import com.msdw.tms.common.utils.R; +import com.msdw.tms.entity.CdBankStatementsEntity; +import com.msdw.tms.model.req.CdGetAccountInfoReq; +import com.msdw.tms.model.resp.CdTransferRecordsResp; + +import java.math.BigDecimal; +import java.util.List; + +/** + * @描述:账户流水记录 service接口 + * @作者: Rong + * @日期: 2020-10-15 + */ +public interface CdBankStatementsService extends IService { + + boolean modify(Integer userId, Integer transferOut, BigDecimal amountMoney); + + + //转账交易记录 + List queryPageByRecode(String userId, String startTime, String endTime); + + + //查看期权账户时候返回头寸配置信息 + R getAccountInfoReturnOpen(CdGetAccountInfoReq req, Integer userId); + +} \ No newline at end of file diff --git a/src/main/java/com/msdw/tms/service/CdCacheService.java b/src/main/java/com/msdw/tms/service/CdCacheService.java new file mode 100644 index 0000000..2da62be --- /dev/null +++ b/src/main/java/com/msdw/tms/service/CdCacheService.java @@ -0,0 +1,16 @@ +package com.msdw.tms.service; + +import com.alibaba.fastjson.JSONObject; +import com.msdw.tms.common.utils.R; +import com.msdw.tms.entity.CdCacheEntity; +import com.baomidou.mybatisplus.extension.service.IService; + +/** + * @描述:步骤缓存记录表 service接口 + * @作者: Rong + * @日期: 2020-10-21 + */ +public interface CdCacheService extends IService { + R cache(Integer userId, Integer stepNumber, JSONObject json); + +} \ No newline at end of file diff --git a/src/main/java/com/msdw/tms/service/CdExperimentalService.java b/src/main/java/com/msdw/tms/service/CdExperimentalService.java new file mode 100644 index 0000000..e24a571 --- /dev/null +++ b/src/main/java/com/msdw/tms/service/CdExperimentalService.java @@ -0,0 +1,28 @@ +package com.msdw.tms.service; + +import com.baomidou.mybatisplus.extension.service.IService; +import com.msdw.tms.common.utils.R; +import com.msdw.tms.entity.CdExperimentalEntity; + +import javax.servlet.http.HttpServletResponse; +import java.util.List; + +/** + * @描述:实验数据 service接口 + * @作者: Rong + * @日期: 2020-10-20 + */ + +public interface CdExperimentalService extends IService { + + //单条导出实验结果 + R exportProjectRecord(HttpServletResponse response, Integer id) throws Exception; + + //多条导出实验结果 + R exportexportProjectRecordByAll(HttpServletResponse response, Integer userId, Integer type) throws Exception; + + //根据选择的id导出实验结果 + R exportexportProjectRecordById(HttpServletResponse response, Integer userId, List ids) throws Exception; + + +} \ No newline at end of file diff --git a/src/main/java/com/msdw/tms/service/CdFuturesConfigureService.java b/src/main/java/com/msdw/tms/service/CdFuturesConfigureService.java new file mode 100644 index 0000000..1652fd3 --- /dev/null +++ b/src/main/java/com/msdw/tms/service/CdFuturesConfigureService.java @@ -0,0 +1,47 @@ +package com.msdw.tms.service; + +import com.baomidou.mybatisplus.extension.service.IService; +import com.msdw.tms.common.utils.R; +import com.msdw.tms.entity.CdFuturesConfigureEntity; +import com.msdw.tms.entity.vo.CdFuturesConfigureEntityVo; +import com.msdw.tms.model.resp.CdAfterHedgingResp; +import com.msdw.tms.model.resp.CdBeforeHedgingResp; +import com.msdw.tms.model.resp.CdHoldPositionInfoResp; +import com.msdw.tms.model.resp.CdTransferWarehouseDetailResp; +import org.springframework.stereotype.Service; + +/** + * @描述:期货资产头寸配置 service接口 + * @作者: Rong + * @日期: 2020-10-10 + */ +@Service +public interface CdFuturesConfigureService extends IService { + //开仓 + R openPosition(CdFuturesConfigureEntity entity); + + //平仓 + R buyIn(int id, String date, Integer userId); + + //调仓详情展示 + CdTransferWarehouseDetailResp transferWarehouseByDetail(int id); + + + //外汇期货持仓情况 + CdHoldPositionInfoResp myPosition(int id); + + //外汇期货平仓绩效 + CdFuturesConfigureEntityVo buyInAchievements(int id, Integer userId); + + //外汇现货盈亏 + CdBeforeHedgingResp beforeHedging(int userId); + + + //对冲后损益情况 + CdAfterHedgingResp afterHedging(int userId); + + //根据id删除开仓信息 + boolean delOpenPosition(int id,int userId); + + +} \ No newline at end of file diff --git a/src/main/java/com/msdw/tms/service/CdPointChildrenService.java b/src/main/java/com/msdw/tms/service/CdPointChildrenService.java new file mode 100644 index 0000000..0776af0 --- /dev/null +++ b/src/main/java/com/msdw/tms/service/CdPointChildrenService.java @@ -0,0 +1,14 @@ +package com.msdw.tms.service; + +import com.baomidou.mybatisplus.extension.service.IService; +import com.msdw.tms.entity.CdPointChildren; + +/** + * @描述:判分点值子级表 service接口 + * @作者: Rong + * @日期: 2021-01-12 + */ +public interface CdPointChildrenService extends IService { + + +} \ No newline at end of file diff --git a/src/main/java/com/msdw/tms/service/CdPointService.java b/src/main/java/com/msdw/tms/service/CdPointService.java new file mode 100644 index 0000000..6794e38 --- /dev/null +++ b/src/main/java/com/msdw/tms/service/CdPointService.java @@ -0,0 +1,14 @@ +package com.msdw.tms.service; + +import com.baomidou.mybatisplus.extension.service.IService; +import com.msdw.tms.entity.CdPoint; + +/** + * @描述: service接口 + * @作者: Rong + * @日期: 2021-01-11 + */ +public interface CdPointService extends IService { + + +} \ No newline at end of file diff --git a/src/main/java/com/msdw/tms/service/CdTransferWarehouseRecordService.java b/src/main/java/com/msdw/tms/service/CdTransferWarehouseRecordService.java new file mode 100644 index 0000000..88f7105 --- /dev/null +++ b/src/main/java/com/msdw/tms/service/CdTransferWarehouseRecordService.java @@ -0,0 +1,17 @@ +package com.msdw.tms.service; + +import com.msdw.tms.common.utils.R; +import com.msdw.tms.entity.CdFuturesConfigureEntity; +import com.msdw.tms.entity.CdTransferWarehouseRecordEntity; +import com.baomidou.mybatisplus.extension.service.IService; +import org.springframework.stereotype.Service; + +/** + * @描述:调仓记录表 service接口 + * @作者: Rong + * @日期: 2020-10-10 + */ +@Service +public interface CdTransferWarehouseRecordService extends IService { + R add(CdFuturesConfigureEntity entity); +} \ No newline at end of file diff --git a/src/main/java/com/msdw/tms/service/CdUserAssetsService.java b/src/main/java/com/msdw/tms/service/CdUserAssetsService.java new file mode 100644 index 0000000..6ce9fbf --- /dev/null +++ b/src/main/java/com/msdw/tms/service/CdUserAssetsService.java @@ -0,0 +1,21 @@ +package com.msdw.tms.service; + +import com.msdw.tms.entity.CdUserAssetsEntity; +import com.baomidou.mybatisplus.extension.service.IService; + +/** + * @描述:用户银行账户 service接口 + * @作者: Rong + * @日期: 2020-10-10 + */ +public interface CdUserAssetsService extends IService { + + int addInfo(CdUserAssetsEntity userAssetsEntity); + + //根据用户id查询银行账户信息 + CdUserAssetsEntity userAssetsByUerId(long userId); + + //根据用户id修改 + int modify(long userId); + +} \ No newline at end of file diff --git a/src/main/java/com/msdw/tms/service/CdUserOptionAccountService.java b/src/main/java/com/msdw/tms/service/CdUserOptionAccountService.java new file mode 100644 index 0000000..b7e9c72 --- /dev/null +++ b/src/main/java/com/msdw/tms/service/CdUserOptionAccountService.java @@ -0,0 +1,21 @@ +package com.msdw.tms.service; + +import com.baomidou.mybatisplus.extension.service.IService; +import com.msdw.tms.entity.CdUserOptionAccountEntity; + +/** + * @描述:期货期权账户 service接口 + * @作者: Rong + * @日期: 2020-10-10 + */ +public interface CdUserOptionAccountService extends IService { + + //新增期权账户信息 + int addInfoByOptionAccount(CdUserOptionAccountEntity userOptionAccount); + + CdUserOptionAccountEntity optionAccountByUerId(long userId); + + //根据用户id修改 + int modify(long userId); + +} \ No newline at end of file diff --git a/src/main/java/com/msdw/tms/service/QhscGangjiaosuoService.java b/src/main/java/com/msdw/tms/service/QhscGangjiaosuoService.java new file mode 100644 index 0000000..33c60fc --- /dev/null +++ b/src/main/java/com/msdw/tms/service/QhscGangjiaosuoService.java @@ -0,0 +1,23 @@ +package com.msdw.tms.service; + +import com.baomidou.mybatisplus.extension.service.IService; +import com.msdw.tms.common.utils.PageUtils; +import com.msdw.tms.entity.QhscGangjiaosuoEntity; + +import java.util.List; + +/** + * @描述: service接口 + * @作者: Rong + * @日期: 2020-10-10 + */ +public interface QhscGangjiaosuoService extends IService { + + //外汇期货:根据币种分页查询 + PageUtils queryPageByQh(Integer page, Integer size, String name, String date); + + //查询所有币种 + List getName(); + + +} \ No newline at end of file diff --git a/src/main/java/com/msdw/tms/service/RedisService.java b/src/main/java/com/msdw/tms/service/RedisService.java new file mode 100644 index 0000000..d5d671d --- /dev/null +++ b/src/main/java/com/msdw/tms/service/RedisService.java @@ -0,0 +1,22 @@ +package com.msdw.tms.service; + +import com.msdw.tms.common.utils.RedisConfig; +import org.springframework.stereotype.Service; + +import javax.annotation.Resource; + +/** + * @ProjectName: tms + * @Package: com.msdw.tms.service + * @ClassName: RedisService + * @Description: java类作用描述 + * @Author: Maureen.Rong + * @CreateDate: 2020/11/13 10:21 + * @UpdateDate: 2020/11/13 10:21 + * @Version: 1.0 + */ +@Service +public class RedisService { + @Resource + private RedisConfig redisConfig; +} diff --git a/src/main/java/com/msdw/tms/service/WhscRenminbipinzhongService.java b/src/main/java/com/msdw/tms/service/WhscRenminbipinzhongService.java new file mode 100644 index 0000000..242f1ea --- /dev/null +++ b/src/main/java/com/msdw/tms/service/WhscRenminbipinzhongService.java @@ -0,0 +1,34 @@ +package com.msdw.tms.service; + +import com.baomidou.mybatisplus.extension.service.IService; +import com.msdw.tms.common.utils.PageUtils; +import com.msdw.tms.common.utils.R; +import com.msdw.tms.entity.WhscRenminbipinzhongEntity; + +import javax.servlet.http.HttpServletResponse; +import java.util.List; + +/** + * @描述:外汇市场人民币品种 service接口 + * @作者: Rong + * @日期: 2020-09-28 + */ +public interface WhscRenminbipinzhongService extends IService { + + + //导出Excel + R exportProjectRecord(HttpServletResponse response, String name, String startTime, String endTime) throws Exception; + + + //分页查询外汇人民币币种 + PageUtils queryPageByRecode(Integer pageNum, Integer pageSize, String name, String date, Integer userId); + + //根据筛选的名称查询 + R getInfobyId(String name, String startTime, String endTime, String confidenceLevel, String validity, Integer type, String experimentsNumber); + + + //查询所有汇率类型 + List getExchangeRate(); + + +} \ No newline at end of file diff --git a/src/main/java/com/msdw/tms/service/impl/AliyunOssServiceImpl.java b/src/main/java/com/msdw/tms/service/impl/AliyunOssServiceImpl.java new file mode 100644 index 0000000..5a687f4 --- /dev/null +++ b/src/main/java/com/msdw/tms/service/impl/AliyunOssServiceImpl.java @@ -0,0 +1,56 @@ +package com.msdw.tms.service.impl; + +import com.aliyun.oss.OSSClient; +import com.msdw.tms.common.utils.AliyunOssUtil; +import com.msdw.tms.common.utils.FilesResult; +import com.msdw.tms.config.AliyunOssConfig; +import com.msdw.tms.service.AliyunOssService; +import org.springframework.beans.factory.BeanFactory; +import org.springframework.stereotype.Service; +import org.springframework.web.multipart.MultipartFile; + +import javax.annotation.Resource; +import javax.servlet.http.HttpServletResponse; +import java.io.IOException; + +/** + * 阿里云OSSUtil + */ +@Service +public class AliyunOssServiceImpl implements AliyunOssService { + + @Resource + AliyunOssConfig config; + + @Resource + BeanFactory beanFactory; + + /** + * 上传文件 + * + * @param file 上传文件 + */ + public FilesResult uploadFiles(MultipartFile file) throws IOException { + OSSClient client = beanFactory.getBean(OSSClient.class); + return AliyunOssUtil.uploadFiles(file, client, config); + } + + /** + * 下载文件 + * + * @param objectName 本地路径 + */ + public void downloadFiles(HttpServletResponse response, String objectName) throws IOException { + OSSClient client = beanFactory.getBean(OSSClient.class); + AliyunOssUtil.downloadFiles(response, client, config, objectName); + } + + /** + * 根据文件路径+文件名称,删除该文件 + * + */ + public void deleteFile(String filename) { + OSSClient client = beanFactory.getBean(OSSClient.class); + AliyunOssUtil.deleteFile(client, config.getBucketName(), filename); + } +} diff --git a/src/main/java/com/msdw/tms/service/impl/CdBankStatementsServiceImpl.java b/src/main/java/com/msdw/tms/service/impl/CdBankStatementsServiceImpl.java new file mode 100644 index 0000000..a7e3bf7 --- /dev/null +++ b/src/main/java/com/msdw/tms/service/impl/CdBankStatementsServiceImpl.java @@ -0,0 +1,358 @@ +package com.msdw.tms.service.impl; + +import com.baomidou.mybatisplus.core.conditions.query.QueryWrapper; +import com.baomidou.mybatisplus.core.conditions.update.UpdateWrapper; +import com.baomidou.mybatisplus.extension.service.impl.ServiceImpl; +import com.msdw.tms.common.utils.R; +import com.msdw.tms.common.utils.trading_rules.algorithm; +import com.msdw.tms.dao.*; +import com.msdw.tms.entity.*; +import com.msdw.tms.model.req.CdGetAccountInfoReq; +import com.msdw.tms.model.resp.CdAccountInfoResp; +import com.msdw.tms.model.resp.CdTransferRecordsResp; +import com.msdw.tms.service.CdBankStatementsService; +import org.springframework.data.redis.core.RedisTemplate; +import org.springframework.stereotype.Service; + +import javax.annotation.Resource; +import java.math.BigDecimal; +import java.util.ArrayList; +import java.util.List; + +/** + * @描述:账户流水记录 服务类 + * @作者: Rong + * @日期: 2020-10-15 + */ +@Service("cdBankStatementsService") +public class CdBankStatementsServiceImpl extends ServiceImpl implements CdBankStatementsService { + + + @Resource + private CdBankStatementsDao dao; + + //期权账户 + @Resource + private CdUserOptionAccountDao accountDao; + + + //银行账户 + @Resource + private CdUserAssetsDao bankDao; + + @Resource + private QhscGangjiaosuoDao gangjiaosuoDao; + + @Resource + private CdFuturesConfigureDao configureDao; + @Resource + public RedisTemplate template; + + + /** + * 转账后添加转账流水 + * 对相应的账户做修改操作 + * + * @param + * @param + * @return + */ + @Override + //@Transactional(propagation = Propagation.NESTED, isolation = Isolation.DEFAULT, readOnly = false, rollbackFor = Exception.class) + public boolean modify(Integer userId, Integer transferOut, BigDecimal amountMoney) { + try { + + String getDate = template.opsForValue().get("date:userId_" + userId); + + //获取当前银行可用资金 + QueryWrapper queryWrapper = new QueryWrapper(); + queryWrapper.eq("user_id", userId); + //getBankBalance:获取到当前银行可用资金 + BigDecimal getBankBalance = bankDao.selectOne(queryWrapper).getBalance(); + + //获取当前期权账户可用资金 + QueryWrapper queryWrapper2 = new QueryWrapper(); + queryWrapper2.eq("user_id", userId); + //getBalance:获取到当前期权账户可用资金 + BigDecimal getBalance = accountDao.selectOne(queryWrapper2).getBalance(); + + + UpdateWrapper updateWrapper1 = new UpdateWrapper(); + UpdateWrapper updateWrapper2 = new UpdateWrapper(); + CdBankStatementsEntity bankStatements1 = new CdBankStatementsEntity(); + CdBankStatementsEntity bankStatements2 = new CdBankStatementsEntity(); + + updateWrapper1.eq("user_id", userId); + updateWrapper2.eq("user_id", userId); + + if (transferOut == 1) { + /* 操作1:银行账户扣钱 期权账户加钱 同时添加流水记录*/ + + + //银行账户扣钱操作 + updateWrapper1.set("balance", getBankBalance.subtract(amountMoney)); + int updateBank = bankDao.update(null, updateWrapper1); + + + //期权账户加钱操作 + updateWrapper2.set("balance", getBalance.add(amountMoney)); + int updateAssets = accountDao.update(null, updateWrapper2); + + + //添加银行账户流水记录 + bankStatements1.setType(1);//类型(1银行账户 2期货账户) + bankStatements1.setCoinType("人民币"); + bankStatements1.setBeforeAmount(getBankBalance);//改变前金额 + bankStatements1.setAmountMoney(amountMoney);//金额 + bankStatements1.setAfterAmount(getBankBalance.subtract(amountMoney)); + bankStatements1.setTransferType(1);//流水类型(1:转账 2:流水) + bankStatements1.setRemark("转账"); + bankStatements1.setUserId(userId); + bankStatements1.setCreateTime(getDate); + int addBankStatements1 = baseMapper.insert(bankStatements1); + + //添加期权账户流水记录 + bankStatements2.setType(2);//类型(1银行账户 2期货账户) + bankStatements2.setCoinType("人民币"); + bankStatements2.setBeforeAmount(getBalance);//改变前金额 + bankStatements2.setAmountMoney(amountMoney);//金额 + bankStatements2.setAfterAmount(getBalance.add(amountMoney)); + bankStatements2.setTransferType(1);//流水类型(1:转账 2:流水) + bankStatements2.setUserId(userId); + bankStatements2.setRemark("入账"); + bankStatements2.setCreateTime(getDate); + int addBankStatements2 = baseMapper.insert(bankStatements2); + + + if (updateAssets <= 0 && updateBank <= 0 && addBankStatements1 <= 0 && addBankStatements2 <= 0) { + return false; + } + + + } else if (transferOut == 2) { + //以期权账户转出到银行账户 + /* 操作2:期权账户扣钱 银行账户加钱 同时添加流水记录*/ + + + //期权账户扣钱 + updateWrapper2.set("balance", getBalance.subtract(amountMoney)); + updateWrapper2.eq("user_id", userId); + int updateAssets = accountDao.update(null, updateWrapper2); + + + //银行账户加钱 + updateWrapper1.set("balance", getBankBalance.add(amountMoney)); + updateWrapper1.eq("user_id", userId); + int updateBank = bankDao.update(null, updateWrapper1); + + + //添加银行账户流水记录 + + bankStatements1.setType(2);//类型(1银行账户 2期货账户) + bankStatements1.setCoinType("人民币"); + bankStatements1.setBeforeAmount(getBankBalance);//改变前金额 + bankStatements1.setAmountMoney(amountMoney);//金额 + bankStatements1.setAfterAmount(getBankBalance.add(amountMoney)); + bankStatements1.setTransferType(1);//流水类型(1:转账 2:流水) + bankStatements1.setRemark("转账"); + bankStatements1.setCreateTime(getDate); + bankStatements1.setUserId(userId); + int addBankStatements1 = baseMapper.insert(bankStatements1); + + //添加期权账户流水记录 + + bankStatements2.setType(1);//类型(1银行账户 2期货账户) + bankStatements2.setCoinType("人民币"); + bankStatements2.setBeforeAmount(getBalance);//改变前金额 + bankStatements2.setAmountMoney(amountMoney);//金额 + bankStatements2.setAfterAmount(getBalance.subtract(amountMoney)); + bankStatements2.setTransferType(1);//流水类型(1:转账 2:流水) + bankStatements2.setRemark("入账"); + bankStatements2.setCreateTime(getDate); + bankStatements2.setUserId(userId); + int addBankStatements2 = baseMapper.insert(bankStatements2); + + + if (updateAssets <= 0 && updateBank <= 0 && addBankStatements1 <= 0 && addBankStatements2 <= 0) { + return false; + } + + + } + return true; + } catch (Exception e) { + e.getMessage(); + return false; + } + + + } + + /** + * 转账交易记录 + * + * @param + * @param + * @param userId + * @param startTime + * @param endTime + * @return + */ + @Override + public List queryPageByRecode(String userId, String startTime, String endTime) { + //分页对象 + QueryWrapper queryWrapper = new QueryWrapper(); + //判断条件值是否为空,如果不为空,拼接条件 + if (userId != null) { + queryWrapper.eq("user_id", userId); + } + + + if (startTime != null && endTime != null) { + if (!startTime.isEmpty() && !endTime.isEmpty()) { + queryWrapper.ge("create_time", startTime) + .le("create_time", endTime); + } + } + + //流水类型(1:转账 2:流水) + queryWrapper.eq("transfer_type", 1); + queryWrapper.eq("remark", "转账"); + + //获取list + List list = baseMapper.selectList(queryWrapper); + + //添加进新的集合 + List recordsReqs = new ArrayList<>(); + + + //类型(1银行账户 2期货账户) + for (CdBankStatementsEntity entity : list) { + CdTransferRecordsResp req = new CdTransferRecordsResp(); + if (entity.getType() == 1) { + req.setOut("银行账户"); + req.setEnter("商品期货保证金账户"); + } else if (entity.getType() == 2) { + req.setOut("商品期货保证金账户"); + req.setEnter("银行账户"); + + } + req.setCoinType("人民币"); + req.setAmountMoney(entity.getAmountMoney()); + req.setCreateTime(entity.getCreateTime()); + req.setType("自由转账"); + recordsReqs.add(req); + } + return recordsReqs; + } + + /** + * 查看期权账户时候返回头寸配置信息 + * + * @param req + * @return + */ + @Override + public R getAccountInfoReturnOpen(CdGetAccountInfoReq req, Integer userId) { + + String getDate = template.opsForValue().get("date:userId_" + userId); + + QueryWrapper account = new QueryWrapper(); + account.eq("user_id", userId); + + //查询当前账户金额 + CdUserOptionAccountEntity entity = accountDao.selectOne(account); + + CdAccountInfoResp accountInfoResp = new CdAccountInfoResp(); + //可用资金 + accountInfoResp.setBalance(entity.getBalance()); + //冻结资金 + accountInfoResp.setForzenBalance(entity.getForzenBalance()); + //占用保证金 + accountInfoResp.setDepositBalance(entity.getDepositBalance()); + + //每手交易单位(合约面值) + Integer tradingUnit = 0; + + //查询当前用户的开仓信息 + QueryWrapper queryWrapper = new QueryWrapper(); + queryWrapper.eq("user_id", userId); + + BigDecimal float_pl = new BigDecimal(0); + BigDecimal marketAssets = new BigDecimal(0); + //查询当前用户持仓信息 + CdFuturesConfigureEntity configureEntity = configureDao.selectOne(queryWrapper); + if (configureEntity != null) { + + //根据pid查询当前代码 + QhscGangjiaosuoEntity qhscGangjiaosuo = gangjiaosuoDao.selectById(configureEntity.getPid()); + + //根据代码查询当天汇率价格 + QueryWrapper wrapper = new QueryWrapper(); + wrapper.eq("e_name", qhscGangjiaosuo.getEName()); + wrapper.eq("date", getDate); + QhscGangjiaosuoEntity gangjiaosuo = gangjiaosuoDao.selectOne(wrapper); + + tradingUnit = CdFuturesConfigureServiceImpl.setCompany(gangjiaosuo.getName()); + + //浮动盈亏 =(当天结算价—昨日结算价)* 委托数量 * 合约面值 + float_pl = algorithm.getFloatingPL(gangjiaosuo.getLastPrice(), gangjiaosuo.getDayUp(), new BigDecimal(tradingUnit), configureEntity.getEntrustNumber()); + accountInfoResp.setFloatingPL(float_pl); + //资产市值 市值=外汇期货合约价格 * 委托数量 * 合约面值 + + //查询持仓信息状态是开仓还是平仓(0.开仓 1.平仓) + if (configureEntity.getStatus() == 0) { + + //资产市值 = (开仓或者平仓) * 委托数量 * 合约面值(1份合约=一手,一手=?吨) + marketAssets = algorithm.getMarketValue(configureEntity.getEntrustPrice(), configureEntity.getEntrustNumber(), tradingUnit); + + } else if (configureEntity.getStatus() == 1) { + marketAssets = algorithm.getMarketValue(configureEntity.getCloseRate(), configureEntity.getEntrustNumber(), tradingUnit); + } + + accountInfoResp.setMarketAssets(marketAssets); + } else { + accountInfoResp.setMarketAssets(marketAssets); + accountInfoResp.setFloatingPL(float_pl); + } + + + //总资金 = 资产市值 + 占用保证金 + 冻结资金 + 可用资金 + BigDecimal totalAssets = marketAssets.add(accountInfoResp.getDepositBalance().add(accountInfoResp.getBalance().add(accountInfoResp.getForzenBalance()))); + accountInfoResp.setTotalAssets(totalAssets); + + + QhscGangjiaosuoEntity qh = gangjiaosuoDao.selectById(req.getId()); + + //序号 + accountInfoResp.setId(req.getId()); + //代码 + accountInfoResp.setEname(qh.getEName()); + //合约名称 + accountInfoResp.setName(qh.getName()); + //交易方向 + accountInfoResp.setTradingDirection(req.getTradingDirection()); + //需要资金 + + int unit = CdFuturesConfigureServiceImpl.setCompany(qh.getName()); + + //所需资金 = 委托价格 * 委托数量(手数) * 每手交易单位 + BigDecimal totalAmount = algorithm.getFundsRequired(req.getEntrustPrice(), BigDecimal.valueOf(req.getEntrustNumber()), unit); + accountInfoResp.setFundingNeeded(totalAmount); + + //创建时间 + accountInfoResp.setCreateTime(getDate); + //最后交易日 + //获取最后交易日 + String tradeTime = algorithm.getLastTradingDay(qh.getName()); + accountInfoResp.setTradeTime(tradeTime); + + return R.ok().put("data", accountInfoResp); + + } + + +} + + + diff --git a/src/main/java/com/msdw/tms/service/impl/CdCacheServiceImpl.java b/src/main/java/com/msdw/tms/service/impl/CdCacheServiceImpl.java new file mode 100644 index 0000000..2b05d95 --- /dev/null +++ b/src/main/java/com/msdw/tms/service/impl/CdCacheServiceImpl.java @@ -0,0 +1,70 @@ +package com.msdw.tms.service.impl; + +import com.alibaba.fastjson.JSONObject; +import com.baomidou.mybatisplus.core.conditions.query.QueryWrapper; +import com.baomidou.mybatisplus.core.conditions.update.UpdateWrapper; +import com.baomidou.mybatisplus.extension.service.impl.ServiceImpl; +import com.msdw.tms.common.utils.R; +import com.msdw.tms.dao.CdCacheDao; +import com.msdw.tms.entity.CdCacheEntity; +import com.msdw.tms.service.CdCacheService; +import org.springframework.data.redis.core.RedisTemplate; +import org.springframework.stereotype.Service; + +import javax.annotation.Resource; + +/** + * @描述:步骤缓存记录表 服务类 + * @作者: Rong + * @日期: 2020-10-21 + */ +@Service("cdCacheService") +public class CdCacheServiceImpl extends ServiceImpl implements CdCacheService { + + @Resource + private CdCacheDao dao; + + @Resource + public RedisTemplate template; + + /** + * 步骤保存 + * + * @param userId + * @param stepNumber + * @param json + * @return + */ + @Override + public R cache(Integer userId, Integer stepNumber, JSONObject json) { + //先查询用户有没有存在记录 + QueryWrapper queryWrapper = new QueryWrapper<>(); + queryWrapper.eq("user_id", userId); + CdCacheEntity cache = baseMapper.selectOne(queryWrapper); + + System.out.println("打印:" + "stepNumber:" + stepNumber + "\tjson:"); + + if (cache == null) { + //表示第一次进入 + CdCacheEntity entity = new CdCacheEntity(); + entity.setUserId(userId); + entity.setStep1(json.toJSONString()); + entity.setStepNumber(1); + int flag = baseMapper.insert(entity); + if (flag == 1) { + return R.ok(); + } + } + //如果存在记录 则根据相应的步骤数 填入相应的Json字符串 + UpdateWrapper updateWrapper = new UpdateWrapper<>(); + updateWrapper.eq("user_id", userId); + updateWrapper.set("step_number", stepNumber); + updateWrapper.set("step" + stepNumber, json.toJSONString()); + dao.update(null, updateWrapper); + + return R.ok(); + } +} + + + diff --git a/src/main/java/com/msdw/tms/service/impl/CdExperimentalServiceImpl.java b/src/main/java/com/msdw/tms/service/impl/CdExperimentalServiceImpl.java new file mode 100644 index 0000000..3cb4a7f --- /dev/null +++ b/src/main/java/com/msdw/tms/service/impl/CdExperimentalServiceImpl.java @@ -0,0 +1,259 @@ +package com.msdw.tms.service.impl; + +import cn.afterturn.easypoi.excel.ExcelExportUtil; +import cn.afterturn.easypoi.excel.entity.ExportParams; +import com.baomidou.mybatisplus.core.conditions.query.QueryWrapper; +import com.baomidou.mybatisplus.extension.service.impl.ServiceImpl; +import com.msdw.tms.common.utils.R; +import com.msdw.tms.dao.CdExperimentalDao; +import com.msdw.tms.entity.CdExperimentalEntity; +import com.msdw.tms.entity.vo.CdExperimentalEntityVo; +import com.msdw.tms.service.CdExperimentalService; +import org.apache.poi.ss.usermodel.Workbook; +import org.springframework.stereotype.Service; + +import javax.servlet.http.HttpServletResponse; +import java.io.IOException; +import java.net.URLEncoder; +import java.util.ArrayList; +import java.util.List; + +/** + * @描述:实验数据 服务类 + * @作者: Rong + * @日期: 2020-10-20 + */ +@Service("cdExperimentalService") +public class CdExperimentalServiceImpl extends ServiceImpl implements CdExperimentalService { + + /** + * 单条导出实验结果 + * + * @param response + * @param id + * @return + * @throws Exception + */ + @Override + public R exportProjectRecord(HttpServletResponse response, Integer id) throws Exception { + + try { + + CdExperimentalEntity entity = baseMapper.selectById(id); + if (entity == null) { + return R.ok("暂无此数据"); + } + + QueryWrapper wrapper = new QueryWrapper(); + wrapper.eq("id", id); + List list = baseMapper.selectList(wrapper); + switch (entity.getType()) { + + case 0: + case 1: + + if (list != null) { + + // 告诉浏览器用什么软件可以打开此文件 + response.setHeader("content-Type", "application/vnd.ms-excel"); + // 下载文件的默认名称 + response.setHeader("Content-Disposition", "attachment;filename=" + URLEncoder.encode("实验数据", "UTF-8") + ".xls"); + //编码 + response.setCharacterEncoding("UTF-8"); + Workbook workbook = ExcelExportUtil.exportExcel(new ExportParams(), CdExperimentalEntity.class, list); + workbook.write(response.getOutputStream()); + } + + break; + case 2: + + + CdExperimentalEntity entity1 = baseMapper.selectById(id); + CdExperimentalEntityVo vo = new CdExperimentalEntityVo(); + + vo.setId(entity1.getId()); + vo.setExchangeRate(entity1.getExchangeRate()); + vo.setSampleData(entity1.getSampleData()); + vo.setConfidenceLevel(entity1.getConfidenceLevel()); + vo.setValidPeriod(entity1.getValidPeriod()); + vo.setTrendChart(entity1.getTrendChart()); + vo.setProfitLossDistribution(entity1.getProfitLossDistribution()); + vo.setCreatTime(entity1.getCreatTime()); + + List voList = new ArrayList<>(); + voList.add(vo); + + + // 告诉浏览器用什么软件可以打开此文件 + response.setHeader("content-Type", "application/vnd.ms-excel"); + // 下载文件的默认名称 + response.setHeader("Content-Disposition", "attachment;filename=" + URLEncoder.encode("实验数据(蒙特卡洛)", "UTF-8") + ".xls"); + //编码 + response.setCharacterEncoding("UTF-8"); + Workbook workbook = ExcelExportUtil.exportExcel(new ExportParams(), CdExperimentalEntityVo.class, voList); + workbook.write(response.getOutputStream()); + + + break; + + } + + + } catch (IOException e) { + e.printStackTrace(); + return R.error("出现异常:" + e.getMessage()); + + } + return R.ok(); + } + + /** + * 根据选择的类型导出实验结果 + * + * @param response + * @param userId + * @return + * @throws Exception 要导出的类型-实验类型(0正态Var,1历史模拟,2蒙特卡洛)" + */ + @Override + public R exportexportProjectRecordByAll(HttpServletResponse response, Integer userId, Integer type) throws Exception { + + //查询该用户做过的实验 + QueryWrapper queryWrapper = new QueryWrapper(); + queryWrapper.eq("user_id", userId); + queryWrapper.eq("type", type); + List list = baseMapper.selectList(queryWrapper); + + if (list == null) { + return R.ok("没有该数据,无法导出Excel。"); + } + List voList = new ArrayList<>(); + switch (type) { + + case 0: + case 1: + + + // 告诉浏览器用什么软件可以打开此文件 + response.setHeader("content-Type", "application/vnd.ms-excel"); + // 下载文件的默认名称 + response.setHeader("Content-Disposition", "attachment;filename=" + URLEncoder.encode("实验数据", "UTF-8") + ".xls"); + //编码 + response.setCharacterEncoding("UTF-8"); + Workbook workbook = ExcelExportUtil.exportExcel(new ExportParams(), CdExperimentalEntity.class, list); + workbook.write(response.getOutputStream()); + + + break; + case 2: + + + for (CdExperimentalEntity experimentalEntity : list) { + CdExperimentalEntityVo vo = new CdExperimentalEntityVo(); + System.out.println("打印:>>>>>>>" + experimentalEntity.getId()); + vo.setId(experimentalEntity.getId()); + vo.setExchangeRate(experimentalEntity.getExchangeRate()); + vo.setSampleData(experimentalEntity.getSampleData()); + vo.setConfidenceLevel(experimentalEntity.getConfidenceLevel()); + vo.setValidPeriod(experimentalEntity.getValidPeriod()); + vo.setTrendChart(experimentalEntity.getTrendChart()); + vo.setProfitLossDistribution(experimentalEntity.getProfitLossDistribution()); + vo.setCreatTime(experimentalEntity.getCreatTime()); + + System.out.println("赋值前打印:" + vo); + + voList.add(vo); + } + + + // 告诉浏览器用什么软件可以打开此文件 + response.setHeader("content-Type", "application/vnd.ms-excel"); + // 下载文件的默认名称 + response.setHeader("Content-Disposition", "attachment;filename=" + URLEncoder.encode("实验数据(蒙特卡洛)", "UTF-8") + ".xls"); + //编码 + response.setCharacterEncoding("UTF-8"); + Workbook workbook1 = ExcelExportUtil.exportExcel(new ExportParams(), CdExperimentalEntityVo.class, voList); + workbook1.write(response.getOutputStream()); + break; + + } + + return null; + + } + + /** + * 根据选择的id导出实验 + * + * @param response + * @param userId + * @param ids + * @return + * @throws Exception + */ + @Override + public R exportexportProjectRecordById(HttpServletResponse response, Integer userId, List ids) throws Exception { + + List list = this.listByIds(ids); + if (list == null) { + return R.ok("没有该数据,无法导出Excel。"); + } + List voList = new ArrayList<>(); + for (CdExperimentalEntity experimental : list) { + switch (experimental.getType()) { + case 0: + case 1: + + + // 告诉浏览器用什么软件可以打开此文件 + response.setHeader("content-Type", "application/vnd.ms-excel"); + // 下载文件的默认名称 + response.setHeader("Content-Disposition", "attachment;filename=" + URLEncoder.encode("实验数据", "UTF-8") + ".xls"); + //编码 + response.setCharacterEncoding("UTF-8"); + Workbook workbook = ExcelExportUtil.exportExcel(new ExportParams(), CdExperimentalEntity.class, list); + workbook.write(response.getOutputStream()); + + + break; + case 2: + + for (CdExperimentalEntity experimentalEntity : list) { + CdExperimentalEntityVo vo = new CdExperimentalEntityVo(); + System.out.println("打印:>>>>>>>" + experimentalEntity.getId()); + vo.setId(experimentalEntity.getId()); + vo.setExchangeRate(experimentalEntity.getExchangeRate()); + vo.setSampleData(experimentalEntity.getSampleData()); + vo.setConfidenceLevel(experimentalEntity.getConfidenceLevel()); + vo.setValidPeriod(experimentalEntity.getValidPeriod()); + vo.setTrendChart(experimentalEntity.getTrendChart()); + vo.setProfitLossDistribution(experimentalEntity.getProfitLossDistribution()); + vo.setCreatTime(experimentalEntity.getCreatTime()); + + System.out.println("赋值前打印:" + vo); + + voList.add(vo); + } + + + // 告诉浏览器用什么软件可以打开此文件 + response.setHeader("content-Type", "application/vnd.ms-excel"); + // 下载文件的默认名称 + response.setHeader("Content-Disposition", "attachment;filename=" + URLEncoder.encode("实验数据(蒙特卡洛)", "UTF-8") + ".xls"); + //编码 + response.setCharacterEncoding("UTF-8"); + Workbook workbook1 = ExcelExportUtil.exportExcel(new ExportParams(), CdExperimentalEntityVo.class, voList); + workbook1.write(response.getOutputStream()); + break; + } + } + return null; + + + } + + +} + + + diff --git a/src/main/java/com/msdw/tms/service/impl/CdFuturesConfigureServiceImpl.java b/src/main/java/com/msdw/tms/service/impl/CdFuturesConfigureServiceImpl.java new file mode 100644 index 0000000..52169c3 --- /dev/null +++ b/src/main/java/com/msdw/tms/service/impl/CdFuturesConfigureServiceImpl.java @@ -0,0 +1,964 @@ +package com.msdw.tms.service.impl; + +import com.baomidou.mybatisplus.core.conditions.query.QueryWrapper; +import com.baomidou.mybatisplus.core.conditions.update.UpdateWrapper; +import com.baomidou.mybatisplus.extension.service.impl.ServiceImpl; +import com.msdw.tms.common.utils.MoneyConversionUtil; +import com.msdw.tms.common.utils.R; +import com.msdw.tms.common.utils.date.DateUtils; +import com.msdw.tms.common.utils.py.PyUtil; +import com.msdw.tms.common.utils.trading_rules.algorithm; +import com.msdw.tms.dao.*; +import com.msdw.tms.entity.*; +import com.msdw.tms.entity.vo.CdFuturesConfigureEntityVo; +import com.msdw.tms.model.resp.CdAfterHedgingResp; +import com.msdw.tms.model.resp.CdBeforeHedgingResp; +import com.msdw.tms.model.resp.CdHoldPositionInfoResp; +import com.msdw.tms.model.resp.CdTransferWarehouseDetailResp; +import com.msdw.tms.service.CdFuturesConfigureService; +import org.springframework.data.redis.core.RedisTemplate; +import org.springframework.stereotype.Service; + +import javax.annotation.Resource; +import java.io.IOException; +import java.math.BigDecimal; +import java.util.HashMap; +import java.util.List; +import java.util.Map; + +/** + * @描述:期货资产头寸配置 服务类 + * @作者: Rong + * @日期: 2020-10-10 + */ +@Service("cdFuturesConfigureService") +public class CdFuturesConfigureServiceImpl extends ServiceImpl implements CdFuturesConfigureService { + + + @Resource + public QhscGangjiaosuoDao qhscGangjiaosuoDao; + + @Resource + public CdFuturesConfigureDao futuresConfigureDao; + + @Resource + public CdUserOptionAccountDao accountDao; + + @Resource + public CdBankStatementsDao bankStatementsDao; + + @Resource + public CdTransferWarehouseRecordDao transferWarehouseRecordDao; + + @Resource + public RedisTemplate template; + @Resource + public WhscRenminbipinzhongDao renminbipinzhongDao; + + //开仓处理 + public R openPosition(CdFuturesConfigureEntity entity) { + try { + + //判断返回上一步重新开仓的情况下 + + //1.查询该用户有没有建仓信息 + QueryWrapper queryWrapper = new QueryWrapper(); + queryWrapper.eq("user_id", entity.getUserId()); + CdFuturesConfigureEntity check = baseMapper.selectOne(queryWrapper); + + //check不为空的情况下说明有开仓信息 再看有没有修改参数 + // 修改了就删除当前的开仓信息 + if (check != null) { + //先查看流水表要返回的金额 + QueryWrapper wrapper = new QueryWrapper<>(); + wrapper.eq("user_id", entity.getUserId()); + wrapper.eq("transfer_type", "2"); + wrapper.eq("type", "2").last("limit 0,1"); + CdBankStatementsEntity get = bankStatementsDao.selectOne(wrapper); + + //获取到第一条改变前的金额 + if (get != null) { + //将金额回滚到改变前的金额 + + //做修改账户金额操作 + UpdateWrapper updateWrapper2 = new UpdateWrapper(); + updateWrapper2.set("balance", get.getBeforeAmount()); + //修改占用保证金 getPreFreezingMargin + updateWrapper2.set("deposit_balance", 0); + updateWrapper2.set("forzen_balance", 0); + updateWrapper2.eq("user_id", entity.getUserId()); + int updateAssets = accountDao.update(null, updateWrapper2); + + //删除(开仓、平仓、调仓)操作流水表 + + QueryWrapper delRecord = new QueryWrapper<>(); + delRecord.eq("cid", check.getId()); + int delRecodeByOpen = transferWarehouseRecordDao.delete(delRecord); + + //删除头寸表记录 + int delOpen = baseMapper.deleteById(check.getId()); + + + //删除账户流水表记录 + Map map = new HashMap<>(); + //删除类型为流水的 : (1:转账 2:流水) + map.put("transfer_type", "2"); + map.put("user_id", entity.getUserId()); + + int delAccount = bankStatementsDao.deleteByMap(map); + + if (updateAssets <= 0 && delRecodeByOpen <= 0 && delOpen <= 0 && delAccount <= 0) { + return R.error(); + } + } + + + } + + + String getDate = template.opsForValue().get("date:userId_" + entity.getUserId()); + //python表:根据合约id查询合约相关数据 + QhscGangjiaosuoEntity qh = qhscGangjiaosuoDao.selectById(entity.getPid()); + + if (qh == null) { + return R.error("暂时没有该期货合约的最新价"); + } + + //委托价格,委托数量为空默认为合约当前最新价格,委托数量为1手 + if (entity.getEntrustPrice() == null && entity.getEntrustNumber() == null) { + //设置委托价格 + entity.setEntrustPrice(qh.getLastPrice()); + //设置委托数量 + entity.setEntrustNumber(1); + + } else if (entity.getEntrustPrice() != null && entity.getEntrustNumber() == null) { + //委托数量不为空时,委托数量为null 默认1手 + + //设置委托价格 + entity.setEntrustPrice(entity.getEntrustPrice()); + //设置委托数量 + entity.setEntrustNumber(1); + } else { + //根据前端传的值设置 + entity.setEntrustPrice(entity.getEntrustPrice()); + entity.setEntrustNumber(entity.getEntrustNumber()); + + } + //设置最新价格 + entity.setNewestPrice(qh.getLastPrice()); + + //委托价 + double entrustPrice = entity.getEntrustPrice().doubleValue(); + + //最新价 + double newestPrice = entity.getNewestPrice().doubleValue(); + + /** + * 期货的开仓成交规则: + * 多方情况下,委托价格大于等于最新价,以最新价成交; + * 空方情况下,委托价格小于等于最新价,以最新价成交。 + */ + //交易方向(0空头,1多头) + switch (entity.getTradingDirection()) { + + case 0: + //空方情况下:委托价格小于等于最新价,以最新价成交 + // entrustPrice > newestPrice + if (entrustPrice > newestPrice) { + return R.error("开仓失败,委托价格大于最新价"); + } + break; + case 1: + //多方情况下:委托价格大于等于最新价,以最新价成交 + // entrustPrice < newestPrice + if (entrustPrice < newestPrice) { + return R.error("开仓失败,委托价格小于最新价"); + } + break; + + } + + //每手交易单位(合约面值) + Integer tradingUnit = 0; + + + tradingUnit = setCompany(qh.getName()); + + //设置最新价格 + //entity.setNewestPrice(qh.getLastPrice()); + + + //所需资金 = 委托价格 * 每手交易单位 * 委托数量(手数) + BigDecimal totalAmount = algorithm.getFundsRequired(entity.getEntrustPrice(), BigDecimal.valueOf(entity.getEntrustNumber()), tradingUnit); + + + // + + //所需资金:与前端传来参数对比 需要资金 = 委托价格 * 每手交易单位 * 委托数量(手数) + if (entity.getFundingNeeded().compareTo(totalAmount) == 0) { + //a.compareTo(b) == 0 + entity.setFundingNeeded(totalAmount); + + //浮动盈亏=(当天结算价—昨日结算价)* 委托数量 * 合约面值 + BigDecimal getFloatingPL = algorithm.getFloatingPL(qh.getLastPrice(), qh.getDayUp(), new BigDecimal(entity.getEntrustNumber()), tradingUnit); + entity.setFloatingPl(getFloatingPL); + + //获取最后交易日 + String tradeTime = algorithm.getLastTradingDay(qh.getName()); + entity.setTradeTime(tradeTime); + + //pre_freezing_margin:预冻结保证金 = 外汇期货合约价格 * 合约面值 * 手数 * 保证金比例 + BigDecimal getPreFreezingMargin = algorithm.getPreFreezingMargin(qh.getLastPrice(), new BigDecimal(tradingUnit), qh.getName().substring(0, 8)); + entity.setPreFreezingMargin(getPreFreezingMargin); + + //pre_freezing_frozen:预冻结手续费 = 委托数量(手)* 费用标准 + BigDecimal getPreFreezingServiceCharge = algorithm.getPreFreezingServiceCharge(new BigDecimal(entity.getEntrustNumber())); + entity.setPreFreezingFrozen(getPreFreezingServiceCharge); + + + //frozen_price:冻结资金 = 预计冻结保证金+预冻结手续费 + BigDecimal frozen_price = getPreFreezingMargin.add(getPreFreezingServiceCharge); + entity.setFrozenPrice(frozen_price); + + + //获取当前期权账户可用资金 + QueryWrapper queryWrapper2 = new QueryWrapper(); + queryWrapper2.eq("user_id", entity.getUserId()); + //getBalance:获取到当前期权账户可用资金 + BigDecimal nowBalance = accountDao.selectOne(queryWrapper2).getBalance(); + + + //deduction:要扣除的金额 = 冻结资金 + 所需资金 + BigDecimal deduction = frozen_price.add(totalAmount); + + //modifyPrice:要修改的金额(需要扣除的金额 = 当前账户可用资金 - 要扣除的金额) + BigDecimal modifyPrice = nowBalance.subtract(deduction); + + //判断当前可用余额是否足以扣除本次交易金额 >= + double nowBalance1 = nowBalance.doubleValue(); + double deduction1 = deduction.doubleValue(); + if (nowBalance1 < deduction1) { + return R.error("可用资金不足,开仓失败"); + } + + //设置可交易数量 = 当前的委托数量 + entity.setTradableNumber(new BigDecimal(entity.getEntrustNumber())); + + //做修改账户金额操作 + UpdateWrapper updateWrapper2 = new UpdateWrapper(); + updateWrapper2.set("balance", modifyPrice); + //修改占用保证金 getPreFreezingMargin + updateWrapper2.set("deposit_balance", getPreFreezingMargin); + updateWrapper2.eq("user_id", entity.getUserId()); + int updateAssets = accountDao.update(null, updateWrapper2); + + + //添加期权账户流水记录 + CdBankStatementsEntity bankStatements2 = new CdBankStatementsEntity(); + bankStatements2.setType(2);//类型(1银行账户 2期货账户) + bankStatements2.setCoinType("人民币"); + bankStatements2.setBeforeAmount(nowBalance);//改变前金额 + bankStatements2.setAmountMoney(deduction);//这次操作的金额 + bankStatements2.setAfterAmount(modifyPrice);//改变后的金额 + bankStatements2.setTransferType(2);//流水类型(1:转账 2:流水) + bankStatements2.setCreateTime(getDate); + bankStatements2.setUserId(entity.getUserId()); + bankStatements2.setRemark("开仓"); + int addBankStatements2 = bankStatementsDao.insert(bankStatements2); + + + if (updateAssets <= 0 && addBankStatements2 <= 0) { + return R.error("开仓失败"); + } + + + //设置当前时间 + entity.setCreateTime(getDate); + //设置状态(0开仓,1平仓) + entity.setStatus(0); + //是否自动平仓(0否,1是) + entity.setType(0); + this.save(entity); + + //往调仓记录表添加开仓记录 + CdTransferWarehouseRecordEntity record = new CdTransferWarehouseRecordEntity(); + //开仓表id + record.setCid(entity.getId()); + record.setUserId(entity.getUserId()); + record.setDirection(0);//买卖方向(0开仓 1平仓) + record.setType(0);//委托类型(0市价 1限价) + record.setNumber(entity.getTradableNumber());//委托手数 + + + //getMarketValue:市值 = 外汇期货合约价格 * 委托数量 * 合约面值 + //BigDecimal getMarketValue = algorithm.getMarketValue(getNowPrice, configure.getEntrustNumber(), number); + + record.setBalance(deduction);//市值>>>金额 + record.setCreateTime(getDate); + transferWarehouseRecordDao.insert(record); + + + return R.ok(); + } + return R.error("所需资金对不上"); + + + } catch (Exception e) { + e.printStackTrace(); + return R.error(e.getMessage()); + } + } + + + //外汇期货持仓情况 + public CdHoldPositionInfoResp myPosition(int userId) { + + try { + QueryWrapper wrapper = new QueryWrapper<>(); + wrapper.eq("user_id", userId); + CdFuturesConfigureEntity entity = this.getOne(wrapper); + + + //查询合约表信息 + QhscGangjiaosuoEntity qh = qhscGangjiaosuoDao.selectById(entity.getPid()); + entity.setEname(qh.getEName()); + entity.setName(qh.getName()); + + CdHoldPositionInfoResp resp = new CdHoldPositionInfoResp(); + resp.setId(entity.getId()); + resp.setUserId(entity.getUserId()); + //交易方向(0空头 卖,1多头 买) + if (entity.getTradingDirection() == 0) { + resp.setTradingDirection("卖"); + } else if (entity.getTradingDirection() == 1) { + resp.setTradingDirection("买"); + } + + resp.setEntrustPrice(entity.getEntrustPrice()); + resp.setEntrustNumber(entity.getEntrustNumber()); + //持仓状态(0.开仓 1.平仓) + if (entity.getStatus() == 0) { + resp.setStatus("开仓"); + } else if (entity.getStatus() == 1) { + resp.setStatus("平仓"); + } + + resp.setCreateTime(entity.getCreateTime().substring(0, 10)); + resp.setUpdateTime(entity.getUpdateTime()); + resp.setTradeTime(entity.getTradeTime()); + resp.setName(entity.getName()); + resp.setEname(entity.getEname()); + resp.setPreFreezingMargin(entity.getPreFreezingMargin()); + + + //合约面值 + Integer tradingUnit = setCompany(entity.getName()); + + //BigDecimal todayPrice, BigDecimal yesterdayPrice, BigDecimal commissionQuantity, Integer contractFaceValue + //浮动盈亏=(当天结算价—昨日结算价)* 委托数量 * 合约面值(1份合约=一手,一手=?吨) + BigDecimal getFloatingPL = algorithm.getFloatingPL(qh.getLastPrice(), qh.getDayUp(), BigDecimal.valueOf(tradingUnit), entity.getEntrustNumber()); + resp.setFloatingPl(getFloatingPL); + + + return resp; + } catch (Exception e) { + e.printStackTrace(); + return null; + } + + } + + + /** + * 平仓操作 + * 需求:平仓前判断行情滚动时间是不等于最后交易日,行情滚动是最后交易日当天才能滚动 + * 平仓,选择当天平台的日期,已当天的行情价格,卖出或者买入相同的期货合约平仓。 + * 外汇期货盈亏=(平仓时的外汇汇率价格-下单时外汇汇率价格) * 委托数量 * 合约面值。 + * + * @param id + * @return + */ + @Override + public R buyIn(int id, String date, Integer userId) { + try { + + String getDate = template.opsForValue().get("date:userId_" + userId); + //根据id查询开仓后的信息 + CdFuturesConfigureEntity configure = baseMapper.selectById(id); + + //判断传的行情滚动日期是否等于最后交易日 + /*if (!date.trim().equals(configure.getTradeTime().substring(0, 10))) { + return R.error("行情滚动时间要与最后交易日一致"); + }*/ + + + //根据合约id表查询合约信息 + QhscGangjiaosuoEntity qh = qhscGangjiaosuoDao.selectById(configure.getPid()); + //获取该合约的代码 + String ename = qh.getEName(); + //获取每一手的单位 + Integer number = setCompany(qh.getName()); + + //根据合约代码查询平仓最后交易日那天的的汇率信息 + QueryWrapper queryWrapper2 = new QueryWrapper(); + queryWrapper2.eq("e_name", ename); + queryWrapper2.eq("date", date); + + QhscGangjiaosuoEntity now = qhscGangjiaosuoDao.selectOne(queryWrapper2); + if (now == null) { + //查询不到合约表当天的信息时候弹出 + return R.error("不在交易时段内,无法进行交易"); + } + + //查询合约当天外汇汇率价格 + double getNowPrice = now.getLastPrice().doubleValue(); + + //查询开仓时候的委托价格 + double entrustPrice = configure.getEntrustPrice().doubleValue(); + + /** + * 期货的平仓成交规则: + * configure.getTradingDirection() : 交易方向(0空头,1多头) + * 空方情况下,可交易数量为空方合约持仓总量,委托价格大于等于最新价,以最新价成交。 + * 多方情况下,可交易数量为多方合约持仓总量,委托价格小于等于最新价,以最新价成交; + */ + //TODO 暂时注释 + /* switch (configure.getTradingDirection()) { + + case 0: + //空方情况下:委托价格大于等于最新价,以最新价成交。 + if (entrustPrice < getNowPrice) { + return R.error("平仓失败,委托价格小于最新价"); + } + break; + case 1: + //多方情况下:委托价格小于等于最新价,以最新价成交; + if (entrustPrice > getNowPrice) { + return R.error("平仓失败,委托价格大于最新价"); + } + break; + + }*/ + + + //外汇期货盈亏=(平仓时的外汇汇率价格(等同于当天合约的最新价)-下单时外汇汇率价格(开仓时候的委托价)) * 委托数量 * 合约面值。 + BigDecimal pl = algorithm.get_wh_pl(BigDecimal.valueOf(getNowPrice), configure.getEntrustPrice(), new BigDecimal(configure.getEntrustNumber()), new BigDecimal(number)); + + //getMarketValue:市值 = 外汇期货合约价格 * 委托数量 * 合约面值 + BigDecimal getMarketValue = algorithm.getMarketValue(BigDecimal.valueOf(getNowPrice), configure.getEntrustNumber(), number); + + CdFuturesConfigureEntity entity = new CdFuturesConfigureEntity(); + //设置平仓时间 + entity.setUpdateTime(date); + //设置状态(0.开仓 1平仓) + entity.setStatus(1); + //设置平仓价格:市场当前价 + entity.setCloseRate(BigDecimal.valueOf(getNowPrice)); + //设置盈亏 + entity.setFloatingPl(pl); + entity.setId(id); + + //平仓时 修改冻结资金为0 + BigDecimal frozenPrice = configure.getFrozenPrice(); + entity.setFrozenPrice(new BigDecimal(0)); + + int update = baseMapper.updateById(entity); + + + //获取当前期权账户可用资金 + QueryWrapper queryWrapper3 = new QueryWrapper(); + queryWrapper3.eq("user_id", configure.getUserId()); + //nowBalance:获取到当前期权账户可用资金 + BigDecimal nowBalance = accountDao.selectOne(queryWrapper3).getBalance(); + + //改变后的金额 再加上冻结的资金 + BigDecimal newPrice = nowBalance.add(getMarketValue).add(frozenPrice); + + + //做修改账户金额操作 + UpdateWrapper modify = new UpdateWrapper(); + //平仓后加金额 = 当前可用余额 + 市值 + modify.set("balance", newPrice); + modify.eq("user_id", configure.getUserId()); + int updateAssets = accountDao.update(null, modify); + + + //添加期权账户流水记录 + CdBankStatementsEntity bankStatements2 = new CdBankStatementsEntity(); + bankStatements2.setType(2);//类型(1银行账户 2期货账户) + bankStatements2.setCoinType("人民币"); + bankStatements2.setBeforeAmount(nowBalance);//改变前金额 + bankStatements2.setAmountMoney(getMarketValue);//这次操作的金额 + bankStatements2.setAfterAmount(newPrice);//改变后的金额 + bankStatements2.setTransferType(2);//流水类型(1:转账 2:流水) + bankStatements2.setCreateTime(configure.getTradeTime()); + bankStatements2.setRemark("平仓"); + bankStatements2.setUserId(configure.getUserId()); + int addBankStatements2 = bankStatementsDao.insert(bankStatements2); + + + //往调仓记录表添加平仓记录 + CdTransferWarehouseRecordEntity record = new CdTransferWarehouseRecordEntity(); + //开仓表id + record.setCid(configure.getId()); + record.setUserId(configure.getUserId()); + record.setDirection(1);//买卖方向(0开仓 1平仓) + record.setType(0);//委托类型(0市价 1限价) + record.setNumber(configure.getTradableNumber());//委托手数 + record.setBalance(getMarketValue);//市值>>>金额 + record.setCreateTime(configure.getTradeTime()); + int addTransferWarehouseRecor = transferWarehouseRecordDao.insert(record); + + + if (addTransferWarehouseRecor <= 0 && updateAssets <= 0 && addBankStatements2 <= 0 && update <= 0) { + return R.error("平仓失败"); + } + return R.ok(); + } catch (Exception e) { + e.printStackTrace(); + return R.error(e.getMessage()); + } + } + + + //调仓前展示详情 + /*@Override + public CdTransferWarehouseDetailResp transferWarehouseByDetail(int id) { + + CdFuturesConfigureEntity futuresConfigure = baseMapper.selectById(id); + + //python表:根据合约id查询合约相关数据 + QhscGangjiaosuoEntity qh = qhscGangjiaosuoDao.selectById(futuresConfigure.getPid()); + futuresConfigure.setName(qh.getName()); + futuresConfigure.setEname(qh.getEName()); + futuresConfigure.setLastPrice(qh.getLastPrice()); + futuresConfigure.setU(qh.getU()); + futuresConfigure.setDayUp(qh.getDayUp()); + + + String have = qh.getHava(); + BigDecimal getHave = new BigDecimal(0); + if (have.contains("万")) { + have = have.substring(0, have.length() - 1); + double getHaveByDouble = Double.valueOf(have); + + getHave = MoneyConversionUtil.moneyConversion(getHaveByDouble); + + } + //用户选择的买卖方向为开仓时候:查python的持仓总量 + futuresConfigure.setTradableQuantityByBuy(getHave); + //选择为平仓时候:查自己的持仓总量 + futuresConfigure.setTradableQuantityBySell(futuresConfigure.getTradableNumber()); + + + //获取当前期权账户可用资金 + QueryWrapper queryWrapper3 = new QueryWrapper(); + queryWrapper3.eq("user_id", futuresConfigure.getUserId()); + //nowBalance:获取到当前期权账户可用资金 + BigDecimal nowBalance = accountDao.selectOne(queryWrapper3).getBalance(); + futuresConfigure.setAvailableFunds(nowBalance); + return futuresConfigure; + } +*/ + + public static void main(String[] args) { + String str = "2020-10-30 00:00:00"; + System.out.println(str.substring(0, 10)); + } + + //调仓前展示详情 + @Override + public CdTransferWarehouseDetailResp transferWarehouseByDetail(int id) { + try { + CdFuturesConfigureEntity configure = baseMapper.selectById(id); + CdTransferWarehouseDetailResp resp = new CdTransferWarehouseDetailResp(); + //python表:根据合约id查询合约相关数据 + QhscGangjiaosuoEntity qh = qhscGangjiaosuoDao.selectById(configure.getPid()); + + String have = qh.getHava(); + BigDecimal getHave = new BigDecimal(0); + if (have.contains("万")) { + have = have.substring(0, have.length() - 1); + double getHaveByDouble = Double.valueOf(have); + + getHave = MoneyConversionUtil.moneyConversion(getHaveByDouble); + + } + getHave = new BigDecimal(have); + + + //获取当前期权账户可用资金 + QueryWrapper queryWrapper = new QueryWrapper(); + queryWrapper.eq("user_id", configure.getUserId()); + //nowBalance:获取到当前期权账户可用资金 + BigDecimal nowBalance = accountDao.selectOne(queryWrapper).getBalance(); + + + //id + resp.setId(configure.getId()); + //交易方向 + resp.setTradingDirection(configure.getTradingDirection()); + //合约主键 + resp.setPid(configure.getPid()); + //开仓委托价 + resp.setNewestPrice(configure.getNewestPrice()); + //名称 + resp.setName(qh.getName()); + //代码 + resp.setEname(configure.getEname()); + //市价(最新价) + resp.setLastPrice(qh.getLastPrice()); + //涨跌幅 + resp.setU(qh.getU()); + //昨结 + resp.setDayUp(qh.getDayUp()); + //买卖方向为开仓时候:可交易数量为Python表的持仓总量 + resp.setTradableQuantityByBuy(getHave); + //买卖方向为平仓时候:可交易数量为自己的持仓总量 + resp.setTradableQuantityBySell(configure.getTradableNumber()); + //当前期权账户可用资金 + resp.setAvailableFunds(nowBalance); + //买入价 + resp.setBuyPrice(qh.getBuyPrice()); + //卖出价 + resp.setCellPrice(qh.getCellPrice()); + //买量 + resp.setBuy(qh.getBuy()); + //卖量 + resp.setCell(qh.getCell()); + //总量 + resp.setSuoyou(qh.getSuoyou()); + //代码 + resp.setEname(qh.getEName()); + //涨跌额 + resp.setUdPrice(qh.getUdPrice()); + + + return resp; + } catch (NumberFormatException e) { + e.printStackTrace(); + return null; + } + } + + //外汇期货平仓绩效 + @Override + public CdFuturesConfigureEntityVo buyInAchievements(int id, Integer userId) { + String getDate = template.opsForValue().get("date:userId_" + userId); + Integer getPid = baseMapper.selectById(id).getPid(); + + //每手交易单位 + Integer tradingUnit = 0; + //python表:根据合约id查询合约相关数据 + QhscGangjiaosuoEntity qh = qhscGangjiaosuoDao.selectById(getPid); + + tradingUnit = setCompany(qh.getName()); + + + //期货开仓平仓记录 + CdFuturesConfigureEntity entity = baseMapper.selectById(id); + + + //开仓后资产市值:开仓价格 * 委托数量 * 合约面值 + BigDecimal marketValueByOpenPosition = algorithm.getMarketValue(entity.getEntrustPrice(), entity.getEntrustNumber(), tradingUnit); + + //平仓后资产市值:平仓价格 * 委托数量 * 合约面值 + BigDecimal marketValueByClosePosition = algorithm.getMarketValue(entity.getCloseRate(), entity.getEntrustNumber(), tradingUnit); + + + CdFuturesConfigureEntityVo vo = new CdFuturesConfigureEntityVo(); + vo.setId(entity.getId()); + //代码 + vo.setEName(qh.getEName()); + vo.setName(qh.getName()); + + if (entity.getTradingDirection() == 0) { + vo.setTradingDirection("做空"); + } else if (entity.getTradingDirection() == 1) { + vo.setTradingDirection("做多"); + } + + + //资产市值1 + vo.setMarketValue1(marketValueByOpenPosition); + //资产市值2 + vo.setMarketValue2(marketValueByClosePosition); + + //开仓时间 + vo.setCreateTime(DateUtils.dateForByStr(entity.getCreateTime())); + + //平仓时间 + vo.setUpdateTime(DateUtils.dateForByStr(entity.getUpdateTime())); + + //数量 + vo.setEntrustNumber(entity.getEntrustNumber()); + + //外汇盈亏=(平仓时的外汇汇率价格 - 下单时外汇汇率价格) * 委托数量 * 合约面值。 + BigDecimal pl = algorithm.get_wh_pl(entity.getCloseRate(), entity.getNewestPrice(), BigDecimal.valueOf(entity.getEntrustNumber()), BigDecimal.valueOf(tradingUnit)); + + vo.setWh_pl(pl); + vo.setCloseRate(entity.getCloseRate()); + vo.setEntrustPrice(entity.getEntrustPrice()); + + + return vo; + } + + + //外汇现货盈亏 + @Override + public CdBeforeHedgingResp beforeHedging(int userId) { + + //根据用户id查询当前的pid 以及 开仓平仓时间 + QueryWrapper wrapper = new QueryWrapper(); + wrapper.eq("user_id", userId); + CdFuturesConfigureEntity configureEntity = baseMapper.selectOne(wrapper); + + + //根据pid查询合约名称 + QhscGangjiaosuoEntity qh = qhscGangjiaosuoDao.selectById(configureEntity.getPid()); + + + //合约名称 + String name = qh.getName().substring(0, 2); + + + name += "人民币中间价"; + + //获取代码 + QueryWrapper wrapper1 = new QueryWrapper(); + wrapper1.like("name", name).last("limit 0,1"); + WhscRenminbipinzhongEntity whsc = renminbipinzhongDao.selectOne(wrapper1); + + + //每手交易单位 + Integer tradingUnit = setCompany(qh.getName().substring(0, 2) + "兑人民币期货"); + + CdBeforeHedgingResp resp = new CdBeforeHedgingResp(); + + //开仓交易时间 + String start = DateUtils.dateForByStr(configureEntity.getCreateTime()); + //平仓交易时间 + String end = DateUtils.dateForByStr(configureEntity.getUpdateTime()); + + //获取开仓时间当天的现货价格 + QueryWrapper getDateWapper = new QueryWrapper(); + getDateWapper.eq("name", name); + getDateWapper.eq("date", start); + WhscRenminbipinzhongEntity getDate1 = renminbipinzhongDao.selectOne(getDateWapper); + + //获取平仓时间当天的现货价格 + QueryWrapper getDateWapper1 = new QueryWrapper(); + getDateWapper1.eq("name", name); + getDateWapper1.eq("date", end); + WhscRenminbipinzhongEntity getDate2 = renminbipinzhongDao.selectOne(getDateWapper1); + + + //开仓金额(外币) = 汇率 * 合约面值 + BigDecimal foreignCurrencyByOpen = algorithm.getForeignCurrency(BigDecimal.valueOf(getDate1.getLastPrice()), new BigDecimal(10000000)); + + //金额(外币) = 汇率价格 * 合约面值 + BigDecimal foreignCurrencyByClose = algorithm.getForeignCurrency(BigDecimal.valueOf(getDate2.getLastPrice()), new BigDecimal(10000000)); + + + //盈亏 + BigDecimal profitLoss = new BigDecimal(0).setScale(2, BigDecimal.ROUND_HALF_UP); + + profitLoss = foreignCurrencyByOpen.subtract(foreignCurrencyByClose); + + + //交易方向(0空头 卖,1多头 买) + if (configureEntity.getTradingDirection() == 0) { + resp.setTradingDirection("卖"); + } else if (configureEntity.getTradingDirection() == 1) { + resp.setTradingDirection("买"); + } + resp.setProfitLoss(profitLoss); + resp.setName(qh.getName().substring(0, 6)); + + + //金额外币(开仓) + resp.setForeignCurrencyByOpen(new BigDecimal(10000000)); + //金额外币(平仓) + resp.setForeignCurrencyByClose(new BigDecimal(10000000)); +/* + //开仓所需资金 + BigDecimal openNeed = configureEntity.getEntrustPrice().multiply(foreignCurrencyByOpen); + //平仓所需资金 + BigDecimal closeNeed = configureEntity.getCloseRate().multiply(foreignCurrencyByClose);*/ + + //开仓所需资金 + BigDecimal openNeed = new BigDecimal(getDate1.getLastPrice()).multiply(foreignCurrencyByOpen); + //平仓所需资金 + BigDecimal closeNeed = new BigDecimal(getDate2.getLastPrice()).multiply(foreignCurrencyByClose); + + resp.setNeededPriceByOpen(openNeed); + resp.setNeededPriceByClose(closeNeed); + resp.setCreateTime(start); + resp.setUpdateTime(end); + resp.setExchangeRate1(new BigDecimal(getDate1.getLastPrice())); + resp.setExchangeRate2(new BigDecimal(getDate2.getLastPrice())); + return resp; + } + + //对冲后损益情况 + @Override + public CdAfterHedgingResp afterHedging(int userId) { + try { + CdAfterHedgingResp resp = new CdAfterHedgingResp(); + + QueryWrapper queryWrapper = new QueryWrapper<>(); + queryWrapper.eq("user_id", userId); + //查询当前开仓信息 + CdFuturesConfigureEntity config = baseMapper.selectOne(queryWrapper); + + //开仓时间 + String startTime = DateUtils.dateForByStr(config.getCreateTime()); + //样本区间截止时间:开仓时间后三个月 + String endTime = DateUtils.getAfterMonth(startTime, 3); + + + QhscGangjiaosuoEntity qhEntity = qhscGangjiaosuoDao.selectById(config.getPid()); + + + //根据开仓时间-开仓时间后三个月查询 + QueryWrapper qhWarapper = new QueryWrapper<>(); + qhWarapper.eq("e_name", qhEntity.getEName()); + qhWarapper.ge("date", startTime).le("date", endTime); + + List rmb = qhscGangjiaosuoDao.selectList(qhWarapper); + String code = ""; + String name = ""; + + for (QhscGangjiaosuoEntity e : rmb) { + + String s = String.valueOf(e.getLastPrice()); + code += s + ","; + name = e.getName(); + } + code = code.substring(0, code.length() - 1); + + + //每手交易单位(合约面值) + Integer tradingUnit = setCompany(name); + + //confidenceLevel 置信水平 + String confidenceLevel = "0.95"; + //validity 持有效 + String validity = "90"; + //实验次数 + String experimentsNumber = "1000"; + + + //Z是传入进来的下单数*期货合约面值 + Integer Z = config.getEntrustNumber() * tradingUnit; + + + String afterBefore = ""; + String afterURL = ""; + String beforeURL = ""; + do { + //I为次数,t是天数,Z是传入进来的下单数*期货合约面值,arf为置信水平, + afterBefore = PyUtil.getCodeByPhoto(PyUtil.path, PyUtil.beforeAndAfter, experimentsNumber, validity, String.valueOf(Z), confidenceLevel, code); + + if (afterBefore.length() > 0) { + + String[] split = afterBefore.split(","); + String p1 = split[0]; + String p2 = split[1]; + afterURL = p2; + beforeURL = p1; + } + + } while (afterBefore.isEmpty()); + + + resp.setBeforeHedgingUrl(beforeURL); + resp.setAfterHedgingUrl(afterURL); + resp.setName(name.substring(0, 6)); + resp.setStartTime(startTime); + resp.setEndTime(endTime); + resp.setEffective(validity); + resp.setConfidenceLevel(confidenceLevel); + resp.setExperimentNum(experimentsNumber); + + + return resp; + } catch (IOException e) { + e.printStackTrace(); + log.error(e.getMessage()); + } + + + return null; + } + + @Override + public boolean delOpenPosition(int id, int userId) { + //删除开仓信息 + int flag = baseMapper.deleteById(id); + if (flag == 1) { + //先查看流水表要返回的金额 + + QueryWrapper wrapper = new QueryWrapper<>(); + wrapper.eq("user_id", userId); + wrapper.eq("transfer_type", "2"); + + CdBankStatementsEntity bankStatementsEntity = bankStatementsDao.selectOne(wrapper); + + + //删除账户流水表记录 + Map map = new HashMap<>(); + //删除类型为流水的 : (1:转账 2:流水) + map.put("transfer_type", "2"); + map.put("user_id", userId); + + bankStatementsDao.deleteByMap(map); + + + //头寸表记录 + //开仓平仓调仓记录表 + //修改用户账户今天为原来的 + + } + + return false; + } + + + //设置交易单位(合约面值) + public static Integer setCompany(String getName) { + try { + //每手交易单位 + Integer tradingUnit = 0; + //设置每手交易单位 + switch (getName.substring(0, 8)) { + case algorithm.AUDAndRMB: + tradingUnit = algorithm.AUDExchangeRMB; + break; + case algorithm.EURAndRMB: + tradingUnit = algorithm.EURExchangeRMB; + break; + case algorithm.JPYAndRMB: + tradingUnit = algorithm.JPYExchangeRMB; + break; + case algorithm.RMBAndUSD: + tradingUnit = algorithm.RMBExchangeUSD; + break; + case algorithm.USDAndRMB: + tradingUnit = algorithm.USDExchangeRMB; + break; + + } + return tradingUnit; + } catch (Exception e) { + e.printStackTrace(); + return -1; + } + } + + +} + + + diff --git a/src/main/java/com/msdw/tms/service/impl/CdPointChildrenServiceImpl.java b/src/main/java/com/msdw/tms/service/impl/CdPointChildrenServiceImpl.java new file mode 100644 index 0000000..6c57194 --- /dev/null +++ b/src/main/java/com/msdw/tms/service/impl/CdPointChildrenServiceImpl.java @@ -0,0 +1,24 @@ +package com.msdw.tms.service.impl; + +import com.baomidou.mybatisplus.extension.service.impl.ServiceImpl; +import com.msdw.tms.dao.CdPointChildrenDao; +import com.msdw.tms.entity.CdPointChildren; +import com.msdw.tms.service.CdPointChildrenService; +import org.springframework.beans.factory.annotation.Autowired; +import org.springframework.stereotype.Service; + +/** + * @描述:判分点值子级表 服务类 + * @作者: Rong + * @日期: 2021-01-12 + */ +@Service +public class CdPointChildrenServiceImpl extends ServiceImpl implements CdPointChildrenService { + + @Autowired + private CdPointChildrenDao mapper; + +} + + + diff --git a/src/main/java/com/msdw/tms/service/impl/CdPointServiceImpl.java b/src/main/java/com/msdw/tms/service/impl/CdPointServiceImpl.java new file mode 100644 index 0000000..e1d8479 --- /dev/null +++ b/src/main/java/com/msdw/tms/service/impl/CdPointServiceImpl.java @@ -0,0 +1,24 @@ +package com.msdw.tms.service.impl; + +import com.baomidou.mybatisplus.extension.service.impl.ServiceImpl; +import com.msdw.tms.dao.CdPointDao; +import com.msdw.tms.entity.CdPoint; +import com.msdw.tms.service.CdPointService; +import org.springframework.beans.factory.annotation.Autowired; +import org.springframework.stereotype.Service; + +/** + * @描述: 服务类 + * @作者: Rong + * @日期: 2021-01-11 + */ +@Service +public class CdPointServiceImpl extends ServiceImpl implements CdPointService { + + @Autowired + private CdPointDao dao; + +} + + + diff --git a/src/main/java/com/msdw/tms/service/impl/CdTransferWarehouseRecordServiceImpl.java b/src/main/java/com/msdw/tms/service/impl/CdTransferWarehouseRecordServiceImpl.java new file mode 100644 index 0000000..9526148 --- /dev/null +++ b/src/main/java/com/msdw/tms/service/impl/CdTransferWarehouseRecordServiceImpl.java @@ -0,0 +1,366 @@ +package com.msdw.tms.service.impl; + +import com.baomidou.mybatisplus.core.conditions.query.QueryWrapper; +import com.baomidou.mybatisplus.core.conditions.update.UpdateWrapper; +import com.baomidou.mybatisplus.extension.service.impl.ServiceImpl; +import com.msdw.tms.common.utils.R; +import com.msdw.tms.common.utils.trading_rules.algorithm; +import com.msdw.tms.dao.*; +import com.msdw.tms.entity.*; +import com.msdw.tms.service.CdTransferWarehouseRecordService; +import org.springframework.data.redis.core.RedisTemplate; +import org.springframework.stereotype.Service; + +import javax.annotation.Resource; +import java.math.BigDecimal; + +/** + * @描述:调仓记录表 服务类 + * @作者: Rong + * @日期: 2020-10-10 + */ +@Service("cdTransferWarehouseRecordService") +public class CdTransferWarehouseRecordServiceImpl extends ServiceImpl implements CdTransferWarehouseRecordService { + + @Resource + private CdUserOptionAccountDao accountDao; + @Resource + private CdFuturesConfigureDao futuresConfigureDao; + @Resource + public QhscGangjiaosuoDao qhscGangjiaosuoDao; + + @Resource + public CdBankStatementsDao bankStatementsDao; + + @Resource + public CdTransferWarehouseRecordDao transferWarehouseRecordDao; + @Resource + public RedisTemplate template; + + /** + * 开仓买入 平仓卖出 + *

+ * 多头下单后,可以选择调仓 + * 调仓成功的前提是期货期权账号可用资金>=本次调仓所需要的资金,调仓下单成功,否则,提示可用资金不足,调仓失败。(完成) + *

+ *

+ *

+ * 2.如果减仓(减仓的数量不超过持仓中的多头数量),扣除保证金,按照最终的委托数量核算市值,浮动盈亏(同上公式)。 + * 市值=外汇期货合约价格*(原持仓量- 本次调仓量)*合约面值,浮动盈亏=(当天结算价—昨日结算价)*(原持仓量-本次调仓量)*合约面值。 + *

+ *

+ * 空头下单后,可以选择调仓,如果加仓,按照多头下单,扣除保证金,按照最终的委托数 + * 量核算市值,浮动盈亏。如果减仓(减仓的数量不超过持仓中的空头数量),扣除保证金, + * 按照最终的委托数量核算市值,浮动盈亏(同上公式)。 + */ + + //调仓操作 + @Override + public R add(CdFuturesConfigureEntity entity) { + + try { + String getDate = template.opsForValue().get("date:userId_" + entity.getUserId()); + + /**可交易数量(用户选择的买卖方向为开仓时候:查python表的持仓总量/用户选择的买卖方向为平仓时候:查自己的持仓总量)*/ + CdFuturesConfigureEntity old = futuresConfigureDao.selectById(entity.getId()); + QhscGangjiaosuoEntity qh = qhscGangjiaosuoDao.selectById(old.getPid()); + //查python的持仓总量 + BigDecimal getPyNumber = new BigDecimal(qh.getHava()); + //自己的持仓总量 + BigDecimal getMeNumber = old.getTradableNumber(); + + + //根据合约代码查询当天的汇率信息 + QueryWrapper queryWrapper2 = new QueryWrapper(); + queryWrapper2.eq("e_name", qh.getEName()); + //TODO 调仓时间为选中的时间 + queryWrapper2.eq("date", getDate); + QhscGangjiaosuoEntity getNow = qhscGangjiaosuoDao.selectOne(queryWrapper2); + if (getNow == null) { + return R.error("暂时没有" + getDate + "的外汇信息"); + } + //当前调仓输入的委托价 + double entrustPrice = entity.getEntrustPrice().doubleValue(); + + //查询合约当天外汇汇率价格 + double getNowPrice = getNow.getLastPrice().doubleValue(); + + + //根据合约名称设置每手交易单位(合约面值) + Integer tradingUnit = CdFuturesConfigureServiceImpl.setCompany(qh.getName()); + + //获取当前期权账户可用资金 + QueryWrapper getPrice = new QueryWrapper(); + getPrice.eq("user_id", entity.getUserId()); + //nowBalance:获取到当前期权账户可用资金 + BigDecimal nowBalance = accountDao.selectOne(getPrice).getBalance(); + + + //判断用户选择的是平仓还是开仓 (0开仓 1平仓) + switch (entity.getStatus()) { + case 0: + //0开仓表买入:用户选择的买卖方向为开仓时候:获取当前合约的持仓总量 + + + //市值:外汇期货合约价格*(原持仓量 + 本次调仓量)* 合约面值 + //BigDecimal getMarketValueByAddition = algorithm.getMarketValueByAddition(now.getLastPrice(), getMeNumber, BigDecimal.valueOf(entity.getEntrustNumber()), CdFuturesConfigureServiceImpl.setCompany(qh.getName())); + + //扣除保证金(保证金 = 外汇期货合约价格 * 委托数量 * 合约面值 * 保证金比例) + BigDecimal bzj = algorithm.freezingMargin(getNow.getLastPrice(), entity.getTradableNumber(), new BigDecimal(tradingUnit), qh.getName().substring(0, 8)); + + + //TODO 总共要扣除的金额 = 需要扣除的保证金 + 所需资金 + + //所需资金 = 委托价格 * 委托数量(手数) * 每手交易单位 + BigDecimal funding_needed = algorithm.getFundsRequired(entity.getEntrustPrice(), BigDecimal.valueOf(entity.getEntrustNumber()), tradingUnit); + + + /** + * 期货的开仓成交规则: + * 多方情况下,委托价格大于等于最新价,以最新价成交; + * 空方情况下,委托价格小于等于最新价,以最新价成交。 + */ + // tODO 暂时注释 + //交易方向(0空头,1多头) + switch (old.getTradingDirection()) { + case 0: + //空方情况下:委托价格小于等于最新价,以最新价成交 + // entrustPrice > newestPrice + if (entrustPrice > getNowPrice) { + return R.error("开仓失败,委托价格大于最新价"); + } + break; + case 1: + //多方情况下:委托价格大于等于最新价,以最新价成交 + // entrustPrice < newestPrice + if (entrustPrice < getNowPrice) { + return R.error("开仓失败,委托价格小于最新价"); + } + break; + + } + //对当前头寸表 需要修改的操作: + // 交易方向?、 + CdFuturesConfigureEntity modifyByCondition = new CdFuturesConfigureEntity(); + + //最新价格:开仓时候 最新价格以当天汇率价格 + modifyByCondition.setNewestPrice(getNow.getLastPrice()); + + //委托价格 当前输入的价格 + modifyByCondition.setEntrustPrice(entity.getEntrustPrice()); + + //委托数量 + modifyByCondition.setEntrustNumber(entity.getEntrustNumber()); + + //预冻结保证金 = 外汇期货合约价格 * 合约面值 * 手数 * 保证金比例 + BigDecimal getPreFreezingMargin = algorithm.getPreFreezingMargin(qh.getLastPrice(), new BigDecimal(tradingUnit), qh.getName().substring(0, 8)); + modifyByCondition.setPreFreezingMargin(getPreFreezingMargin); + + //预冻结手续费 = 委托数量(手)* 费用标准 + BigDecimal getPreFreezingServiceCharge = algorithm.getPreFreezingServiceCharge(new BigDecimal(entity.getEntrustNumber())); + modifyByCondition.setPreFreezingFrozen(getPreFreezingServiceCharge); + + + //frozen_price:冻结资金 = 预计冻结保证金 + 预冻结手续费 + BigDecimal frozen_price = getPreFreezingMargin.add(getPreFreezingServiceCharge); + modifyByCondition.setFrozenPrice(frozen_price); + + //设置所需资金 + modifyByCondition.setFundingNeeded(funding_needed); + + + //计算合计操作的总持仓量 = 自己的持仓总量 + 本次要加仓的数量 + BigDecimal getTotal = getMeNumber.add(BigDecimal.valueOf(entity.getEntrustNumber())); + //可交易数量 = 之前的委托数量 + 本次委托数量 + modifyByCondition.setTradableNumber(getTotal); + + //委托数量 + modifyByCondition.setEntrustNumber(getTotal.intValue()); + // 浮动盈亏=(当天结算价—昨日结算价)* 委托数量 * 合约面值(1份合约=一手,一手=?吨) + BigDecimal floatPl = algorithm.getFloatingPL(getNow.getLastPrice(), getNow.getDayUp(), new BigDecimal(entity.getEntrustNumber()), CdFuturesConfigureServiceImpl.setCompany(qh.getName())); + //设置浮动盈亏 + modifyByCondition.setFloatingPl(floatPl); + //设置为开仓 + modifyByCondition.setStatus(0); + + //总共要扣除的金额 = 需要扣除的保证金 + 所需资金 + BigDecimal TotalAmount = funding_needed.add(bzj); + //判断当前可用余额是否足以扣除本次交易金额 + if (nowBalance.doubleValue() < TotalAmount.doubleValue()) { + return R.error("可用资金不足,开仓失败"); + } + + //开仓时间 + modifyByCondition.setCreateTime(getDate); + modifyByCondition.setId(entity.getId()); + int modify = futuresConfigureDao.updateById(modifyByCondition); + + + //modifyPrice:要做修改的金额(要做修改的金额 = 当前账户可用资金 - 要扣除的金额) + BigDecimal modifyPrice = nowBalance.subtract(TotalAmount); + + + //对用户期权账户修改金额操作 + UpdateWrapper updateWrapper2 = new UpdateWrapper(); + updateWrapper2.set("balance", modifyPrice); + updateWrapper2.eq("user_id", entity.getUserId()); + int updateAssets = accountDao.update(null, updateWrapper2); + + + //添加期权账户流水记录 + CdBankStatementsEntity bankStatements2 = new CdBankStatementsEntity(); + bankStatements2.setType(2);//类型(1银行账户 2期货账户) + bankStatements2.setCoinType("人民币"); + bankStatements2.setBeforeAmount(nowBalance);//改变前金额 + bankStatements2.setAmountMoney(TotalAmount);//这次操作的金额 + bankStatements2.setAfterAmount(modifyPrice);//改变后的金额 + bankStatements2.setTransferType(2);//流水类型(1:转账 2:流水) + bankStatements2.setCreateTime(getDate); + bankStatements2.setUserId(entity.getUserId()); + bankStatements2.setRemark("开仓"); + int addBankStatements2 = bankStatementsDao.insert(bankStatements2); + + + //往开仓表添加开仓记录 + //往流水记录表添加开仓流水记录 + CdTransferWarehouseRecordEntity record = new CdTransferWarehouseRecordEntity(); + //开仓表id + record.setCid(entity.getId()); + record.setUserId(entity.getUserId()); + record.setDirection(0);//买卖方向(0开仓 1平仓) + record.setType(0);//委托类型(0市价 1限价) + record.setNumber(entity.getTradableNumber());//委托手数 + record.setBalance(TotalAmount);//市值>>>金额 + record.setCreateTime(getDate);//TODO 调仓时开仓时间为选中的时间 + int addRe = transferWarehouseRecordDao.insert(record); + + if (modify <= 0 && updateAssets <= 0 && addBankStatements2 <= 0 && addRe <= 0) { + return R.error("调仓失败"); + } + + break; + + case 1: + /* 1平仓表示卖出 */ + + Integer num = entity.getEntrustNumber(); + + //当前可交易数量 - 我要平仓的数据 + Integer getTradableNumber = old.getTradableNumber().intValue(); + if (getTradableNumber - num < 1) { + return R.error("委托数量不能是持仓总量,至少留一手~"); + } + + + /** + * 期货的平仓成交规则: + * configure.getTradingDirection() : 交易方向(0空头,1多头) + * 空方情况下,可交易数量为空方合约持仓总量,委托价格大于等于最新价,以最新价成交。 + * 多方情况下,可交易数量为多方合约持仓总量,委托价格小于等于最新价,以最新价成交; + */ + // TODO 暂时注释 + switch (old.getTradingDirection()) { + case 0: + //空方情况下:委托价格大于等于最新价,以最新价成交。 + if (entrustPrice < getNowPrice) { + return R.error("平仓失败,委托价格小于最新价"); + } + break; + case 1: + //多方情况下:委托价格小于等于最新价,以最新价成交; + if (entrustPrice > getNowPrice) { + return R.error("平仓失败,委托价格大于最新价"); + } + break; + + } + + + //外汇期货盈亏=(平仓时的外汇汇率价格(等同于当天合约的最新价)-下单时外汇汇率价格(开仓时候的委托价)) * 委托数量 * 合约面值。 + BigDecimal pl = algorithm.get_wh_pl(BigDecimal.valueOf(getNowPrice), old.getEntrustPrice(), new BigDecimal(old.getEntrustNumber()), new BigDecimal(tradingUnit)); + + //getMarketValue:市值 = 外汇期货合约价格 * 委托数量 * 合约面值 + BigDecimal getMarketValue = algorithm.getMarketValue(BigDecimal.valueOf(getNowPrice), entity.getEntrustNumber(), tradingUnit); + + + //根据id查询开仓后的信息 + //CdFuturesConfigureEntity configure = futuresConfigureDao.selectById(entity.getId()); + + + //对当前头寸表 需要修改的操作: + // 交易方向?、 + CdFuturesConfigureEntity modifyByCondition1 = new CdFuturesConfigureEntity(); + + //设置平仓时间 + modifyByCondition1.setUpdateTime(old.getTradeTime()); + //设置状态(0.开仓 1平仓) + modifyByCondition1.setStatus(1); + //设置平仓价格:市场当前价 + modifyByCondition1.setCloseRate(getMarketValue); + //设置盈亏 + modifyByCondition1.setFloatingPl(pl); + + modifyByCondition1.setId(entity.getId()); + //修改设置可交易量 + modifyByCondition1.setTradableNumber(BigDecimal.valueOf(old.getEntrustNumber()).subtract(BigDecimal.valueOf(entity.getEntrustNumber()))); + + //平仓持仓量 等于持仓量减去本次下单手数 + modifyByCondition1.setEntrustNumber(old.getEntrustNumber() - entity.getEntrustNumber()); + + int modify1 = futuresConfigureDao.updateById(modifyByCondition1); + + + //改变后的金额 + BigDecimal newPrice = nowBalance.add(getMarketValue); + + + //做修改账户金额操作 + UpdateWrapper modifyBypc = new UpdateWrapper(); + //平仓后加金额 = 当前可用余额 + 市值 + modifyBypc.set("balance", newPrice); + modifyBypc.eq("user_id", entity.getUserId()); + int updateAsset = accountDao.update(null, modifyBypc); + + + //往流水记录表添加平仓流水记录 + CdTransferWarehouseRecordEntity record1 = new CdTransferWarehouseRecordEntity(); + //开仓表id + record1.setCid(entity.getId()); + record1.setUserId(entity.getUserId()); + record1.setDirection(1);//买卖方向(0开仓 1平仓) + record1.setType(0);//委托类型(0市价 1限价) + record1.setNumber(entity.getTradableNumber());//委托手数 + record1.setBalance(getMarketValue);//市值>>>金额 + record1.setCreateTime(getDate); + int addTransferWarehouseRecor = transferWarehouseRecordDao.insert(record1); + + + //添加期权账户流水记录 + CdBankStatementsEntity bankStatements = new CdBankStatementsEntity(); + bankStatements.setType(2);//类型(1银行账户 2期货账户) + bankStatements.setCoinType("人民币"); + bankStatements.setBeforeAmount(nowBalance);//改变前金额 + bankStatements.setAmountMoney(getMarketValue);//这次操作的金额 + bankStatements.setAfterAmount(newPrice);//改变后的金额 + bankStatements.setTransferType(2);//流水类型(1:转账 2:流水) + bankStatements.setCreateTime(getDate); + bankStatements.setRemark("平仓"); + bankStatements.setUserId(entity.getUserId()); + int addBankStatements = bankStatementsDao.insert(bankStatements); + + + if (modify1 <= 0 && updateAsset <= 0 && addBankStatements <= 0 && addTransferWarehouseRecor <= 0) { + return R.error("平仓失败"); + } + break; + } + } catch (Exception e) { + e.printStackTrace(); + return R.error(); + } + return R.ok(); + } +} + + + diff --git a/src/main/java/com/msdw/tms/service/impl/CdUserAssetsServiceImpl.java b/src/main/java/com/msdw/tms/service/impl/CdUserAssetsServiceImpl.java new file mode 100644 index 0000000..2d57ef9 --- /dev/null +++ b/src/main/java/com/msdw/tms/service/impl/CdUserAssetsServiceImpl.java @@ -0,0 +1,66 @@ +package com.msdw.tms.service.impl; + +import com.baomidou.mybatisplus.core.conditions.query.QueryWrapper; +import com.baomidou.mybatisplus.extension.service.impl.ServiceImpl; +import com.msdw.tms.dao.CdUserAssetsDao; +import com.msdw.tms.entity.CdUserAssetsEntity; +import com.msdw.tms.service.CdUserAssetsService; +import org.springframework.stereotype.Service; + +import javax.annotation.Resource; + +/** + * @描述:用户银行账户 服务类 + * @作者: Rong + * @日期: 2020-10-10 + */ +@Service("CdUserAssetsService") +public class CdUserAssetsServiceImpl extends ServiceImpl implements CdUserAssetsService { + + @Resource + private CdUserAssetsDao dao; + + + //插入银行信息账户信息以及期权账户信息 + @Override + public int addInfo(CdUserAssetsEntity userAssetsEntity) { + try { + int code = baseMapper.insert(userAssetsEntity); + return code; + } catch (Exception e) { + e.printStackTrace(); + return -1; + } + } + + @Override + public CdUserAssetsEntity userAssetsByUerId(long userId) { + try { + QueryWrapper queryWrapper = new QueryWrapper(); + queryWrapper.eq("user_id", userId); + CdUserAssetsEntity optionAccount = optionAccount = baseMapper.selectOne(queryWrapper); + return optionAccount; + } catch (Exception e) { + e.printStackTrace(); + return null; + } + } + + @Override + public int modify(long userId) { + try { + QueryWrapper queryWrapper = new QueryWrapper(); + queryWrapper.eq("user_id", userId); + CdUserAssetsEntity userAssets = new CdUserAssetsEntity(); + userAssets.setUserId(userId); + int update = baseMapper.update(userAssets, queryWrapper); + return update; + } catch (Exception e) { + e.printStackTrace(); + return -1; + } + } +} + + + diff --git a/src/main/java/com/msdw/tms/service/impl/CdUserOptionAccountServiceImpl.java b/src/main/java/com/msdw/tms/service/impl/CdUserOptionAccountServiceImpl.java new file mode 100644 index 0000000..3e7bcb8 --- /dev/null +++ b/src/main/java/com/msdw/tms/service/impl/CdUserOptionAccountServiceImpl.java @@ -0,0 +1,73 @@ +package com.msdw.tms.service.impl; + +import com.baomidou.mybatisplus.core.conditions.query.QueryWrapper; +import com.baomidou.mybatisplus.extension.service.impl.ServiceImpl; +import com.msdw.tms.dao.CdUserOptionAccountDao; +import com.msdw.tms.entity.CdUserOptionAccountEntity; +import com.msdw.tms.service.CdUserOptionAccountService; +import org.springframework.stereotype.Service; + +import javax.annotation.Resource; +import java.math.BigDecimal; + +/** + * @描述:期货期权账户 服务类 + * @作者: Rong + * @日期: 2020-10-10 + */ +@Service("cdUserOptionAccountService") +public class CdUserOptionAccountServiceImpl extends ServiceImpl implements CdUserOptionAccountService { + + @Resource + private CdUserOptionAccountDao dao; + + @Override + public int addInfoByOptionAccount(CdUserOptionAccountEntity userOptionAccount) { + + + try { + int code = baseMapper.insert(userOptionAccount); + return code; + } catch (Exception e) { + e.printStackTrace(); + return -1; + } + } + + //查看期权账户信息 + @Override + public CdUserOptionAccountEntity optionAccountByUerId(long userId) { + try { + QueryWrapper queryWrapper = new QueryWrapper(); + queryWrapper.eq("user_id", userId); + CdUserOptionAccountEntity optionAccount = baseMapper.selectOne(queryWrapper); + //总资金 = 资产市值 + 占用保证金 + 冻结资金 + 可用资金 + BigDecimal totalAssets = optionAccount.getDepositBalance().add(optionAccount.getDepositBalance().add(optionAccount.getBalance().add(optionAccount.getForzenBalance()))); + optionAccount.setTotalAssets(totalAssets); + return optionAccount; + } catch (Exception e) { + e.printStackTrace(); + return null; + } + + + } + + @Override + public int modify(long userId) { + try { + QueryWrapper queryWrapper = new QueryWrapper(); + queryWrapper.eq("user_id", userId); + CdUserOptionAccountEntity userAssets = new CdUserOptionAccountEntity(); + userAssets.setUserId(userId); + int update = baseMapper.update(userAssets, queryWrapper); + return update; + } catch (Exception e) { + e.printStackTrace(); + return -1; + } + } +} + + + diff --git a/src/main/java/com/msdw/tms/service/impl/QhscGangjiaosuoServiceImpl.java b/src/main/java/com/msdw/tms/service/impl/QhscGangjiaosuoServiceImpl.java new file mode 100644 index 0000000..0f1dee6 --- /dev/null +++ b/src/main/java/com/msdw/tms/service/impl/QhscGangjiaosuoServiceImpl.java @@ -0,0 +1,43 @@ +package com.msdw.tms.service.impl; + +import com.baomidou.dynamic.datasource.annotation.DS; +import com.baomidou.mybatisplus.core.metadata.IPage; +import com.baomidou.mybatisplus.extension.plugins.pagination.Page; +import com.baomidou.mybatisplus.extension.service.impl.ServiceImpl; +import com.msdw.tms.common.utils.PageUtils; +import com.msdw.tms.dao.QhscGangjiaosuoDao; +import com.msdw.tms.entity.QhscGangjiaosuoEntity; +import com.msdw.tms.service.QhscGangjiaosuoService; +import org.springframework.stereotype.Service; + +import java.util.List; + +/** + * @描述: 服务类 + * @作者: Rong + * @日期: 2020-10-10 + */ +@Service("qhscGangjiaosuoService") +@DS("pydb") +public class QhscGangjiaosuoServiceImpl extends ServiceImpl implements QhscGangjiaosuoService { + + + @Override + public PageUtils queryPageByQh(Integer page, Integer size, String name, String date) { + //分页对象 + Page page1 = new Page(page, size); + IPage list = this.baseMapper.queryPageByQh(page1, name, date); + PageUtils pageUtils = new PageUtils(list); + return pageUtils; + } + + @Override + public List getName() { + return this.baseMapper.getName(); + } + + +} + + + diff --git a/src/main/java/com/msdw/tms/service/impl/WhscRenminbipinzhongServiceImpl.java b/src/main/java/com/msdw/tms/service/impl/WhscRenminbipinzhongServiceImpl.java new file mode 100644 index 0000000..024183c --- /dev/null +++ b/src/main/java/com/msdw/tms/service/impl/WhscRenminbipinzhongServiceImpl.java @@ -0,0 +1,348 @@ +package com.msdw.tms.service.impl; + +import cn.afterturn.easypoi.excel.ExcelExportUtil; +import cn.afterturn.easypoi.excel.entity.ExportParams; +import com.baomidou.dynamic.datasource.annotation.DS; +import com.baomidou.mybatisplus.core.conditions.query.QueryWrapper; +import com.baomidou.mybatisplus.extension.plugins.pagination.Page; +import com.baomidou.mybatisplus.extension.service.impl.ServiceImpl; +import com.msdw.tms.common.utils.PageUtils; +import com.msdw.tms.common.utils.R; +import com.msdw.tms.common.utils.py.PyUtil; +import com.msdw.tms.dao.QhscGangjiaosuoDao; +import com.msdw.tms.dao.WhscRenminbipinzhongDao; +import com.msdw.tms.entity.QhscGangjiaosuoEntity; +import com.msdw.tms.entity.WhscRenminbipinzhongEntity; +import com.msdw.tms.entity.vo.CdCreatePhotoVo; +import com.msdw.tms.service.WhscRenminbipinzhongService; +import org.apache.commons.lang.StringUtils; +import org.apache.poi.ss.usermodel.Workbook; +import org.springframework.data.redis.core.RedisTemplate; +import org.springframework.stereotype.Service; + +import javax.annotation.Resource; +import javax.servlet.http.HttpServletResponse; +import java.io.IOException; +import java.net.URLEncoder; +import java.util.Iterator; +import java.util.List; + +/** + * @描述:外汇市场人民币品种 服务类 + * @作者: Rong + * @日期: 2020-09-28 + */ +//@Slf4j +@Service("whscRenminbipinzhongService") +@DS("pydb") +public class WhscRenminbipinzhongServiceImpl extends ServiceImpl implements WhscRenminbipinzhongService { + + @Resource + public RedisTemplate template; + + @Resource + public QhscGangjiaosuoDao qhscGangjiaosuoDao; + + //导出Excel + @Override + public R exportProjectRecord(HttpServletResponse response, String name, String startTime, String endTime) throws Exception { + + + try { + String strSql = " "; + int i = 0;//定义是否第一次循环 + QueryWrapper queryWrapper = new QueryWrapper<>(); + //查询币种名称 + List getRmb = qhscGangjiaosuoDao.getName(); + Iterator it = getRmb.iterator(); + + + if (!StringUtils.isEmpty(name)) { + queryWrapper.like("name", name + "人民币中间价"); + } + + if (!StringUtils.isEmpty(startTime) && !StringUtils.isEmpty(endTime)) { + queryWrapper.ge("date", startTime).le("date", endTime); + } + + //如果币种 时间都为空导出全部 + if (StringUtils.isEmpty(name) && StringUtils.isEmpty(startTime) && StringUtils.isEmpty(endTime)) { + //int i = 0;//定义是否第一次循环 + while (it.hasNext()) { + String x = it.next().getCurrency(); + if (x.equals("人民币")) { + it.remove(); + continue; + } + + if (i == 0) { + strSql += " WHERE ( name like concat('" + x + "%人民币中间价')"; + i++; + } + + //queryWrapper.like("name", "中间价"); + strSql += " or name like concat('" + x + "%人民币中间价')"; + //queryWrapper.last(" and name like concat('%"+x+"中间价')"); + } + //strSql += ")"; + queryWrapper.last(strSql); + //参数一是当前页,参数二是每页个数 + } + + //如果不选择币种时候默认查询全部的 + if (StringUtils.isEmpty(name)) { + + //int i = 0;//定义是否第一次循环 + while (it.hasNext()) { + String x = it.next().getCurrency(); + if (x.equals("人民币")) { + it.remove(); + continue; + } + + if (i == 0) { + strSql += " and ( name like concat('" + x + "%人民币中间价')"; + i++; + } + + //queryWrapper.like("name", "中间价"); + strSql += " or name like concat('" + x + "%人民币中间价')"; + //queryWrapper.last(" and name like concat('%"+x+"中间价')"); + } + strSql += ")"; + queryWrapper.last(strSql); + //参数一是当前页,参数二是每页个数 + } + + + //list + List list = this.list(queryWrapper); + if (list.size() == 0) { + return R.ok("暂无此数据,换个时间试试吧"); + } + + + // 告诉浏览器用什么软件可以打开此文件 + response.setHeader("content-Type", "application/vnd.ms-excel"); + // 下载文件的默认名称 + response.setHeader("Content-Disposition", "attachment;filename=" + URLEncoder.encode("汇率历史行情数据", "UTF-8") + ".xls"); + //编码 + response.setCharacterEncoding("UTF-8"); + Workbook workbook = ExcelExportUtil.exportExcel(new ExportParams(), WhscRenminbipinzhongEntity.class, list); + workbook.write(response.getOutputStream()); + return null; + } catch (IOException e) { + e.printStackTrace(); + return R.error("出现异常:" + e.getMessage()); + + } + + + } + + + /** + * 步骤二:当日外汇行情 + * + * @param pageNum + * @param pageSize + * @param name + * @param date + * @return + */ + @Override + public PageUtils queryPageByRecode(Integer pageNum, Integer pageSize, String name, String date, Integer userId) { + + if (date != null) { + template.opsForValue().set("date:userId_" + userId, date); + } + + //分页对象 + QueryWrapper queryWrapper = new QueryWrapper(); + //查询币种名称 + List getRmb = qhscGangjiaosuoDao.getName(); + Iterator it = getRmb.iterator(); + //判断条件值是否为空,如果不为空,拼接条件 + /*if (!StringUtils.isEmpty(date)) { + queryWrapper.eq("date", date); + } + if (!StringUtils.isEmpty(name)) { + queryWrapper.like("name", name + "人民币中间价"); + }*/ + + + if (!StringUtils.isEmpty(name) && !StringUtils.isEmpty(date)) { + queryWrapper.eq("date", date); + queryWrapper.like("name", name + "人民币中间价"); + } + String strSql = " "; + int i = 0;//定义是否第一次循环 + + //日期不为空 名称为空时 + if (!StringUtils.isEmpty(date) && StringUtils.isEmpty(name)) { + strSql = "where 1 = 1"; + + while (it.hasNext()) { + String x = it.next().getCurrency(); + if (x.equals("人民币")) { + it.remove(); + continue; + } + + if (i == 0) { + strSql += " and name like concat('%" + x + "人民币中间价%') and DATE_FORMAT(date, '%Y-%m-%d') = '" + date + "'"; + + + i++; + } else if (i == 1) { + strSql += " or name like concat('%" + x + "人民币中间价%') and DATE_FORMAT(date, '%Y-%m-%d') = '" + date + "'"; + } + + + } + //strSql += ")"; + queryWrapper.last(strSql); + //参数一是当前页,参数二是每页个数 + } + + //名称为空时 + if (StringUtils.isEmpty(name) && StringUtils.isEmpty(date)) { + strSql = "where 1=1"; + //查询币种名称 + //String strSql = " "; + //int i = 0;//定义是否第一次循环 + while (it.hasNext()) { + String x = it.next().getCurrency(); + if (x.equals("人民币")) { + it.remove(); + continue; + } + + if (i == 0) { + strSql += " and name like concat('" + x + "%人民币中间价')"; + i++; + } + + //queryWrapper.like("name", "中间价"); + strSql += " or name like concat('" + x + "%人民币中间价')"; + //queryWrapper.last(" and name like concat('%"+x+"中间价')"); + } + //strSql += ")"; + queryWrapper.last(strSql); + //参数一是当前页,参数二是每页个数 + } + + Page page = new Page(pageNum, pageSize); + page = this.page(page, queryWrapper); + return new PageUtils(page); + } + + /** + * 根据选择的模拟法传值获取相应数据 + * + * @param name + * @param startTime 样本区间开始时间 + * @param endTime 样本区间结束时间 + * @param confidenceLevel 置信水平 + * @param validity 持有效 + * @param type 类型(0.正态VaR 1.历史模拟法 2.蒙特卡洛模拟法) + * @param experimentsNumber 实验次数 + * @return + */ + @Override + public R getInfobyId(String name, String startTime, String endTime, String confidenceLevel, String validity, Integer type, String experimentsNumber) { + + try { + + if (startTime.equals(endTime)) { + return R.error("样本区间时间不能为同一天!"); + } + + QueryWrapper wrapper = new QueryWrapper(); + wrapper.like("name", name); + wrapper.last("limit 0,1"); + + //获取代码 + String e_name = baseMapper.selectOne(wrapper).geteName(); + + + //根据代码样本日期查询 + QueryWrapper queryWrapper = new QueryWrapper(); + queryWrapper.eq("e_name", e_name); + if (startTime != null && endTime != null) { + queryWrapper.ge("date", startTime).le("date", endTime); + } + List rmb = baseMapper.selectList(queryWrapper); + + if (rmb.size() == 0) { + return R.error("暂时没有该区间的数据!"); + } else if (rmb.size() < 2) { + return R.error("暂时没有该区间的数据!"); + } else { + + String code = ""; + for (WhscRenminbipinzhongEntity e : rmb) { + + String s = String.valueOf(e.getLastPrice()); + code += s + ","; + } + code = code.substring(0, code.length() - 1); + + CdCreatePhotoVo vo = new CdCreatePhotoVo(); + + /** + * + * getVar 置信水平(小数) 天数 列表 + * getVarByHistory 置信水平(小数) 天数 列表 + * photo 次数 天数 列表 + */ + //(0.正态VaR 1.历史模拟法 2.蒙特卡洛模拟法) + switch (type) { + case 0: + String getVar = PyUtil.getVarCode(PyUtil.path, PyUtil.pyPathByVar, confidenceLevel, validity, code); + vo.setVar(getVar); + return R.ok().put("data", vo); + case 1: + String getVarByHistory = PyUtil.getCodeByHis(PyUtil.path, PyUtil.historyPath, confidenceLevel, validity, code); + vo.setVar(getVarByHistory); + return R.ok().put("data", vo); + + case 2: + + String buffer = PyUtil.getCodeByPhoto(PyUtil.path, PyUtil.pyPathByPhoto, experimentsNumber, validity, code); + if (buffer.length() > 0) { + + String[] split = buffer.split(","); + String p1 = split[0]; + String p2 = split[1]; + vo.setPhoto_url1(p1); + vo.setPhoto_url2(p2); + return R.ok().put("data", vo); + } + default: + return R.error("参数异常"); + } + } + + + } catch (IOException e) { + e.printStackTrace(); + return R.error(e.getMessage()); + } + } + + /** + * 汇率类型 + * + * @return + */ + @Override + public List getExchangeRate() { + return baseMapper.getExchangeRate(); + } + + +} + + + diff --git a/src/main/resources/aliyun.properties b/src/main/resources/aliyun.properties new file mode 100644 index 0000000..acb5672 --- /dev/null +++ b/src/main/resources/aliyun.properties @@ -0,0 +1,6 @@ +oss.endpoint=oss-cn-shenzhen.aliyuncs.com +oss.accessKeyId=LTAIHIkGqaILObBm +oss.secretAccessKey=QDTxKMrfDPeJ3bsr3AqjYHwnlL6PdM +oss.bucketName=liuwanr +oss.sufferUrl=http://liuwanr.oss-cn-shenzhen.aliyuncs.com/ +user.userAvatars=userAvatars \ No newline at end of file diff --git a/src/main/resources/application.yml b/src/main/resources/application.yml new file mode 100644 index 0000000..f1c6df2 --- /dev/null +++ b/src/main/resources/application.yml @@ -0,0 +1,61 @@ +spring: + jackson: + default-property-inclusion: non_null + datasource: + dynamic: + primary: mydb #设置默认的数据源或者数据源组,默认值即为master + strict: false #设置严格模式,默认false不启动. 启动后在未匹配到指定数据源时候回抛出异常,不启动会使用默认数据源. + datasource: + mydb: + url: jdbc:mysql://localhost:3306/sichuan_subsystem?useUnicode=true&characterEncoding=UTF-8&useSSL=false&serverTimezone=Asia/Shanghai + username: root + password: e63aed97aaa1b41f + driver-class-name: com.mysql.cj.jdbc.Driver + pydb1: + url: jdbc:mysql://rm-wz95oz7m93cejtuko4o.mysql.rds.aliyuncs.com:3306/financial?autoReconnect=true&useJDBCCompliantTimezoneShift=true&useLegacyDatetimeCode=false&serverTimezone=GMT%2b8 + username: super + password: super888 + driver-class-name: com.mysql.cj.jdbc.Driver + pydb: + url: jdbc:mysql://localhost:3306/py_test?autoReconnect=true&useJDBCCompliantTimezoneShift=true&useLegacyDatetimeCode=false&serverTimezone=GMT%2b8 + username: root + password: e63aed97aaa1b41f + driver-class-name: com.mysql.cj.jdbc.Driver + + # redis: + # host: www.liuwanr.cn + # port: 6379 + # password: huoran + redis: + host: 127.0.0.1 + port: 6379 + password: dqredis123456 +mybatis-plus: + configuration: + log-impl: org.apache.ibatis.logging.stdout.StdOutImpl # 这个配置会将执行的sql打印出来,在开发或测试的时候可以用 + mapper-locations: classpath:/mapper/**/*.xml + global-config: + db-config: + id-type: auto + logic-delete-field: is_del + logic-delete-value: 0 + logic-not-delete-value: 1 +server: + port: 8080 + servlet: + context-path: /sichuan + +tms: + thread: + core-size: 20 + max-size: 200 + keep-alive-time: 10 + + +logging: + level: + org: + springframework: + boot: + autoconfigure: + logging: info \ No newline at end of file diff --git a/src/main/resources/excel-template/实验报告导出.xlsx b/src/main/resources/excel-template/实验报告导出.xlsx new file mode 100644 index 0000000..d979a8c Binary files /dev/null and b/src/main/resources/excel-template/实验报告导出.xlsx differ diff --git a/src/main/resources/excel-template/实验报告导出模板.xlsx b/src/main/resources/excel-template/实验报告导出模板.xlsx new file mode 100644 index 0000000..03a2749 Binary files /dev/null and b/src/main/resources/excel-template/实验报告导出模板.xlsx differ diff --git a/src/main/resources/excel-template/试题导入失败数据导出模板.xlsx b/src/main/resources/excel-template/试题导入失败数据导出模板.xlsx new file mode 100644 index 0000000..042244a Binary files /dev/null and b/src/main/resources/excel-template/试题导入失败数据导出模板.xlsx differ diff --git a/src/main/resources/excel-template/试题导入模板.xlsx b/src/main/resources/excel-template/试题导入模板.xlsx new file mode 100644 index 0000000..7cc7230 Binary files /dev/null and b/src/main/resources/excel-template/试题导入模板.xlsx differ diff --git a/src/main/resources/excel-template/试题导出模板.xlsx b/src/main/resources/excel-template/试题导出模板.xlsx new file mode 100644 index 0000000..46366b9 Binary files /dev/null and b/src/main/resources/excel-template/试题导出模板.xlsx differ diff --git a/src/main/resources/logback-spring.xml b/src/main/resources/logback-spring.xml new file mode 100644 index 0000000..d09983d --- /dev/null +++ b/src/main/resources/logback-spring.xml @@ -0,0 +1,47 @@ + + + + + + + + + + + %d{yyyy-MM-dd HH:mm:ss.SSS} [%thread] %-5level %logger{36} - %msg%n + utf8 + + + + + + + + ${LOG_HOME}/tms.%d{yyyy-MM-dd}.log + + + %d{yyyy-MM-dd HH:mm:ss.SSS} [%thread] %-5level %logger{36} - %msg%n + + + + + + + 0 + + 512 + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/src/main/resources/mapper/tms/CdBankStatementsMapper.xml b/src/main/resources/mapper/tms/CdBankStatementsMapper.xml new file mode 100644 index 0000000..f37343b --- /dev/null +++ b/src/main/resources/mapper/tms/CdBankStatementsMapper.xml @@ -0,0 +1,23 @@ + + + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/src/main/resources/mapper/tms/CdCacheMapper.xml b/src/main/resources/mapper/tms/CdCacheMapper.xml new file mode 100644 index 0000000..a8bc715 --- /dev/null +++ b/src/main/resources/mapper/tms/CdCacheMapper.xml @@ -0,0 +1,22 @@ + + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/src/main/resources/mapper/tms/CdExperimentalMapper.xml b/src/main/resources/mapper/tms/CdExperimentalMapper.xml new file mode 100644 index 0000000..d69908d --- /dev/null +++ b/src/main/resources/mapper/tms/CdExperimentalMapper.xml @@ -0,0 +1,22 @@ + + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/src/main/resources/mapper/tms/CdFuturesConfigureMapper.xml b/src/main/resources/mapper/tms/CdFuturesConfigureMapper.xml new file mode 100644 index 0000000..f91f644 --- /dev/null +++ b/src/main/resources/mapper/tms/CdFuturesConfigureMapper.xml @@ -0,0 +1,28 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/src/main/resources/mapper/tms/CdPointChildrenMapper.xml b/src/main/resources/mapper/tms/CdPointChildrenMapper.xml new file mode 100644 index 0000000..931b929 --- /dev/null +++ b/src/main/resources/mapper/tms/CdPointChildrenMapper.xml @@ -0,0 +1,13 @@ + + + + + + + + + + + + + \ No newline at end of file diff --git a/src/main/resources/mapper/tms/CdPointMapper.xml b/src/main/resources/mapper/tms/CdPointMapper.xml new file mode 100644 index 0000000..f5346b2 --- /dev/null +++ b/src/main/resources/mapper/tms/CdPointMapper.xml @@ -0,0 +1,12 @@ + + + + + + + + + + + + \ No newline at end of file diff --git a/src/main/resources/mapper/tms/CdTransferWarehouseRecordMapper.xml b/src/main/resources/mapper/tms/CdTransferWarehouseRecordMapper.xml new file mode 100644 index 0000000..2c5c3a7 --- /dev/null +++ b/src/main/resources/mapper/tms/CdTransferWarehouseRecordMapper.xml @@ -0,0 +1,18 @@ + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/src/main/resources/mapper/tms/CdUserAssetsMapper.xml b/src/main/resources/mapper/tms/CdUserAssetsMapper.xml new file mode 100644 index 0000000..32587c7 --- /dev/null +++ b/src/main/resources/mapper/tms/CdUserAssetsMapper.xml @@ -0,0 +1,15 @@ + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/src/main/resources/mapper/tms/CdUserOptionAccountMapper.xml b/src/main/resources/mapper/tms/CdUserOptionAccountMapper.xml new file mode 100644 index 0000000..6685d25 --- /dev/null +++ b/src/main/resources/mapper/tms/CdUserOptionAccountMapper.xml @@ -0,0 +1,16 @@ + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/src/main/resources/mapper/tms/QhscGangjiaosuoMapper.xml b/src/main/resources/mapper/tms/QhscGangjiaosuoMapper.xml new file mode 100644 index 0000000..ade6446 --- /dev/null +++ b/src/main/resources/mapper/tms/QhscGangjiaosuoMapper.xml @@ -0,0 +1,49 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/src/main/resources/mapper/tms/WhscRenminbipinzhongMapper.xml b/src/main/resources/mapper/tms/WhscRenminbipinzhongMapper.xml new file mode 100644 index 0000000..2f3abf2 --- /dev/null +++ b/src/main/resources/mapper/tms/WhscRenminbipinzhongMapper.xml @@ -0,0 +1,24 @@ + + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/src/main/resources/sql/data.sql b/src/main/resources/sql/data.sql new file mode 100644 index 0000000..410d162 --- /dev/null +++ b/src/main/resources/sql/data.sql @@ -0,0 +1,115 @@ +/* +Navicat MySQL Data Transfer + +Source Server : localhost +Source Server Version : 80020 +Source Host : localhost:3306 +Source Database : msdw_tms + +Target Server Type : MYSQL +Target Server Version : 80020 +File Encoding : 65001 + +Date: 2020-08-26 18:02:57 +*/ + +SET FOREIGN_KEY_CHECKS=0; + +-- ---------------------------- +-- Table structure for tms_evaluation_rules +-- ---------------------------- +DROP TABLE IF EXISTS `tms_evaluation_rules`; +CREATE TABLE `tms_evaluation_rules` ( + `id` int NOT NULL AUTO_INCREMENT COMMENT '主键', + `evaluation_type` int DEFAULT NULL COMMENT '测评类型:1:随机类型,0:自定义类型', + `duration` int DEFAULT NULL COMMENT '测评时长,单位:分钟', + `question_num` int DEFAULT NULL COMMENT '测评总题数', + `single_num` int DEFAULT NULL COMMENT '单选题数', + `is_single_enable` int DEFAULT '1' COMMENT '只在类型为自定义类型时才启用:1:启用,0:不启用,默认1启用', + `multiple_num` int DEFAULT NULL COMMENT '多选题数', + `is_multiple_enable` int DEFAULT '1' COMMENT '只在类型为自定义类型时才启用:1:启用,0:不启用,默认1启用', + `judgment_num` int DEFAULT NULL COMMENT '判断题数', + `is_judgment_enable` int DEFAULT '1' COMMENT '只在类型为自定义类型时才启用:1:启用,0:不启用,默认1启用', + PRIMARY KEY (`id`) +) ENGINE=InnoDB AUTO_INCREMENT=2 DEFAULT CHARSET=utf8 COLLATE=utf8_general_ci COMMENT='测评规则信息记录,只记录一条信息'; + +-- ---------------------------- +-- Records of tms_evaluation_rules +-- ---------------------------- +INSERT INTO `tms_evaluation_rules` VALUES ('1', '1', '10', '0', '0', '1', '0', '1', '0', '1'); + +-- ---------------------------- +-- Table structure for tms_questions +-- ---------------------------- +DROP TABLE IF EXISTS `tms_questions`; +CREATE TABLE `tms_questions` ( + `id` int NOT NULL AUTO_INCREMENT COMMENT '自增主键', + `question_type` int DEFAULT NULL COMMENT '题型:1、单选题,2、多选题,3、判断题', + `question_stem` text COMMENT '题干信息', + `option_a` text COMMENT 'A选项内容', + `option_b` text COMMENT 'B选项内容', + `option_c` text COMMENT 'C选项内容', + `option_d` text COMMENT 'D选项内容', + `option_e` text COMMENT 'E选项内容', + `option_f` text COMMENT 'F选项内容', + `answer` varchar(32) DEFAULT NULL COMMENT '正确答案', + `answer_analysis` text COMMENT '答案解析', + `is_enable` int DEFAULT '1' COMMENT '是否禁用:1:启用,0:禁用,默认是1启用', + `is_del` int DEFAULT '0' COMMENT '是否删除:0未删除,1删除,默认0未删除', + `create_user` varchar(32) DEFAULT NULL COMMENT '创建人', + `create_time` datetime DEFAULT NULL COMMENT '创建时间', + `modify_user` varchar(32) DEFAULT NULL COMMENT '修改人', + `modify_time` datetime DEFAULT NULL COMMENT '修改时间,用于排序,创建时,修改时间等于创建时间', + PRIMARY KEY (`id`) +) ENGINE=InnoDB AUTO_INCREMENT=53 DEFAULT CHARSET=utf8 COLLATE=utf8_general_ci COMMENT='记录试题信息'; + +-- ---------------------------- +-- Table structure for tms_xlsx_template +-- ---------------------------- +DROP TABLE IF EXISTS `tms_xlsx_template`; +CREATE TABLE `tms_xlsx_template` ( + `id` int NOT NULL AUTO_INCREMENT COMMENT '主键', + `file_name` varchar(300) DEFAULT NULL COMMENT '文件名', + `file_url` varchar(500) DEFAULT NULL COMMENT '文件全路径', + `status` int DEFAULT NULL COMMENT '状态', + PRIMARY KEY (`id`) +) ENGINE=InnoDB AUTO_INCREMENT=2 DEFAULT CHARSET=utf8 COLLATE=utf8_general_ci COMMENT='模板文件信息记录'; + +-- ---------------------------- +-- Records of tms_xlsx_template +-- ---------------------------- +INSERT INTO `tms_xlsx_template` VALUES ('1', 'xlsx/20200826/1598430904075.xlsx', 'http://liuwanr.oss-cn-shenzhen.aliyuncs.com/xlsx/20200826/1598430904075.xlsx', null); + +-- ---------------------------- +-- Table structure for tms_evaluation_question +-- ---------------------------- +DROP TABLE IF EXISTS `tms_evaluation_question`; +CREATE TABLE `tms_evaluation_question` ( + `id` int(11) NOT NULL AUTO_INCREMENT COMMENT '自增主键', + `evaluation_record_id` int(11) DEFAULT NULL COMMENT '测评记录表id', + `question_id` int(11) DEFAULT NULL COMMENT '试题id', + `question_sort_no` int(11) DEFAULT NULL COMMENT '试题顺序号', + `question_status` int(11) DEFAULT '0' COMMENT '试题状态:是否已被作过:1、已作/0、未作', + `user_answer` varchar(32) DEFAULT NULL COMMENT '用户填写的答案', + `is_ture` int(11) DEFAULT '0' COMMENT '是否正确:1、正确/0、错误', + `question_points` int(11) DEFAULT NULL COMMENT '试题分值', + `question_score` int(11) DEFAULT NULL COMMENT '试题得分', + PRIMARY KEY (`id`) +) ENGINE=InnoDB AUTO_INCREMENT=21 DEFAULT CHARSET=utf8 COMMENT='测评试题表,记录每次测评的试题,与测评记录表相关联'; + +-- ---------------------------- +-- Table structure for tms_evaluation_record +-- ---------------------------- +DROP TABLE IF EXISTS `tms_evaluation_record`; +CREATE TABLE `tms_evaluation_record` ( + `id` int(11) NOT NULL AUTO_INCREMENT COMMENT '自增主键', + `user_id` int(11) DEFAULT NULL COMMENT '当前测评的用户的id', + `current_question_sort_no` int(11) DEFAULT '1' COMMENT '记录当前做到第几题,用于刷新页面以后保持在当前题目,默认开始时是第一题', + `total_question_num` int(11) DEFAULT NULL COMMENT '总题目数量', + `evaluation_status` int(11) DEFAULT '0' COMMENT '当前测评状态:1:已提交/0:未提交', + `start_time` datetime DEFAULT NULL COMMENT '开始时间', + `submit_time` datetime DEFAULT NULL COMMENT '提交时间', + PRIMARY KEY (`id`) +) ENGINE=InnoDB AUTO_INCREMENT=4 DEFAULT CHARSET=utf8 COMMENT='记录用户测评信息'; + + diff --git a/src/test/java/com/msdw/tms/IdWorker.java b/src/test/java/com/msdw/tms/IdWorker.java new file mode 100644 index 0000000..6c89e6f --- /dev/null +++ b/src/test/java/com/msdw/tms/IdWorker.java @@ -0,0 +1,146 @@ +package com.msdw.tms; + +/** + * @Author: gongsj. + * @Description: 自定义id生成器 + * @Date:Created in 2020/09/09 09:33. + * @Modified By: + */ +public class IdWorker { + + //因为二进制里第一个 bit 为如果是 1,那么都是负数,但是我们生成的 id 都是正数,所以第一个 bit 统一都是 0。 + + //机器ID 2进制5位 32位减掉1位 31个 + private long workerId; + //机房ID 2进制5位 32位减掉1位 31个 + private long datacenterId; + //代表一毫秒内生成的多个id的最新序号 12位 4096 -1 = 4095 个 + private long sequence; + //设置一个时间初始值 2^41 - 1 差不多可以用69年 + private long twepoch = 1585644268888L; + //5位的机器id + private long workerIdBits = 5L; + //5位的机房id + private long datacenterIdBits = 5L; + //每毫秒内产生的id数 2 的 12次方 + private long sequenceBits = 12L; + // 这个是二进制运算,就是5 bit最多只能有31个数字,也就是说机器id最多只能是32以内 + private long maxWorkerId = -1L ^ (-1L << workerIdBits); + // 这个是一个意思,就是5 bit最多只能有31个数字,机房id最多只能是32以内 + private long maxDatacenterId = -1L ^ (-1L << datacenterIdBits); + + private long workerIdShift = sequenceBits; + private long datacenterIdShift = sequenceBits + workerIdBits; + private long timestampLeftShift = sequenceBits + workerIdBits + datacenterIdBits; + private long sequenceMask = -1L ^ (-1L << sequenceBits); + //记录产生时间毫秒数,判断是否是同1毫秒 + private long lastTimestamp = -1L; + + public long getWorkerId() { + return workerId; + } + + public long getDatacenterId() { + return datacenterId; + } + + public long getTimestamp() { + return System.currentTimeMillis(); + } + + + public IdWorker(long workerId, long datacenterId, long sequence) { + + // 检查机房id和机器id是否超过31 不能小于0 + if (workerId > maxWorkerId || workerId < 0) { + throw new IllegalArgumentException( + String.format("worker Id can't be greater than %d or less than 0", maxWorkerId)); + } + + if (datacenterId > maxDatacenterId || datacenterId < 0) { + + throw new IllegalArgumentException( + String.format("datacenter Id can't be greater than %d or less than 0", maxDatacenterId)); + } + this.workerId = workerId; + this.datacenterId = datacenterId; + this.sequence = sequence; + } + + // 这个是核心方法,通过调用nextId()方法,让当前这台机器上的snowflake算法程序生成一个全局唯一的id + public synchronized long nextId() { + // 这儿就是获取当前时间戳,单位是毫秒 + long timestamp = timeGen(); + if (timestamp < lastTimestamp) { + + System.err.printf( + "clock is moving backwards. Rejecting requests until %d.", lastTimestamp); + throw new RuntimeException( + String.format("Clock moved backwards. Refusing to generate id for %d milliseconds", + lastTimestamp - timestamp)); + } + + // 下面是说假设在同一个毫秒内,又发送了一个请求生成一个id + // 这个时候就得把seqence序号给递增1,最多就是4096 + if (lastTimestamp == timestamp) { + + // 这个意思是说一个毫秒内最多只能有4096个数字,无论你传递多少进来, + //这个位运算保证始终就是在4096这个范围内,避免你自己传递个sequence超过了4096这个范围 + sequence = (sequence + 1) & sequenceMask; + //当某一毫秒的时间,产生的id数 超过4095,系统会进入等待,直到下一毫秒,系统继续产生ID + if (sequence == 0) { + timestamp = tilNextMillis(lastTimestamp); + } + + } else { + sequence = 0; + } + // 这儿记录一下最近一次生成id的时间戳,单位是毫秒 + lastTimestamp = timestamp; + // 这儿就是最核心的二进制位运算操作,生成一个64bit的id + // 先将当前时间戳左移,放到41 bit那儿;将机房id左移放到5 bit那儿;将机器id左移放到5 bit那儿;将序号放最后12 bit + // 最后拼接起来成一个64 bit的二进制数字,转换成10进制就是个long型 + return ((timestamp - twepoch) << timestampLeftShift) | + (datacenterId << datacenterIdShift) | + (workerId << workerIdShift) | sequence; + } + + /** + * 当某一毫秒的时间,产生的id数 超过4095,系统会进入等待,直到下一毫秒,系统继续产生ID + * + * @param lastTimestamp + * @return + */ + private long tilNextMillis(long lastTimestamp) { + + long timestamp = timeGen(); + + while (timestamp <= lastTimestamp) { + timestamp = timeGen(); + } + return timestamp; + } + + //获取当前时间戳 + private long timeGen() { + return System.currentTimeMillis(); + } + + /** + * main 测试类 + * + * @param args + */ + public static void main(String[] args) { +// System.out.println(1&4596); +// System.out.println(2&4596); +// System.out.println(6&4596); +// System.out.println(6&4596); +// System.out.println(6&4596); +// System.out.println(6&4596); + IdWorker worker = new IdWorker(1, 1, 1); + for (int i = 0; i < 22; i++) { + System.out.println(worker.nextId()); + } + } +} \ No newline at end of file diff --git a/src/test/java/com/msdw/tms/SnowflakeIdUtils.java b/src/test/java/com/msdw/tms/SnowflakeIdUtils.java new file mode 100644 index 0000000..cf43898 --- /dev/null +++ b/src/test/java/com/msdw/tms/SnowflakeIdUtils.java @@ -0,0 +1,174 @@ +package com.msdw.tms; + +/** + * @Author:JCccc + * @Description: + * @Date: created in 15:31 2019/6/12 + */ +public class SnowflakeIdUtils { + // ==============================Fields=========================================== + /** + * 开始时间截 (2015-01-01) + */ + private final long twepoch = 1420041600000L; + + /** + * 机器id所占的位数 + */ + private final long workerIdBits = 5L; + + /** + * 数据标识id所占的位数 + */ + private final long datacenterIdBits = 5L; + + /** + * 支持的最大机器id,结果是31 (这个移位算法可以很快的计算出几位二进制数所能表示的最大十进制数) + */ + private final long maxWorkerId = -1L ^ (-1L << workerIdBits); + + /** + * 支持的最大数据标识id,结果是31 + */ + private final long maxDatacenterId = -1L ^ (-1L << datacenterIdBits); + + /** + * 序列在id中占的位数 + */ + private final long sequenceBits = 12L; + + /** + * 机器ID向左移12位 + */ + private final long workerIdShift = sequenceBits; + + /** + * 数据标识id向左移17位(12+5) + */ + private final long datacenterIdShift = sequenceBits + workerIdBits; + + /** + * 时间截向左移22位(5+5+12) + */ + private final long timestampLeftShift = sequenceBits + workerIdBits + datacenterIdBits; + + /** + * 生成序列的掩码,这里为4095 (0b111111111111=0xfff=4095) + */ + private final long sequenceMask = -1L ^ (-1L << sequenceBits); + + /** + * 工作机器ID(0~31) + */ + private long workerId; + + /** + * 数据中心ID(0~31) + */ + private long datacenterId; + + /** + * 毫秒内序列(0~4095) + */ + private long sequence = 0L; + + /** + * 上次生成ID的时间截 + */ + private long lastTimestamp = -1L; + + //==============================Constructors===================================== + + /** + * 构造函数 + * + * @param workerId 工作ID (0~31) + * @param datacenterId 数据中心ID (0~31) + */ + public SnowflakeIdUtils(long workerId, long datacenterId) { + if (workerId > maxWorkerId || workerId < 0) { + throw new IllegalArgumentException(String.format("worker Id can't be greater than %d or less than 0", maxWorkerId)); + } + if (datacenterId > maxDatacenterId || datacenterId < 0) { + throw new IllegalArgumentException(String.format("datacenter Id can't be greater than %d or less than 0", maxDatacenterId)); + } + this.workerId = workerId; + this.datacenterId = datacenterId; + } + + // ==============================Methods========================================== + + /** + * 获得下一个ID (该方法是线程安全的) + * + * @return SnowflakeId + */ + public synchronized long nextId() { + long timestamp = timeGen(); + + //如果当前时间小于上一次ID生成的时间戳,说明系统时钟回退过这个时候应当抛出异常 + if (timestamp < lastTimestamp) { + throw new RuntimeException( + String.format("Clock moved backwards. Refusing to generate id for %d milliseconds", lastTimestamp - timestamp)); + } + + //如果是同一时间生成的,则进行毫秒内序列 + if (lastTimestamp == timestamp) { + sequence = (sequence + 1) & sequenceMask; + //毫秒内序列溢出 + if (sequence == 0) { + //阻塞到下一个毫秒,获得新的时间戳 + timestamp = tilNextMillis(lastTimestamp); + } + } + //时间戳改变,毫秒内序列重置 + else { + sequence = 0L; + } + + //上次生成ID的时间截 + lastTimestamp = timestamp; + + //移位并通过或运算拼到一起组成64位的ID + return ((timestamp - twepoch) << timestampLeftShift) // + | (datacenterId << datacenterIdShift) // + | (workerId << workerIdShift) // + | sequence; + } + + /** + * 阻塞到下一个毫秒,直到获得新的时间戳 + * + * @param lastTimestamp 上次生成ID的时间截 + * @return 当前时间戳 + */ + protected long tilNextMillis(long lastTimestamp) { + long timestamp = timeGen(); + while (timestamp <= lastTimestamp) { + timestamp = timeGen(); + } + return timestamp; + } + + /** + * 返回以毫秒为单位的当前时间 + * + * @return 当前时间(毫秒) + */ + protected long timeGen() { + return System.currentTimeMillis(); + } + + //==============================Test============================================= + + /** + * 测试 + */ + public static void main(String[] args) { + SnowflakeIdUtils idWorker = new SnowflakeIdUtils(3, 1); +// System.out.println(idWorker.nextId()); + for (int i = 0; i < 20; i++) { + System.out.println(idWorker.nextId()); + } + } +} \ No newline at end of file diff --git a/src/test/java/com/msdw/tms/TmsApplicationTests.java b/src/test/java/com/msdw/tms/TmsApplicationTests.java new file mode 100644 index 0000000..d936647 --- /dev/null +++ b/src/test/java/com/msdw/tms/TmsApplicationTests.java @@ -0,0 +1,518 @@ +package com.msdw.tms; + +import cn.hutool.core.date.DateUtil; +import com.baomidou.mybatisplus.core.metadata.IPage; +import com.baomidou.mybatisplus.extension.plugins.pagination.Page; +import com.msdw.tms.entity.request.QuestionsImportRequest; +import lombok.AllArgsConstructor; +import lombok.Data; +import lombok.NoArgsConstructor; +import org.junit.jupiter.api.Test; +import org.springframework.beans.factory.annotation.Autowired; +import org.springframework.boot.test.context.SpringBootTest; +import org.springframework.data.redis.core.StringRedisTemplate; +import org.springframework.data.redis.core.ValueOperations; + +import java.io.UnsupportedEncodingException; +import java.net.URLDecoder; +import java.text.DecimalFormat; +import java.text.NumberFormat; +import java.text.ParseException; +import java.text.SimpleDateFormat; +import java.time.Instant; +import java.time.LocalDateTime; +import java.time.ZoneId; +import java.time.format.DateTimeFormatter; +import java.util.*; +import java.util.concurrent.TimeUnit; +import java.util.function.Function; +import java.util.stream.Collectors; + + +@SpringBootTest +class TmsApplicationTests { + + @Test + void contextLoads() throws UnsupportedEncodingException { + + System.out.println(URLDecoder.decode("%E8%AF%95%E9%A2%98%E8%A1%A8", "UTF-8")); + + //printMsg(1, 2, 3, "哈哈哈"); +// ------------------------------------------------------------------------------------------ + +// QuestionsVO questionsVO = new QuestionsVO(); +// +// QuestionsEntity questionsEntity = new QuestionsEntity(); +// +// questionsEntity.setId(1); +// questionsEntity.setQuestionType("单选题"); +// questionsEntity.setQuestionStem("adfasdfasdfasd"); +// questionsEntity.setQuestionTypeNo(1); +// questionsEntity.setIsEnable(1); +// questionsEntity.setIsDel(1); +// questionsEntity.setCreateUser("eqweq"); +// questionsEntity.setModifyUser("sadsa"); +// questionsEntity.setCreateTime(new Date()); +// questionsEntity.setModifyTime(new Date()); +// questionsEntity.setAnswer("asdasdasdsd"); +// questionsEntity.setAnswerAnalysis("qeqwewqeqweeqweqwe"); +// questionsEntity.setOptionA("dasdsada"); +// questionsEntity.setOptionB("asdasd"); +// questionsEntity.setOptionC("dasdsada"); +// questionsEntity.setOptionD("dasdsada"); +// questionsEntity.setOptionE("dasdsada"); +// questionsEntity.setOptionF("dasdsada"); +// questionsEntity.setSubjects("sadasd"); +// +// BeanUtils.copyProperties(questionsEntity, questionsVO); +// +// System.out.println(questionsVO.toString()); + +// ------------------------------------------------------------------------------------------ + +// Date date = new Date(); +// Instant instant = date.toInstant(); +// ZoneId zoneId = ZoneId.systemDefault(); +// +// LocalDateTime localDateTime = instant.atZone(zoneId).toLocalDateTime(); +// System.out.println("Date = " + date); +// System.out.println("LocalDateTime = " + localDateTime); +// String DateNow = localDateTime.format(DateTimeFormatter.ofPattern("yyyy/MM/dd HH:mm:ss")); // 当前日期和时间 +// // String DateNow = LocalDateTime.now().format(DateTimeFormatter.ofPattern("yyyy/MM/dd HH:mm:ss")); // 当前日期和时间 +// System.out.println(DateNow); + } + + void printMsg(T... args) { + for (T t : args) { + System.out.println("t is " + t); + } + } + + /** + * 泛型方法的基本介绍 + * + * @param tClass 传入的泛型实参 + * @return T 返回值为T类型 + * 说明: + * 1)public 与 返回值中间非常重要,可以理解为声明此方法为泛型方法。 + * 2)只有声明了的方法才是泛型方法,泛型类中的使用了泛型的成员方法并不是泛型方法。 + * 3)表明该方法将使用泛型类型T,此时才可以在方法中使用泛型类型T。 + * 4)与泛型类的定义一样,此处T可以随便写为任意标识,常见的如T、E、K、V等形式的参数常用于表示泛型。 + */ + public T genericMethod(Class tClass) throws InstantiationException, + IllegalAccessException { + T instance = tClass.newInstance(); + return instance; + } + + public K t2(T t, K k) { + k = (K) "haha"; + return k; + } + + private String formatDateTime(long mss) { + String DateTimes = null; + long days = mss / (60 * 60 * 24); + long hours = (mss % (60 * 60 * 24)) / (60 * 60); + long minutes = (mss % (60 * 60)) / 60; + long seconds = mss % 60; + if (days > 0) { + DateTimes = days + "天" + hours + "小时" + minutes + "分钟" + + seconds + "秒"; + } else if (hours > 0) { + DateTimes = hours + "小时" + minutes + "分钟" + + seconds + "秒"; + } else if (minutes > 0) { + DateTimes = minutes + "分钟" + + seconds + "秒"; + } else { + DateTimes = seconds + "秒"; + } + + return DateTimes; + } + + private String formatDateTime2(long mss) { + String DateTimes; + long hours = (mss % (60 * 24)) / (60); + long minutes = (mss % (60)); + //long seconds = mss % 60; + if (hours > 0) { + if (hours < 10) { + DateTimes = "0" + hours + ":" + minutes; + } else { + DateTimes = hours + ":" + minutes; + } + } else { + DateTimes = "00:" + minutes; + } + + return DateTimes; + } + + @Test + void t2() { + long mss = 150; + String ss = formatDateTime2(mss); + System.out.println(ss); + } + + /** + * 获取精确到秒的时间戳 + * + * @param date + * @return + */ + private int getSecondTimestampTwo(Date date) { + if (null == date) { + return 0; + } + String timestamp = String.valueOf(date.getTime() / 1000 / 60); + return Integer.valueOf(timestamp); + } + + @Test + void t3() { + String s = handleTime(new Date()); + System.out.println("ssss" + s); + + int secondTimestampTwo = getSecondTimestampTwo(new Date()); + System.out.println(secondTimestampTwo); + long l = System.currentTimeMillis(); + System.out.println("----" + new Date().getTime()); + System.out.println("====" + System.currentTimeMillis()); + + // System.currentTimeMillis() / (long)1000 / (long)60; + } + + @Test + void t4() throws ParseException { + Date date = getDate("2020-08-26 09:13:51"); + + int secondTimestampTwo = getSecondTimestampTwo(date); + + int secondTimestampTwo1 = getSecondTimestampTwo(new Date()); + + int i = secondTimestampTwo1 - secondTimestampTwo; + + System.out.println(i); + // System.currentTimeMillis() / (long)1000 / (long)60; + } + + //处理时间格式 + private String handleTime(Date date) { + Instant instant = date.toInstant(); + ZoneId zoneId = ZoneId.systemDefault(); + LocalDateTime localDateTime = instant.atZone(zoneId).toLocalDateTime(); + return localDateTime.format(DateTimeFormatter.ofPattern("yyyy-MM-dd HH:mm:ss")); // 当前日期和时间 + } + + private Date getDate(String dateStr) throws ParseException { + SimpleDateFormat simpleDateFormat = new SimpleDateFormat("yyyy-MM-dd HH:mm:ss");//注意月份是MM + Date date = simpleDateFormat.parse(dateStr); + System.out.println(date); //Mon Sep 02 00:00:00 CST 2019 + System.out.println(simpleDateFormat.format(date)); //2019-09-02 + return date; + } + + + @Autowired + StringRedisTemplate stringRedisTemplate; + + + @Test + void t5() throws ParseException { + + ValueOperations ops = stringRedisTemplate.opsForValue(); + + ops.set("aaa", "sss", 30, TimeUnit.SECONDS); + } + + @Test + void t6() throws ParseException { + + int se = 130 * 60; + + String s = DateUtil.secondToTime(se); + + System.out.println(s); + } + + @Test + void t7() throws ParseException { + + String f = "hahdhfasdf.xlsx"; + + System.out.println(f.substring(f.lastIndexOf("."))); + + } + + @Test + void t8() { + + List list = new ArrayList<>(); + list.add("a"); + list.add("b"); + list.add("c"); + list.add("d"); + list.add("b"); + list.add("c"); + list.add("a"); + list.add("a"); + list.add("a"); + + System.out.println("\n例子1 - 计算'a'出现的次数"); + System.out.println("a : " + Collections.frequency(list, "a")); + + System.out.println("\n例子2 - 计算所有对象出现的次数"); + Set uniqueSet = new HashSet<>(list); + for (String temp : uniqueSet) { + System.out.println(temp + ": " + Collections.frequency(list, temp)); + } + + System.out.println("\n例子3 -用Map来计算对象出现的次数"); + Map map = new HashMap<>(); + + for (String temp : list) { + Integer count = map.get(temp); + map.put(temp, (count == null) ? 1 : count + 1); + } + printMap(map); + + System.out.println("\nMap排序-以key排序"); + Map treeMap = new TreeMap<>(map); + printMap(treeMap); + + } + + static void printMap(Map map) { + for (Map.Entry entry : map.entrySet()) { + System.out.println("Key-value : " + entry.getKey() + "- " + + entry.getValue()); + } + } + + + @Test + void t9() throws Exception { + + List list = new ArrayList<>(); + list.add(new UserTest(1, "张三", "男", "深圳", "123456")); + list.add(new UserTest(2, "李四", "男", "深圳", "123456")); + list.add(new UserTest(3, "张三", "男", "杭州", "123456")); + list.add(new UserTest(4, "张三", "男", "深圳", "123456")); + list.add(new UserTest(5, "王五", "男", "深圳", "123456")); + list.add(new UserTest(6, "张三", "男", "深圳", "123456")); + list.add(new UserTest(7, "赵六", "女", "深圳", "123456")); + list.add(new UserTest(8, "赵六", "女", "深圳", "123456")); + list.add(new UserTest(9, "赵六", "女", "深圳", "123456")); + list.add(new UserTest(10, "赵六", "女", "深圳", "123456")); + list.add(new UserTest(11, "赵六", "女", "深圳", "123456")); + list.add(new UserTest(12, "张三", "男", "菲律宾", "123456")); + list.add(new UserTest(13, "张三", "男", "深圳", "123456")); + list.add(new UserTest(14, "张三", "男", "马来西亚", "123456")); + + + List errorMsg = new ArrayList<>(); + + ArrayList collect = list.stream() + .collect(Collectors.collectingAndThen(// 去重收集 + Collectors.toCollection(() -> + new TreeSet<>(Comparator.comparing(UserTest::toString))), + ArrayList::new + )); + + for (UserTest userTest : collect) { + + System.out.println(userTest.getIndex() + "-----" + userTest.toString()); + } + + System.out.println("----------------------------"); + + List userTests = removeRepeatFactor3(collect, list); + + for (UserTest userTest : userTests) { + + System.out.println(userTest.getIndex() + "-----" + userTest.toString()); + } + + + } + + private List removeRepeatFactor(List list1, List list2) { + if (list1 != null && list2 != null) { + if (list1.size() != 0 && list2.size() != 0) { + Collection A = new ArrayList<>(list1); + List B = new ArrayList<>(list2); + A.retainAll(B); + if (A.size() != 0) { + B.removeAll(A); + } + return B; + } + } + return list2; + } + + private List removeRepeatFactor3(List list1, List list2) { + if (list1 != null && list2 != null) { + if (list1.size() != 0 && list2.size() != 0) { + Collection A = new ArrayList<>(list1); + List B = new ArrayList<>(list2); + A.retainAll(B); + if (A.size() != 0) { + B.removeAll(A); + } + return B; + } + } + return list2; + } + + public List removeRepeatFactor2(List list1, List list2) throws Exception { + if (list1 != null && list2 != null) { + if (list1.size() != 0 && list2.size() != 0) { + Collection A = new ArrayList<>(list1); + Collection B = new ArrayList<>(list2); + A.retainAll(B); + if (A.size() != 0) { + B.removeAll(A); + } + return (List) B; + } + } + return list2; + } + + + @Test + void t10() { + + QuestionsImportRequest questionsImportRequest = new QuestionsImportRequest(); + questionsImportRequest.setOptionA("aaa"); + questionsImportRequest.setOptionB("bbb"); + questionsImportRequest.setOptionC("ccc"); + questionsImportRequest.setOptionD("ddd"); + questionsImportRequest.setOptionE("eee"); + questionsImportRequest.setOptionF("fff"); + questionsImportRequest.setQuestionStem("stem"); + questionsImportRequest.setQuestionTypeName("type"); + + System.out.println(questionsImportRequest.toStringForCompare()); + + } + + @Test + void t11() { + + List list = new ArrayList<>(); + list.add(new UserTest(1, "张三", "男", "深圳", "123456")); + list.add(new UserTest(2, "李四", "男", "深圳", "123456")); + list.add(new UserTest(3, "张三", "男", "杭州", "123456")); + list.add(new UserTest(4, "张三", "男", "深圳", "123456")); + list.add(new UserTest(5, "王五", "男", "深圳", "123456")); + list.add(new UserTest(6, "张三", "男", "深圳", "123456")); + list.add(new UserTest(7, "赵六", "女", "深圳", "123456")); + list.add(new UserTest(8, "赵六", "女", "深圳", "123456")); + list.add(new UserTest(9, "赵六", "女", "深圳", "123456")); + list.add(new UserTest(10, "赵六", "女", "深圳", "123456")); + list.add(new UserTest(11, "赵六", "女", "深圳", "123456")); + list.add(new UserTest(12, "张三", "男", "菲律宾", "123456")); + list.add(new UserTest(13, "张三", "男", "深圳", "123456")); + list.add(new UserTest(14, "张三", "男", "马来西亚", "123456")); + + stringRedisTemplate.opsForList().leftPush("sss", list.toString()); + } + + @Test + void t12() { +// System.out.println(((float) 3 / (float) 10) * 100 + "%"); + + int diliverNum = 3;//举例子的变量 + int queryMailNum = 10;//举例子的变量 +// 创建一个数值格式化对象 + NumberFormat numberFormat = NumberFormat.getInstance(); +// 设置精确到小数点后2位 + numberFormat.setMaximumFractionDigits(2); + String result = numberFormat.format((float) diliverNum / (float) queryMailNum * 100); + System.out.println("diliverNum和queryMailNum的百分比为:" + result + "%"); + } + + + public String getPercent(int x, int total) { + String result = "";//接受百分比的值 + double x_double = x * 1.0; + double tempresult = x / total; + //NumberFormat nf = NumberFormat.getPercentInstance(); 注释掉的也是一种方法 + //nf.setMinimumFractionDigits( 2 ); 保留到小数点后几位 + DecimalFormat df1 = new DecimalFormat("0.00%"); //##.00% 百分比格式,后面不足2位的用0补齐 + //result=nf.format(tempresult); + result = df1.format(tempresult); + return result; + } + + + @Test + public void test100() { + + List list = new ArrayList<>(); + list.add(new UserTest(1, "张三", "男", "深圳", "123456")); + list.add(new UserTest(2, "李四", "男", "深圳", "123456")); + list.add(new UserTest(3, "张三", "男", "杭州", "123456")); + list.add(new UserTest(4, "张三", "男", "深圳", "123456")); + list.add(new UserTest(5, "王五", "男", "深圳", "123456")); + list.add(new UserTest(6, "张三", "男", "深圳", "123456")); + list.add(new UserTest(7, "赵六", "女", "深圳", "123456")); + list.add(new UserTest(8, "赵六", "女", "深圳", "123456")); + list.add(new UserTest(9, "赵六", "女", "深圳", "123456")); + list.add(new UserTest(10, "赵六", "女", "深圳", "123456")); + list.add(new UserTest(11, "赵六", "女", "深圳", "123456")); + list.add(new UserTest(12, "张三", "男", "菲律宾", "123456")); + list.add(new UserTest(13, "张三", "男", "深圳", "123456")); + list.add(new UserTest(14, "张三", "男", "马来西亚", "123456")); + + Page page = new Page<>(1, 10); + +// page.setTotal(list.size()); +// page.setRecords(list); + + IPage convert = page.convert(new Function() { + @Override + public UserTest apply(Object o) { + + return new UserTest(1, "张三", "男", "深圳", "123456"); + } + }); + + System.out.println(convert); + + + } + + @Data + @NoArgsConstructor + @AllArgsConstructor + class T { + boolean b; + String s; + } + + @Test + public void t101() { + String[] s = new String[]{"5", "-2", "4", "C", "D", "9", "+", "+"}; + + List list = new ArrayList<>(); + + for (int i = 0; i < s.length; i++) { + + list.add(new T(true, s[i])); + + if (s[i].equalsIgnoreCase("c")) { + + } + } + + System.out.println(); + } + +} diff --git a/src/test/java/com/msdw/tms/UserTest.java b/src/test/java/com/msdw/tms/UserTest.java new file mode 100644 index 0000000..84e2982 --- /dev/null +++ b/src/test/java/com/msdw/tms/UserTest.java @@ -0,0 +1,26 @@ +package com.msdw.tms; + +import lombok.AllArgsConstructor; +import lombok.Data; +import lombok.NoArgsConstructor; + +@Data +@NoArgsConstructor +@AllArgsConstructor +public class UserTest { + private int index; + private String name; + private String gender; + private String addr; + private String phone; + + @Override + public String toString() { + return "UserTest{" + + "name='" + name + '\'' + + ", gender='" + gender + '\'' + + ", addr='" + addr + '\'' + + ", phone='" + phone + '\'' + + '}'; + } +} diff --git a/src/test/java/com/msdw/tms/service/AliyunOssServiceTest.java b/src/test/java/com/msdw/tms/service/AliyunOssServiceTest.java new file mode 100644 index 0000000..c9583fd --- /dev/null +++ b/src/test/java/com/msdw/tms/service/AliyunOssServiceTest.java @@ -0,0 +1,62 @@ +package com.msdw.tms.service; + +import com.msdw.tms.common.utils.FilesResult; +import org.apache.commons.fileupload.FileItem; +import org.apache.commons.fileupload.disk.DiskFileItem; +import org.apache.commons.io.IOUtils; +import org.junit.jupiter.api.Test; +import org.springframework.beans.factory.annotation.Autowired; +import org.springframework.boot.test.context.SpringBootTest; +import org.springframework.mock.web.MockHttpServletResponse; +import org.springframework.web.multipart.MultipartFile; +import org.springframework.web.multipart.commons.CommonsMultipartFile; + +import javax.servlet.http.HttpServletResponse; +import java.io.File; +import java.io.FileInputStream; +import java.io.IOException; +import java.nio.file.Files; + +@SpringBootTest +class AliyunOssServiceTest { + + @Autowired + AliyunOssService aliyunOssService; + + /** + * 测试上传文件 + */ + @Test + void testUploadFiles() throws IOException { + File file = new File("D:\\pic\\1.jpg"); + FileItem fileItem = new DiskFileItem("file", + Files.probeContentType(file.toPath()), + false, + file.getName(), + (int) file.length(), + file.getParentFile()); + IOUtils.copy(new FileInputStream(file), fileItem.getOutputStream()); + MultipartFile multipartFile = new CommonsMultipartFile(fileItem); + FilesResult filesResult = aliyunOssService.uploadFiles(multipartFile); + System.out.println(filesResult.toString()); + } + + /** + * 测试下载文件 + */ + @Test + void testDownloadFiles() throws IOException { + HttpServletResponse response = new MockHttpServletResponse(); + AliyunOssService aliyunOssService = this.aliyunOssService; + aliyunOssService.downloadFiles(response, + "http://liuwanr.oss-cn-shenzhen.aliyuncs.com/jpg/20200807/1596787474773.jpg"); + } + + /** + * 测试根据文件路径+文件名称,删除该文件 + */ + @Test + void testDeleteFile() { + aliyunOssService.deleteFile("http://liuwanr.oss-cn-shenzhen.aliyuncs.com/jpg/20200807/1596787474773.jpg"); + } +}