commit
6c48164195
172 changed files with 13452 additions and 0 deletions
@ -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/ |
@ -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(); |
||||
} |
||||
|
||||
} |
Binary file not shown.
@ -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 |
@ -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 "$@" |
@ -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% |
@ -0,0 +1,236 @@ |
||||
<?xml version="1.0" encoding="UTF-8"?> |
||||
<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" |
||||
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 https://maven.apache.org/xsd/maven-4.0.0.xsd"> |
||||
<modelVersion>4.0.0</modelVersion> |
||||
<parent> |
||||
<groupId>org.springframework.boot</groupId> |
||||
<artifactId>spring-boot-starter-parent</artifactId> |
||||
<version>2.3.4.RELEASE</version> |
||||
<relativePath/> <!-- lookup parent from repository --> |
||||
</parent> |
||||
<groupId>com.msdw</groupId> |
||||
<artifactId>tms</artifactId> |
||||
<version>0.0.1-SNAPSHOT</version> |
||||
<name>tms</name> |
||||
<description>测评管理系统</description> |
||||
|
||||
<packaging>jar</packaging> |
||||
<properties> |
||||
<java.version>1.8</java.version> |
||||
</properties> |
||||
|
||||
<dependencies> |
||||
<dependency> |
||||
<groupId>org.apache.poi</groupId> |
||||
<artifactId>poi</artifactId> |
||||
<version>4.0.1</version> |
||||
</dependency> |
||||
<dependency> |
||||
<groupId>org.apache.poi</groupId> |
||||
<artifactId>poi-ooxml</artifactId> |
||||
<version>4.0.1</version> |
||||
</dependency> |
||||
<dependency> |
||||
<groupId>org.apache.poi</groupId> |
||||
<artifactId>poi-ooxml-schemas</artifactId> |
||||
<version>4.0.1</version> |
||||
</dependency> |
||||
|
||||
<dependency> |
||||
<groupId>org.springframework.boot</groupId> |
||||
<artifactId>spring-boot-starter-web</artifactId> |
||||
</dependency> |
||||
<dependency> |
||||
<groupId>org.springframework.boot</groupId> |
||||
<artifactId>spring-boot-starter-tomcat</artifactId> |
||||
<!--打包的时候可以不用包进去,别的设施会提供。事实上该依赖理论上可以参与编译,测试,运行等周期。 |
||||
相当于compile,但是打包阶段做了exclude操作--> |
||||
<scope>compile</scope> |
||||
</dependency> |
||||
|
||||
<dependency> |
||||
<groupId>com.baomidou</groupId> |
||||
<artifactId>mybatis-plus-boot-starter</artifactId> |
||||
<version>3.3.1</version> |
||||
</dependency> |
||||
<dependency> |
||||
<groupId>org.projectlombok</groupId> |
||||
<artifactId>lombok</artifactId> |
||||
<version>1.18.12</version> |
||||
</dependency> |
||||
|
||||
<dependency> |
||||
<groupId>org.apache.httpcomponents</groupId> |
||||
<artifactId>httpcore</artifactId> |
||||
<version>4.4.13</version> |
||||
</dependency> |
||||
|
||||
<dependency> |
||||
<groupId>commons-lang</groupId> |
||||
<artifactId>commons-lang</artifactId> |
||||
<version>2.6</version> |
||||
</dependency> |
||||
|
||||
<!--导入mysql的驱动--> |
||||
<dependency> |
||||
<groupId>mysql</groupId> |
||||
<artifactId>mysql-connector-java</artifactId> |
||||
<version>8.0.20</version> |
||||
</dependency> |
||||
|
||||
<!--swagger start--> |
||||
<dependency> |
||||
<groupId>io.springfox</groupId> |
||||
<artifactId>springfox-swagger-ui</artifactId> |
||||
<version>2.7.0</version> |
||||
</dependency> |
||||
<dependency> |
||||
<groupId>io.springfox</groupId> |
||||
<artifactId>springfox-swagger2</artifactId> |
||||
<version>2.7.0</version> |
||||
</dependency> |
||||
<!--swagger end--> |
||||
<dependency> |
||||
<groupId>com.aliyun.oss</groupId> |
||||
<artifactId>aliyun-sdk-oss</artifactId> |
||||
<version>2.8.2</version> |
||||
</dependency> |
||||
<dependency> |
||||
<groupId>org.springframework.cloud</groupId> |
||||
<artifactId>spring-cloud-starter-openfeign</artifactId> |
||||
<version>2.2.3.RELEASE</version> |
||||
</dependency> |
||||
<dependency> |
||||
<groupId>org.springframework.boot</groupId> |
||||
<artifactId>spring-boot-starter-test</artifactId> |
||||
<scope>test</scope> |
||||
<exclusions> |
||||
<exclusion> |
||||
<groupId>org.junit.vintage</groupId> |
||||
<artifactId>junit-vintage-engine</artifactId> |
||||
</exclusion> |
||||
</exclusions> |
||||
</dependency> |
||||
<dependency> |
||||
<groupId>commons-io</groupId> |
||||
<artifactId>commons-io</artifactId> |
||||
<version>2.6</version> |
||||
<scope>test</scope> |
||||
</dependency> |
||||
<dependency> |
||||
<groupId>commons-fileupload</groupId> |
||||
<artifactId>commons-fileupload</artifactId> |
||||
<version>1.4</version> |
||||
<scope>test</scope> |
||||
</dependency> |
||||
<!--JSR303校验--> |
||||
<dependency> |
||||
<groupId>org.springframework.boot</groupId> |
||||
<artifactId>spring-boot-starter-validation</artifactId> |
||||
</dependency> |
||||
<!-- springboot整合redis --> |
||||
<dependency> |
||||
<groupId>org.springframework.boot</groupId> |
||||
<artifactId>spring-boot-starter-data-redis</artifactId> |
||||
</dependency> |
||||
|
||||
<dependency> |
||||
<groupId>cn.hutool</groupId> |
||||
<artifactId>hutool-all</artifactId> |
||||
<version>5.3.8</version> |
||||
</dependency> |
||||
|
||||
<dependency> |
||||
<groupId>com.alibaba</groupId> |
||||
<artifactId>fastjson</artifactId> |
||||
<version>1.2.72</version> |
||||
</dependency> |
||||
<dependency> |
||||
<groupId>org.springframework.boot</groupId> |
||||
<artifactId>spring-boot-configuration-processor</artifactId> |
||||
<optional>true</optional> |
||||
</dependency> |
||||
|
||||
<!--JPython 依赖--> |
||||
<dependency> |
||||
<groupId>org.python</groupId> |
||||
<artifactId>jython-standalone</artifactId> |
||||
<version>2.7.0</version> |
||||
</dependency> |
||||
|
||||
|
||||
<!-- Easy poi--> |
||||
<!-- excle导入导出依赖包 start --> |
||||
<!-- excel文件导入导出 --> |
||||
<dependency> |
||||
<groupId>cn.afterturn</groupId> |
||||
<artifactId>easypoi-base</artifactId> |
||||
<version>4.1.3</version> |
||||
</dependency> |
||||
<dependency> |
||||
<groupId>cn.afterturn</groupId> |
||||
<artifactId>easypoi-web</artifactId> |
||||
<version>4.1.3</version> |
||||
</dependency> |
||||
<dependency> |
||||
<groupId>cn.afterturn</groupId> |
||||
<artifactId>easypoi-annotation</artifactId> |
||||
<version>4.1.3</version> |
||||
</dependency> |
||||
|
||||
<dependency> |
||||
<groupId>com.alibaba</groupId> |
||||
<artifactId>easyexcel</artifactId> |
||||
<version>2.1.1</version> |
||||
</dependency> |
||||
<!-- END --> |
||||
<!-- excle导入导出依赖包 end --> |
||||
|
||||
<!--多数据源配置--> |
||||
<dependency> |
||||
<groupId>com.baomidou</groupId> |
||||
<artifactId>dynamic-datasource-spring-boot-starter</artifactId> |
||||
<version>3.1.0</version> |
||||
</dependency> |
||||
|
||||
<!--Aop--> |
||||
<dependency> |
||||
<groupId>org.springframework.boot</groupId> |
||||
<artifactId>spring-boot-starter-aop</artifactId> |
||||
</dependency> |
||||
|
||||
<!--jedis--> |
||||
<dependency> |
||||
<groupId>redis.clients</groupId> |
||||
<artifactId>jedis</artifactId> |
||||
<version>2.9.0</version> |
||||
</dependency> |
||||
|
||||
<dependency> |
||||
<groupId>org.springframework.boot</groupId> |
||||
<artifactId>spring-boot-starter-data-redis</artifactId> |
||||
</dependency> |
||||
|
||||
|
||||
|
||||
</dependencies> |
||||
|
||||
<build> |
||||
<finalName>evaluation</finalName> |
||||
<plugins> |
||||
<plugin> |
||||
<groupId>org.springframework.boot</groupId> |
||||
<artifactId>spring-boot-maven-plugin</artifactId> |
||||
</plugin> |
||||
<plugin> |
||||
<groupId>org.apache.maven.plugins</groupId> |
||||
<artifactId>maven-surefire-plugin</artifactId> |
||||
<version>2.20.1</version> |
||||
<configuration> |
||||
<skipTests>true</skipTests> |
||||
</configuration> |
||||
</plugin> |
||||
</plugins> |
||||
</build> |
||||
|
||||
</project> |
@ -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); |
||||
} |
||||
} |
@ -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 ""; |
||||
} |
@ -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")); |
||||
} |
||||
} |
@ -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; |
||||
}*/ |
||||
} |
@ -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); |
||||
}*/ |
||||
} |
@ -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<Class<? extends Throwable>, ResultCode> EXCEPTIONS; |
||||
//定义map的builder对象,去构建ImmutableMap
|
||||
protected static ImmutableMap.Builder<Class<? extends Throwable>, 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); |
||||
}*/ |
||||
} |
@ -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; |
||||
} |
||||
*/ |
||||
|
||||
} |
@ -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"; |
||||
} |
||||
|
||||
} |
@ -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; |
||||
} |
@ -0,0 +1,489 @@ |
||||
/** |
||||
* Copyright (c) 2016-2019 人人开源 All rights reserved. |
||||
* <p> |
||||
* https://www.renren.io
|
||||
* <p> |
||||
* 版权所有,侵权必究! |
||||
*/ |
||||
|
||||
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; |
||||
} |
||||
} |
||||
} |
@ -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(); //刷数据
|
||||
} |
||||
} |
@ -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; |
||||
} |
@ -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; |
||||
} |
||||
} |
@ -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; |
||||
} |
@ -0,0 +1,112 @@ |
||||
/** |
||||
* Copyright (c) 2016-2019 人人开源 All rights reserved. |
||||
* <p> |
||||
* https://www.renren.io
|
||||
* <p> |
||||
* 版权所有,侵权必究! |
||||
*/ |
||||
|
||||
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; |
||||
} |
||||
|
||||
} |
@ -0,0 +1,94 @@ |
||||
/** |
||||
* Copyright (c) 2016-2019 人人开源 All rights reserved. |
||||
* <p> |
||||
* https://www.renren.io
|
||||
* <p> |
||||
* 版权所有,侵权必究! |
||||
*/ |
||||
|
||||
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<T> { |
||||
|
||||
public IPage<T> getPage(Map<String, Object> params) { |
||||
return this.getPage(params, null, false); |
||||
} |
||||
|
||||
public IPage<T> getPage(Map<String, Object> 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<T> 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<T> 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<T> page = new Page<>(curPage, limit); |
||||
|
||||
return page; |
||||
} |
||||
} |
@ -0,0 +1,63 @@ |
||||
/** |
||||
* Copyright (c) 2016-2019 人人开源 All rights reserved. |
||||
* <p> |
||||
* https://www.renren.io
|
||||
* <p> |
||||
* 版权所有,侵权必究! |
||||
*/ |
||||
|
||||
package com.msdw.tms.common.utils; |
||||
|
||||
import java.util.HashMap; |
||||
import java.util.Map; |
||||
|
||||
/** |
||||
* 返回数据 |
||||
* |
||||
* @author Mark sunlightcs@gmail.com |
||||
*/ |
||||
public class R extends HashMap<String, Object> { |
||||
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<String, Object> 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; |
||||
} |
||||
|
||||
} |
@ -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<String, String> redisTemplate; |
||||
public static RedisTemplate<String, String> redis; |
||||
|
||||
|
||||
@PostConstruct |
||||
public void getRedisTemplate() { |
||||
redis = this.redisTemplate; |
||||
} |
||||
|
||||
/** |
||||
* 读取缓存 |
||||
* |
||||
* @param key |
||||
* @return |
||||
*/ |
||||
public Object get(final String key) { |
||||
return redis.opsForValue().get(key); |
||||
} |
||||
|
||||
} |
@ -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<String, String> 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<String, List<String>> 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<String, String> 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<String, String> parameters = new HashMap<>(); |
||||
parameters.put("userId", "10001"); |
||||
String result = sendPost("http://localhost:8080/sichuan/chuanda/userAssets/save", parameters); |
||||
System.out.println(result); |
||||
} |
||||
} |
@ -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<String, String> redisTemplate = RedisConfig.redis; |
||||
*//*HttpServletRequest request = ((ServletRequestAttributes) RequestContextHolder.getRequestAttributes()).getRequest();
|
||||
//获取请求头中的token
|
||||
String token = request.getHeader("token");*//*
|
||||
|
||||
String token = "UT_tfHcVAEB2I4pUZU0PgryDg=="; |
||||
Map<String, String> parameters = new HashMap<String, String>(); |
||||
|
||||
//判断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()); |
||||
} |
||||
|
||||
|
||||
} |
@ -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); |
||||
} |
||||
|
||||
} |
@ -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 = ""; |
||||
} |
@ -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); |
||||
} |
||||
} |
||||
|
@ -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 ""; |
||||
} |
@ -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<T> { |
||||
|
||||
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<T> 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; |
||||
} |
||||
} |
@ -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<T> { |
||||
|
||||
private Class clazz; |
||||
private Field fields[]; |
||||
|
||||
public ExcelImportUtil(Class clazz) { |
||||
this.clazz = clazz; |
||||
fields = clazz.getDeclaredFields(); |
||||
} |
||||
|
||||
/** |
||||
* 基于注解读取excel |
||||
*/ |
||||
public List<T> readExcel(InputStream is, int rowIndex, int cellIndex) { |
||||
List<T> 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 ""; |
||||
} |
||||
} |
||||
} |
@ -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); |
||||
} |
||||
|
||||
|
||||
} |
@ -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<String> 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()); |
||||
} |
||||
|
||||
|
||||
/** |
||||
* 判断当前日期是星期几<br> |
||||
* <br> |
||||
* |
||||
* @param pTime 修要判断的时间<br> |
||||
* @return dayForWeek 判断结果<br> |
||||
* @Exception 发生异常<br> |
||||
*/ |
||||
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")); |
||||
} |
||||
} |
@ -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份合约=一手,一手=?吨) |
||||
* <p> |
||||
* 当天结算价: 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); |
||||
}*/ |
||||
|
||||
/** |
||||
* 盈亏=(平仓时的外汇汇率价格-下单时外汇汇率价格) * 委托数量 * 合约面值。 |
||||
* <p> |
||||
* 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); |
||||
}*/ |
||||
|
||||
/** |
||||
* 外汇期货盈亏=(平仓时的外汇汇率价格-下单时外汇汇率价格) * 委托数量 * 合约面值。 |
||||
* <p> |
||||
* 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.人民币兑美元期货 |
||||
* * <p> |
||||
* * 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); |
||||
} |
||||
} |
||||
|
||||
|
||||
} |
||||
|
@ -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<String,Pattern> P_REMOVE_PAIR_BLANKS = new ConcurrentHashMap<String, Pattern>(); |
||||
private static final ConcurrentMap<String,Pattern> P_REMOVE_SELF_BLANKS = new ConcurrentHashMap<String, Pattern>(); |
||||
|
||||
/** set of allowed html elements, along with allowed attributes for each element **/ |
||||
private final Map<String, List<String>> vAllowed; |
||||
/** counts of open tags for each (allowable) html element **/ |
||||
private final Map<String, Integer> vTagCounts = new HashMap<String, Integer>(); |
||||
|
||||
/** html elements which must always be self-closing (e.g. "<img />") **/ |
||||
private final String[] vSelfClosingTags; |
||||
/** html elements which must always have separate opening and closing tags (e.g. "<b></b>") **/ |
||||
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. "<b></b>" or "<b />") **/ |
||||
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. "<b text </b>" becomes "<b> text </b>"). If set to false, |
||||
* unbalanced angle brackets will be html escaped. |
||||
*/ |
||||
private final boolean alwaysMakeTags; |
||||
|
||||
/** Default constructor. |
||||
* |
||||
*/ |
||||
public HTMLFilter() { |
||||
vAllowed = new HashMap<>(); |
||||
|
||||
final ArrayList<String> a_atts = new ArrayList<String>(); |
||||
a_atts.add("href"); |
||||
a_atts.add("target"); |
||||
vAllowed.put("a", a_atts); |
||||
|
||||
final ArrayList<String> img_atts = new ArrayList<String>(); |
||||
img_atts.add("src"); |
||||
img_atts.add("width"); |
||||
img_atts.add("height"); |
||||
img_atts.add("alt"); |
||||
vAllowed.put("img", img_atts); |
||||
|
||||
final ArrayList<String> no_atts = new ArrayList<String>(); |
||||
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<String,Object> 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<String, List<String>>) 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("<!--" + htmlSpecialChars(match) + "-->")); |
||||
} |
||||
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 += "</" + key + ">"; |
||||
} |
||||
} |
||||
|
||||
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[^>]*)?></" + tag + ">")); |
||||
} |
||||
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 "</" + name + ">"; |
||||
} |
||||
} |
||||
} |
||||
} |
||||
|
||||
// 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<String> paramNames = new ArrayList<String>(); |
||||
final List<String> paramValues = new ArrayList<String>(); |
||||
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)); |
||||
} |
||||
} |
@ -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; |
||||
} |
||||
} |
@ -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; |
||||
} |
||||
|
||||
} |
@ -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("*"); |
||||
} |
||||
} |
@ -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()); |
||||
} |
||||
} |
@ -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; |
||||
} |
||||
} |
@ -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<String, String> template; |
||||
|
||||
} |
@ -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(); |
||||
} |
||||
|
||||
} |
@ -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; |
||||
} |
@ -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("");*/ |
||||
} |
||||
} |
||||
|
@ -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<String, String> 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<CdTransferRecordsResp> 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<CdFuturesConfigureEntity> queryWrapper = new QueryWrapper<CdFuturesConfigureEntity>(); |
||||
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<QhscGangjiaosuoEntity> wrapper = new QueryWrapper<QhscGangjiaosuoEntity>(); |
||||
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<CdFuturesConfigureEntity> queryWrapper = new QueryWrapper<CdFuturesConfigureEntity>(); |
||||
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<QhscGangjiaosuoEntity> wrapper = new QueryWrapper<QhscGangjiaosuoEntity>(); |
||||
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); |
||||
} |
||||
} |
||||
|
@ -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<CdCacheEntity> 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()); |
||||
} |
||||
|
||||
|
||||
} |
||||
|
@ -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<String, String> 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<CdExperimentalEntity> entity = new QueryWrapper<>(); |
||||
entity.eq("type", type); |
||||
entity.eq("user_id", userId); |
||||
List<CdExperimentalEntity> 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<Integer> 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<Integer> ids) { |
||||
try { |
||||
int userId = TokenUtil.getUserId(); |
||||
R r = service.exportexportProjectRecordById(response, userId, ids); |
||||
return r; |
||||
} catch (Exception e) { |
||||
e.printStackTrace(); |
||||
return R.error(); |
||||
} |
||||
|
||||
} |
||||
|
||||
|
||||
} |
||||
|
@ -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(); |
||||
} |
||||
|
||||
} |
||||
|
||||
} |
||||
|
@ -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)); |
||||
}*/ |
||||
|
||||
} |
||||
|
@ -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<CdPoint> queryWrapper = new QueryWrapper<>(); |
||||
queryWrapper.eq("parent_id", 0); |
||||
|
||||
List<CdPoint> 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<CdPoint> queryWrapper = new QueryWrapper<>(); |
||||
queryWrapper.eq("parent_id", id); |
||||
List<CdPoint> 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<CdPointChildren> queryWrapper = new QueryWrapper<>(); |
||||
queryWrapper.eq("point_id", id); |
||||
List<CdPointChildren> pointsList = childrenService.list(queryWrapper); |
||||
return R.ok().put("list", pointsList); |
||||
} |
||||
|
||||
} |
||||
|
@ -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); |
||||
} |
||||
|
||||
} |
||||
|
@ -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<String, String> 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("账户信息新增失败"); |
||||
} |
||||
|
||||
|
||||
} |
||||
|
||||
|
||||
} |
||||
|
@ -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<String, Object> getAllCurrency() { |
||||
|
||||
Integer userId = TokenUtil.getUserId(); |
||||
List<QhscGangjiaosuoEntity> list = service.getName(); |
||||
|
||||
QueryWrapper<WhscRenminbipinzhongEntity> wrapper = new QueryWrapper<WhscRenminbipinzhongEntity>(); |
||||
wrapper.orderByAsc("date").last("limit 1"); |
||||
WhscRenminbipinzhongEntity date = rmbService.getOne(wrapper); |
||||
|
||||
|
||||
Iterator<QhscGangjiaosuoEntity> it = list.iterator(); |
||||
while (it.hasNext()) { |
||||
String x = it.next().getCurrency(); |
||||
if (x.equals("人民币")) { |
||||
it.remove(); |
||||
} |
||||
} |
||||
String time = DateUtils.dateForByStr(date.getDate()); |
||||
Map<String, Object> 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<WhscRenminbipinzhongEntity> list = rmbService.getExchangeRate(); |
||||
|
||||
//respList:用来保存去除其他字段的list
|
||||
List<CdGetExchangeRateResp> respList = new ArrayList<>(); |
||||
|
||||
//查询币种名称
|
||||
List<QhscGangjiaosuoEntity> getRMB_Name = service.getName(); |
||||
Iterator<QhscGangjiaosuoEntity> 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); |
||||
|
||||
|
||||
} |
||||
|
||||
|
||||
} |
||||
|
@ -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<String, Object> getWeekAndMonthInfo(@RequestBody CdGetWeekAndMonthInfoReq req) { |
||||
|
||||
Map<String, Object> map = new HashMap<String, Object>(); |
||||
|
||||
Integer userId = TokenUtil.getUserId(); |
||||
|
||||
|
||||
//1.根据id查询到该条外汇信息
|
||||
WhscRenminbipinzhongEntity entity = service.getById(req.getId()); |
||||
|
||||
//2.根据外汇名称查询该合约一周的信息
|
||||
QueryWrapper<WhscRenminbipinzhongEntity> 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<WhscRenminbipinzhongEntity> week = service.list(wrapper); |
||||
|
||||
/*List<CdGetWeekAndMonthInfoResp> getWeek = new ArrayList<CdGetWeekAndMonthInfoResp>(); |
||||
|
||||
for (WhscRenminbipinzhongEntity list : week) { |
||||
CdGetWeekAndMonthInfoResp resp = new CdGetWeekAndMonthInfoResp(); |
||||
resp.setDate(list.getDate()); |
||||
resp.setLastPrice(list.getLastPrice()); |
||||
getWeek.add(resp); |
||||
|
||||
}*/ |
||||
|
||||
|
||||
//3.根据外汇名称查询该合约一个月的信息
|
||||
|
||||
QueryWrapper<WhscRenminbipinzhongEntity> 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<WhscRenminbipinzhongEntity> month = service.list(queryWrapper); |
||||
|
||||
/* List<CdGetWeekAndMonthInfoResp> 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()); |
||||
} |
||||
|
||||
|
||||
} |
@ -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<CdBankStatementsEntity> { |
||||
|
||||
|
||||
} |
@ -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<CdCacheEntity> { |
||||
|
||||
} |
@ -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<CdExperimentalEntity> { |
||||
|
||||
} |
@ -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<CdFuturesConfigureEntity> { |
||||
|
||||
} |
@ -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<CdPointChildren> { |
||||
|
||||
} |
@ -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<CdPoint> { |
||||
|
||||
} |
@ -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<CdTransferWarehouseRecordEntity> { |
||||
|
||||
} |
@ -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<CdUserAssetsEntity> { |
||||
|
||||
} |
@ -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<CdUserOptionAccountEntity> { |
||||
|
||||
} |
@ -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<QhscGangjiaosuoEntity> { |
||||
IPage<QhscGangjiaosuoEntity> queryPageByQh(Page page, @Param("name") String name, @Param("date") String date); |
||||
|
||||
|
||||
//查询所有币种
|
||||
List<QhscGangjiaosuoEntity> getName(); |
||||
|
||||
|
||||
} |
@ -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<WhscRenminbipinzhongEntity> { |
||||
|
||||
/*汇率风险识别历史行情数据下载 根据时间区间查询*/ |
||||
List<WhscRenminbipinzhongEntity> exportByDate(String startTime,String endTime); |
||||
|
||||
//查询所有汇率类型
|
||||
List<WhscRenminbipinzhongEntity> getExchangeRate(); |
||||
} |
@ -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; |
||||
|
||||
|
||||
} |
@ -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; |
||||
|
||||
|
||||
} |
@ -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; |
||||
|
||||
|
||||
} |
@ -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; |
||||
|
||||
|
||||
} |
@ -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; |
||||
|
||||
|
||||
} |
@ -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; |
||||
|
||||
|
||||
} |
@ -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; |
||||
|
||||
|
||||
} |
@ -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; |
||||
} |
||||
} |
@ -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; |
||||
} |
||||
} |
@ -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; |
||||
|
||||
|
||||
|
||||
} |
@ -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; |
||||
} |
||||
} |
@ -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; |
||||
} |
@ -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; |
||||
} |
@ -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; |
||||
} |
||||
} |
@ -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;
|
||||
} |
@ -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; |
||||
} |
@ -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; |
||||
}*/ |
||||
|
||||
|
||||
} |
@ -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; |
||||
} |
@ -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); |
||||
}*/ |
||||
|
||||
} |
@ -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();*/ |
||||
|
||||
} |
@ -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; |
||||
} |
@ -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; |
||||
|
||||
|
||||
} |
@ -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; |
||||
|
||||
|
||||
} |
@ -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(); |
||||
|
||||
} |
@ -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(); |
||||
}*/ |
||||
|
||||
|
||||
|
||||
|
||||
} |
@ -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; |
||||
|
||||
} |
@ -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; |
||||
|
||||
|
||||
} |
@ -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; |
||||
} |
@ -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; |
||||
} |
@ -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; |
||||
} |
@ -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; |
||||
} |
@ -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; |
||||
|
||||
|
||||
} |
Some files were not shown because too many files have changed in this diff Show More
Loading…
Reference in new issue