feat:修改档案归档信息

dev
wangxy 8 months ago
parent 5d9fda4c68
commit c6d7ab6d8f

@ -1,66 +0,0 @@
/* */ package com.archive.common.exception.file;
/* */
/* */ import com.archive.common.exception.file.InvalidExtensionException;
/* */
/* */
/* */
/* */
/* */
/* */
/* */
/* */
/* */
/* */
/* */
/* */
/* */
/* */
/* */
/* */
/* */
/* */
/* */
/* */
/* */
/* */
/* */
/* */
/* */
/* */
/* */
/* */
/* */
/* */
/* */
/* */
/* */
/* */
/* */
/* */
/* */
/* */
/* */
/* */
/* */
/* */
/* */
/* */
/* */
/* */
/* */
/* */
/* */ public class InvalidFlashExtensionException
/* */ extends InvalidExtensionException
/* */ {
/* */ private static final long serialVersionUID = 1L;
/* */
/* */ public InvalidFlashExtensionException(String[] allowedExtension, String extension, String filename) {
/* 58 */ super(allowedExtension, extension, filename);
/* */ }
/* */ }
/* Location: C:\Users\Administrator\Desktop\extracted.zip!\extracted\BOOT-INF\classes\com\archive\common\exception\file\InvalidExtensionException$InvalidFlashExtensionException.class
* Java compiler version: 8 (52.0)
* JD-Core Version: 1.1.3
*/

@ -0,0 +1,66 @@
package com.archive.common.exception.file;
import com.archive.common.exception.file.InvalidExtensionException;
public class InvalidFlashExtensionException
extends InvalidExtensionException
{
private static final long serialVersionUID = 1L;
public InvalidFlashExtensionException(String[] allowedExtension, String extension, String filename) {
super(allowedExtension, extension, filename);
}
}
/* Location: C:\Users\Administrator\Desktop\extracted.zip!\extracted\BOOT-INF\classes\com\archive\common\exception\file\InvalidExtensionException$InvalidFlashExtensionException.class
* Java compiler version: 8 (52.0)
* JD-Core Version: 1.1.3
*/

@ -1,6 +1,6 @@
/* */ package com.archive.common.utils /* */ package com.archive.common.utils
-INF.classes.com.archive.common.utils; ;
/* */ /* */
/* */ import com.archive.common.utils.spring.SpringUtils; /* */ import com.archive.common.utils.spring.SpringUtils;
/* */ import java.util.Iterator; /* */ import java.util.Iterator;

@ -1,6 +1,6 @@
/* */ package com.archive.common.utils /* */ package com.archive.common.utils
-INF.classes.com.archive.common.utils; ;
/* */ /* */
/* */ import java.lang.management.ManagementFactory; /* */ import java.lang.management.ManagementFactory;
/* */ import java.text.ParseException; /* */ import java.text.ParseException;

@ -1,6 +1,5 @@
/* */ package com.archive.common.utils /* */ package com.archive.common.utils
;
-INF.classes.com.archive.common.utils;
/* */ /* */
/* */ import com.archive.common.utils.StringUtils; /* */ import com.archive.common.utils.StringUtils;
/* */ import java.io.PrintWriter; /* */ import java.io.PrintWriter;

@ -1,6 +1,6 @@
/* */ package com.archive.common.utils /* */ package com.archive.common.utils
-INF.classes.com.archive.common.utils; ;
/* */ /* */
/* */ import com.archive.common.utils.StringUtils; /* */ import com.archive.common.utils.StringUtils;
/* */ import java.net.InetAddress; /* */ import java.net.InetAddress;

@ -1,6 +1,5 @@
/* */ package com.archive.common.utils /* */ package com.archive.common.utils
;
-INF.classes.com.archive.common.utils;
/* */ /* */
/* */ import com.archive.common.utils.spring.SpringUtils; /* */ import com.archive.common.utils.spring.SpringUtils;
/* */ import org.springframework.context.MessageSource; /* */ import org.springframework.context.MessageSource;

@ -1,238 +1,238 @@
/* */ package com.archive.common.utils.file; package com.archive.common.utils.file;
/* */
/* */ import com.archive.common.exception.file.FileNameLengthLimitExceededException; import com.archive.common.exception.file.FileNameLengthLimitExceededException;
/* */ import com.archive.common.exception.file.FileSizeLimitExceededException; import com.archive.common.exception.file.FileSizeLimitExceededException;
/* */ import com.archive.common.exception.file.InvalidExtensionException; import com.archive.common.exception.file.InvalidExtensionException;
/* */ import com.archive.common.utils.DateUtils; import com.archive.common.utils.DateUtils;
/* */ import com.archive.common.utils.StringUtils; import com.archive.common.utils.StringUtils;
/* */ import com.archive.common.utils.file.MimeTypeUtils; import com.archive.common.utils.file.MimeTypeUtils;
/* */ import com.archive.common.utils.uuid.IdUtils; import com.archive.common.utils.uuid.IdUtils;
/* */ import com.archive.framework.config.ArchiveConfig; import com.archive.framework.config.ArchiveConfig;
/* */ import java.io.File; import java.io.File;
/* */ import java.io.IOException; import java.io.IOException;
/* */ import org.apache.commons.io.FilenameUtils; import org.apache.commons.io.FilenameUtils;
/* */ import org.springframework.web.multipart.MultipartFile; import org.springframework.web.multipart.MultipartFile;
/* */
/* */
/* */
/* */
/* */
/* */
/* */
/* */
/* */
/* */
/* */
/* */
/* */
/* */
/* */
/* */
/* */
/* */ public class FileUploadUtils public class FileUploadUtils
/* */ { {
/* */ public static final long DEFAULT_MAX_SIZE = 52428800L; public static final long DEFAULT_MAX_SIZE = 52428800L;
/* */ public static final int DEFAULT_FILE_NAME_LENGTH = 100; public static final int DEFAULT_FILE_NAME_LENGTH = 100;
/* 36 */ private static String defaultBaseDir = ArchiveConfig.getInstance().getProfile(); private static String defaultBaseDir = ArchiveConfig.getInstance().getProfile();
/* */
/* */
/* */ public static void setDefaultBaseDir(String defaultBaseDir) { public static void setDefaultBaseDir(String defaultBaseDir) {
/* 40 */ com.archive.common.utils.file.FileUploadUtils.defaultBaseDir = defaultBaseDir; com.archive.common.utils.file.FileUploadUtils.defaultBaseDir = defaultBaseDir;
/* */ } }
/* */
/* */
/* */ public static String getDefaultBaseDir() { public static String getDefaultBaseDir() {
/* 45 */ return defaultBaseDir; return defaultBaseDir;
/* */ } }
/* */
/* */
/* */
/* */
/* */
/* */
/* */
/* */
/* */
/* */
/* */ public static final String upload(MultipartFile file) throws IOException { public static final String upload(MultipartFile file) throws IOException {
/* */ try { try {
/* 59 */ return upload(getDefaultBaseDir(), file, MimeTypeUtils.DEFAULT_ALLOWED_EXTENSION); return upload(getDefaultBaseDir(), file, MimeTypeUtils.DEFAULT_ALLOWED_EXTENSION);
/* */ } }
/* 61 */ catch (Exception e) { catch (Exception e) {
/* */
/* 63 */ throw new IOException(e.getMessage(), e); throw new IOException(e.getMessage(), e);
/* */ } }
/* */ } }
/* */
/* */
/* */
/* */
/* */
/* */
/* */
/* */
/* */
/* */
/* */
/* */ public static final String upload(String baseDir, MultipartFile file) throws IOException { public static final String upload(String baseDir, MultipartFile file) throws IOException {
/* */ try { try {
/* 79 */ return upload(baseDir, file, MimeTypeUtils.DEFAULT_ALLOWED_EXTENSION); return upload(baseDir, file, MimeTypeUtils.DEFAULT_ALLOWED_EXTENSION);
/* */ } }
/* 81 */ catch (Exception e) { catch (Exception e) {
/* */
/* 83 */ throw new IOException(e.getMessage(), e); throw new IOException(e.getMessage(), e);
/* */ } }
/* */ } }
/* */
/* */
/* */
/* */
/* */
/* */
/* */
/* */
/* */
/* */
/* */
/* */
/* */
/* */
/* */
/* */
/* */ public static final String upload(String baseDir, MultipartFile file, String[] allowedExtension) throws FileSizeLimitExceededException, IOException, FileNameLengthLimitExceededException, InvalidExtensionException { public static final String upload(String baseDir, MultipartFile file, String[] allowedExtension) throws FileSizeLimitExceededException, IOException, FileNameLengthLimitExceededException, InvalidExtensionException {
/* 103 */ int fileNamelength = file.getOriginalFilename().length(); int fileNamelength = file.getOriginalFilename().length();
/* 104 */ if (fileNamelength > 100) if (fileNamelength > 100)
/* */ { {
/* 106 */ throw new FileNameLengthLimitExceededException(100); throw new FileNameLengthLimitExceededException(100);
/* */ } }
/* */
/* 109 */ assertAllowed(file, allowedExtension); assertAllowed(file, allowedExtension);
/* */
/* 111 */ String fileName = extractFilename(file); String fileName = extractFilename(file);
/* */
/* 113 */ File desc = getAbsoluteFile(baseDir, fileName); File desc = getAbsoluteFile(baseDir, fileName);
/* 114 */ file.transferTo(desc); file.transferTo(desc);
/* 115 */ String pathFileName = getPathFileName(baseDir, fileName); String pathFileName = getPathFileName(baseDir, fileName);
/* 116 */ return pathFileName; return pathFileName;
/* */ } }
/* */
/* */
/* */
/* */
/* */
/* */ public static final String extractFilename(MultipartFile file) { public static final String extractFilename(MultipartFile file) {
/* 124 */ String fileName = file.getOriginalFilename(); String fileName = file.getOriginalFilename();
/* 125 */ String extension = getExtension(file); String extension = getExtension(file);
/* 126 */ fileName = DateUtils.datePath() + "/" + IdUtils.fastUUID() + "." + extension; fileName = DateUtils.datePath() + "/" + IdUtils.fastUUID() + "." + extension;
/* 127 */ return fileName; return fileName;
/* */ } }
/* */
/* */
/* */ private static final File getAbsoluteFile(String uploadDir, String fileName) throws IOException { private static final File getAbsoluteFile(String uploadDir, String fileName) throws IOException {
/* 132 */ File desc = new File(uploadDir + File.separator + fileName); File desc = new File(uploadDir + File.separator + fileName);
/* */
/* 134 */ if (!desc.exists()) if (!desc.exists())
/* */ { {
/* 136 */ if (!desc.getParentFile().exists()) if (!desc.getParentFile().exists())
/* */ { {
/* 138 */ desc.getParentFile().mkdirs(); desc.getParentFile().mkdirs();
/* */ } }
/* */ } }
/* 141 */ return desc; return desc;
/* */ } }
/* */
/* */
/* */
/* */
/* */ private static final String getPathFileName(String uploadDir, String fileName) throws IOException { private static final String getPathFileName(String uploadDir, String fileName) throws IOException {
/* 148 */ String pathFileName = uploadDir + "/" + fileName; String pathFileName = uploadDir + "/" + fileName;
/* 149 */ return pathFileName; return pathFileName;
/* */ } }
/* */
/* */
/* */
/* */
/* */
/* */
/* */
/* */
/* */
/* */
/* */
/* */ public static final void assertAllowed(MultipartFile file, String[] allowedExtension) throws FileSizeLimitExceededException, InvalidExtensionException { public static final void assertAllowed(MultipartFile file, String[] allowedExtension) throws FileSizeLimitExceededException, InvalidExtensionException {
/* 163 */ long size = file.getSize(); long size = file.getSize();
/* 164 */ if (size > 52428800L) if (size > 52428800L)
/* */ { {
/* 166 */ throw new FileSizeLimitExceededException(50L); throw new FileSizeLimitExceededException(50L);
/* */ } }
/* */
/* 169 */ String fileName = file.getOriginalFilename(); String fileName = file.getOriginalFilename();
/* 170 */ String extension = getExtension(file); String extension = getExtension(file);
/* 171 */ if (allowedExtension != null && !isAllowedExtension(extension, allowedExtension)) { if (allowedExtension != null && !isAllowedExtension(extension, allowedExtension)) {
/* */
/* 173 */ if (allowedExtension == MimeTypeUtils.IMAGE_EXTENSION) if (allowedExtension == MimeTypeUtils.IMAGE_EXTENSION)
/* */ { {
/* 175 */ throw new InvalidExtensionException.InvalidImageExtensionException(allowedExtension, extension, fileName); throw new InvalidExtensionException.InvalidImageExtensionException(allowedExtension, extension, fileName);
/* */ } }
/* */
/* 178 */ if (allowedExtension == MimeTypeUtils.FLASH_EXTENSION) if (allowedExtension == MimeTypeUtils.FLASH_EXTENSION)
/* */ { {
/* 180 */ throw new InvalidExtensionException.InvalidFlashExtensionException(allowedExtension, extension, fileName); throw new InvalidExtensionException.InvalidFlashExtensionException(allowedExtension, extension, fileName);
/* */ } }
/* */
/* 183 */ if (allowedExtension == MimeTypeUtils.MEDIA_EXTENSION) if (allowedExtension == MimeTypeUtils.MEDIA_EXTENSION)
/* */ { {
/* 185 */ throw new InvalidExtensionException.InvalidMediaExtensionException(allowedExtension, extension, fileName); throw new InvalidExtensionException.InvalidMediaExtensionException(allowedExtension, extension, fileName);
/* */ } }
/* */
/* 188 */ if (allowedExtension == MimeTypeUtils.VIDEO_EXTENSION) if (allowedExtension == MimeTypeUtils.VIDEO_EXTENSION)
/* */ { {
/* 190 */ throw new InvalidExtensionException.InvalidVideoExtensionException(allowedExtension, extension, fileName); throw new InvalidExtensionException.InvalidVideoExtensionException(allowedExtension, extension, fileName);
/* */ } }
/* */
/* */
/* */
/* 195 */ throw new InvalidExtensionException(allowedExtension, extension, fileName); throw new InvalidExtensionException(allowedExtension, extension, fileName);
/* */ } }
/* */ } }
/* */
/* */
/* */
/* */
/* */
/* */
/* */
/* */
/* */
/* */
/* */
/* */ public static final boolean isAllowedExtension(String extension, String[] allowedExtension) { public static final boolean isAllowedExtension(String extension, String[] allowedExtension) {
/* 210 */ for (String str : allowedExtension) { for (String str : allowedExtension) {
/* */
/* 212 */ if (str.equalsIgnoreCase(extension)) if (str.equalsIgnoreCase(extension))
/* */ { {
/* 214 */ return true; return true;
/* */ } }
/* */ } }
/* 217 */ return false; return false;
/* */ } }
/* */
/* */
/* */
/* */
/* */
/* */
/* */
/* */
/* */ public static final String getExtension(MultipartFile file) { public static final String getExtension(MultipartFile file) {
/* 228 */ String extension = FilenameUtils.getExtension(file.getOriginalFilename()); String extension = FilenameUtils.getExtension(file.getOriginalFilename());
/* 229 */ if (StringUtils.isEmpty(extension)) if (StringUtils.isEmpty(extension))
/* */ { {
/* 231 */ extension = MimeTypeUtils.getExtension(file.getContentType()); extension = MimeTypeUtils.getExtension(file.getContentType());
/* */ } }
/* 233 */ return extension; return extension;
/* */ } }
/* */ } }
/* Location: C:\Users\Administrator\Desktop\extracted.zip!\extracted\BOOT-INF\classes\com\archive\commo\\utils\file\FileUploadUtils.class /* Location: C:\Users\Administrator\Desktop\extracted.zip!\extracted\BOOT-INF\classes\com\archive\commo\\utils\file\FileUploadUtils.class

@ -1,6 +1,6 @@
/* */ package com.archive.common.xss /* */ package com.archive.common.xss
-INF.classes.com.archive.common.xss; ;
/* */ /* */
/* */ import com.archive.common.utils.StringUtils; /* */ import com.archive.common.utils.StringUtils;
/* */ import com.archive.common.xss.XssHttpServletRequestWrapper; /* */ import com.archive.common.xss.XssHttpServletRequestWrapper;

@ -1,6 +1,5 @@
/* */ package com.archive.common.xss /* */ package com.archive.common.xss
;
-INF.classes.com.archive.common.xss;
/* */ /* */
/* */ import com.archive.common.utils.html.EscapeUtil; /* */ import com.archive.common.utils.html.EscapeUtil;
/* */ import javax.servlet.http.HttpServletRequest; /* */ import javax.servlet.http.HttpServletRequest;

@ -1,6 +1,5 @@
/* */ package com.archive.framework.aspectj /* */ package com.archive.framework.aspectj
;
-INF.classes.com.archive.framework.aspectj;
/* */ /* */
/* */ import com.archive.common.utils.StringUtils; /* */ import com.archive.common.utils.StringUtils;
/* */ import com.archive.common.utils.security.ShiroUtils; /* */ import com.archive.common.utils.security.ShiroUtils;

@ -1,6 +1,6 @@
/* */ package com.archive.framework.aspectj.lang.annotation /* */ package com.archive.framework.aspectj.lang.annotation
-INF.classes.com.archive.framework.aspectj.lang.annotation; ;
/* */ /* */
/* */ import com.archive.framework.aspectj.lang.annotation.Excel; /* */ import com.archive.framework.aspectj.lang.annotation.Excel;
/* */ /* */

@ -1,6 +1,6 @@
package com.archive.framework.aspectj.lang.annotation package com.archive.framework.aspectj.lang.annotation;
-INF.classes.com.archive.framework.aspectj.lang.annotation;
import java.lang.annotation.ElementType; import java.lang.annotation.ElementType;
import java.lang.annotation.Retention; import java.lang.annotation.Retention;

@ -1,6 +1,6 @@
package com.archive.framework.aspectj.lang.annotation package com.archive.framework.aspectj.lang.annotation
-INF.classes.com.archive.framework.aspectj.lang.annotation; ;
import com.archive.framework.aspectj.lang.enums.BusinessType; import com.archive.framework.aspectj.lang.enums.BusinessType;
import com.archive.framework.aspectj.lang.enums.OperatorType; import com.archive.framework.aspectj.lang.enums.OperatorType;

@ -1,4 +1,4 @@
/* */ package com.archive.framework.aspectj.lang.enums-INF.classes.com.archive.framework.aspectj.lang.enums; /* */ package com.archive.framework.aspectj.lang.enums;
/* */ /* */
/* */ /* */
/* */ /* */

@ -1,4 +1,4 @@
/* */ package com.archive.framework.aspectj.lang.enums-INF.classes.com.archive.framework.aspectj.lang.enums; /* */ package com.archive.framework.aspectj.lang.enums;
/* */ /* */
/* */ /* */
/* */ /* */

@ -1,6 +1,6 @@
/* */ package com.archive.framework.config /* */ package com.archive.framework.config
-INF.classes.com.archive.framework.config; ;
/* */ /* */
/* */ import com.archive.common.utils.spring.SpringUtils; /* */ import com.archive.common.utils.spring.SpringUtils;
/* */ import com.archive.project.dasz.ccgl.service.ICcglService; /* */ import com.archive.project.dasz.ccgl.service.ICcglService;

@ -1,6 +1,6 @@
/* */ package com.archive.framework.config /* */ package com.archive.framework.config
-INF.classes.com.archive.framework.config; ;
/* */ /* */
/* */ import com.google.code.kaptcha.impl.DefaultKaptcha; /* */ import com.google.code.kaptcha.impl.DefaultKaptcha;
/* */ import com.google.code.kaptcha.util.Config; /* */ import com.google.code.kaptcha.util.Config;

@ -1,125 +0,0 @@
/* */ package extracted.BOOT-INF.classes.com.archive.framework.config;
/* */
/* */ import com.alibaba.druid.util.Utils;
/* */ import com.archive.framework.config.DruidConfig;
/* */ import java.io.IOException;
/* */ import javax.servlet.Filter;
/* */ import javax.servlet.FilterChain;
/* */ import javax.servlet.FilterConfig;
/* */ import javax.servlet.ServletException;
/* */ import javax.servlet.ServletRequest;
/* */ import javax.servlet.ServletResponse;
/* */
/* */
/* */
/* */
/* */
/* */
/* */
/* */
/* */
/* */
/* */
/* */
/* */
/* */
/* */
/* */
/* */
/* */
/* */
/* */
/* */
/* */
/* */
/* */
/* */
/* */
/* */
/* */
/* */
/* */
/* */
/* */
/* */
/* */
/* */
/* */
/* */
/* */
/* */
/* */
/* */
/* */
/* */
/* */
/* */
/* */
/* */
/* */
/* */
/* */
/* */
/* */
/* */
/* */
/* */
/* */
/* */
/* */
/* */
/* */
/* */
/* */
/* */
/* */
/* */
/* */
/* */
/* */
/* */
/* */
/* */
/* */
/* */
/* */
/* */
/* */
/* */
/* */
/* */
/* */
/* */
/* */
/* */
/* */
/* */
/* */
/* */
/* */
/* */
/* */ class null
/* */ implements Filter
/* */ {
/* */ public void init(FilterConfig filterConfig) throws ServletException {}
/* */
/* */ public void doFilter(ServletRequest request, ServletResponse response, FilterChain chain) throws IOException, ServletException {
/* 107 */ chain.doFilter(request, response);
/* */
/* 109 */ response.resetBuffer();
/* */
/* 111 */ String text = Utils.readFromResource("support/http/resources/js/common.js");
/* */
/* 113 */ text = text.replaceAll("<a.*?banner\"></a><br/>", "");
/* 114 */ text = text.replaceAll("powered.*?shrek.wang</a>", "");
/* 115 */ response.getWriter().write(text);
/* */ }
/* */
/* */ public void destroy() {}
/* */ }
/* Location: C:\Users\Administrator\Desktop\extracted.zip!\extracted\BOOT-INF\classes\com\archive\framework\config\DruidConfig$1.class
* Java compiler version: 8 (52.0)
* JD-Core Version: 1.1.3
*/

@ -1,6 +1,5 @@
/* */ package com.archive.framework.config /* */ package com.archive.framework.config
;
-INF.classes.com.archive.framework.config;
/* */ /* */
/* */ import java.util.Locale; /* */ import java.util.Locale;
/* */ import org.springframework.context.annotation.Bean; /* */ import org.springframework.context.annotation.Bean;

@ -1,6 +1,6 @@
/* */ package com.archive.framework.config /* */ package com.archive.framework.config
-INF.classes.com.archive.framework.config; ;
/* */ /* */
/* */ import com.google.code.kaptcha.text.impl.DefaultTextCreator; /* */ import com.google.code.kaptcha.text.impl.DefaultTextCreator;
/* */ import java.security.SecureRandom; /* */ import java.security.SecureRandom;

@ -1,6 +1,6 @@
/* */ package com.archive.framework.config /* */ package com.archive.framework.config
-INF.classes.com.archive.framework.config; ;
/* */ /* */
/* */ import com.archive.common.utils.StringUtils; /* */ import com.archive.common.utils.StringUtils;
/* */ import java.io.IOException; /* */ import java.io.IOException;

@ -1,6 +1,6 @@
/* */ package com.archive.framework.config /* */ package com.archive.framework.config
-INF.classes.com.archive.framework.config; ;
/* */ /* */
/* */ import com.archive.framework.config.ArchiveConfig; /* */ import com.archive.framework.config.ArchiveConfig;
/* */ import com.archive.framework.interceptor.RepeatSubmitInterceptor; /* */ import com.archive.framework.interceptor.RepeatSubmitInterceptor;

@ -1,6 +1,6 @@
/* */ package com.archive.framework.config /* */ package com.archive.framework.config
-INF.classes.com.archive.framework.config; ;
/* */ /* */
/* */ import com.archive.common.utils.ServletUtils; /* */ import com.archive.common.utils.ServletUtils;
/* */ import javax.servlet.http.HttpServletRequest; /* */ import javax.servlet.http.HttpServletRequest;

@ -1,6 +1,6 @@
/* */ package com.archive.framework.config /* */ package com.archive.framework.config
-INF.classes.com.archive.framework.config; ;
/* */ /* */
/* */ import at.pollux.thymeleaf.shiro.dialect.ShiroDialect; /* */ import at.pollux.thymeleaf.shiro.dialect.ShiroDialect;
/* */ import com.archive.common.utils.StringUtils; /* */ import com.archive.common.utils.StringUtils;

@ -1,6 +1,6 @@
/* */ package com.archive.framework.config /* */ package com.archive.framework.config
-INF.classes.com.archive.framework.config; ;
/* */ /* */
/* */ import com.archive.framework.config.ArchiveConfig; /* */ import com.archive.framework.config.ArchiveConfig;
/* */ import io.swagger.annotations.ApiOperation; /* */ import io.swagger.annotations.ApiOperation;

@ -1,6 +1,6 @@
/* */ package com.archive.framework.config.properties /* */ package com.archive.framework.config.properties
-INF.classes.com.archive.framework.config.properties; ;
/* */ /* */
/* */ import com.alibaba.druid.pool.DruidDataSource; /* */ import com.alibaba.druid.pool.DruidDataSource;
/* */ import org.springframework.beans.factory.annotation.Value; /* */ import org.springframework.beans.factory.annotation.Value;

@ -1,6 +1,6 @@
/* */ package com.archive.project.common /* */ package com.archive.project.common
-INF.classes.com.archive.project.common; ;
/* */ /* */
/* */ import com.archive.common.utils.StringUtils; /* */ import com.archive.common.utils.StringUtils;
/* */ import com.archive.common.utils.file.FileUploadUtils; /* */ import com.archive.common.utils.file.FileUploadUtils;

@ -1,6 +1,6 @@
package com.archive.project.common.mapper package com.archive.project.common.mapper
-INF.classes.com.archive.project.common.mapper; ;
import java.util.LinkedHashMap; import java.util.LinkedHashMap;
import java.util.List; import java.util.List;

@ -1,6 +1,6 @@
package com.archive.project.common.service package com.archive.project.common.service
-INF.classes.com.archive.project.common.service; ;
import java.util.LinkedHashMap; import java.util.LinkedHashMap;
import java.util.List; import java.util.List;

@ -1,6 +1,6 @@
/* */ package com.archive.project.dabg.bfgl.domain /* */ package com.archive.project.dabg.bfgl.domain
-INF.classes.com.archive.project.dabg.bfgl.domain; ;
/* */ /* */
/* */ import com.archive.framework.aspectj.lang.annotation.Excel; /* */ import com.archive.framework.aspectj.lang.annotation.Excel;
/* */ import com.archive.framework.web.domain.BaseEntity; /* */ import com.archive.framework.web.domain.BaseEntity;

@ -1,6 +1,6 @@
/* */ package com.archive.project.dabg.bfgl.service.impl /* */ package com.archive.project.dabg.bfgl.service.impl
-INF.classes.com.archive.project.dabg.bfgl.service.impl; ;
/* */ /* */
/* */ import com.archive.common.utils.text.Convert; /* */ import com.archive.common.utils.text.Convert;
/* */ import com.archive.project.dabg.bfgl.domain.TKfBfgl; /* */ import com.archive.project.dabg.bfgl.domain.TKfBfgl;

@ -1,6 +1,5 @@
/* */ package com.archive.project.dabg.wsddj.controller /* */ package com.archive.project.dabg.wsddj.controller
;
-INF.classes.com.archive.project.dabg.wsddj.controller;
/* */ /* */
/* */ import com.archive.common.utils.poi.ExcelUtil; /* */ import com.archive.common.utils.poi.ExcelUtil;
/* */ import com.archive.framework.aspectj.lang.annotation.Log; /* */ import com.archive.framework.aspectj.lang.annotation.Log;

@ -1,6 +1,6 @@
package com.archive.project.dabg.wsddj.service package com.archive.project.dabg.wsddj.service
-INF.classes.com.archive.project.dabg.wsddj.service; ;
import com.archive.project.dabg.wsddj.domain.TKfWsddj; import com.archive.project.dabg.wsddj.domain.TKfWsddj;
import java.util.List; import java.util.List;

@ -1,6 +1,6 @@
/* */ package com.archive.project.dacx.archivesearch.controller /* */ package com.archive.project.dacx.archivesearch.controller
-INF.classes.com.archive.project.dacx.archivesearch.controller; ;
/* */ /* */
/* */ import com.archive.framework.web.controller.BaseController; /* */ import com.archive.framework.web.controller.BaseController;
/* */ import com.archive.framework.web.page.PageDomain; /* */ import com.archive.framework.web.page.PageDomain;

@ -1,6 +1,6 @@
package com.archive.project.dacx.archivesearch.service package com.archive.project.dacx.archivesearch.service
-INF.classes.com.archive.project.dacx.archivesearch.service; ;
import java.util.Map; import java.util.Map;

@ -1,6 +1,6 @@
/* */ package com.archive.project.dajs.archiveimportbatch.domain /* */ package com.archive.project.dajs.archiveimportbatch.domain;
-INF.classes.com.archive.project.dajs.archiveimportbatch.domain;
/* */ /* */
/* */ import com.archive.framework.aspectj.lang.annotation.Excel; /* */ import com.archive.framework.aspectj.lang.annotation.Excel;
/* */ import com.archive.framework.web.domain.BaseEntity; /* */ import com.archive.framework.web.domain.BaseEntity;

@ -1,6 +1,6 @@
package com.archive.project.dajs.archiveimportbatch.mapper package com.archive.project.dajs.archiveimportbatch.mapper
-INF.classes.com.archive.project.dajs.archiveimportbatch.mapper; ;
import com.archive.project.dajs.archiveimportbatch.domain.ArchiveImportBatch; import com.archive.project.dajs.archiveimportbatch.domain.ArchiveImportBatch;
import java.util.List; import java.util.List;

@ -1,6 +1,6 @@
/* */ package com.archive.project.dajs.archiveimportbatch.service.impl /* */ package com.archive.project.dajs.archiveimportbatch.service.impl
-INF.classes.com.archive.project.dajs.archiveimportbatch.service.impl; ;
/* */ /* */
/* */ import com.archive.common.archiveUtil.ExcelUtilArchive; /* */ import com.archive.common.archiveUtil.ExcelUtilArchive;
/* */ import com.archive.common.archiveUtil.TableUtil; /* */ import com.archive.common.archiveUtil.TableUtil;

@ -1,4 +1,4 @@
package com.archive.project.dajs.gsbdr.service-INF.classes.com.archive.project.dajs.gsbdr.service; package com.archive.project.dajs.gsbdr.service;
public interface IGsbdrService {} public interface IGsbdrService {}

@ -1,6 +1,6 @@
package com.archive.project.dajs.gsbdr.service.impl package com.archive.project.dajs.gsbdr.service.impl
-INF.classes.com.archive.project.dajs.gsbdr.service.impl; ;
import com.archive.project.common.service.IExecuteSqlService; import com.archive.project.common.service.IExecuteSqlService;
import com.archive.project.dajs.gsbdr.service.IGsbdrService; import com.archive.project.dajs.gsbdr.service.IGsbdrService;

@ -1,6 +1,6 @@
/* */ package com.archive.project.dajs.jsgl.controller /* */ package com.archive.project.dajs.jsgl.controller
-INF.classes.com.archive.project.dajs.jsgl.controller; ;
/* */ /* */
/* */ import com.archive.common.archiveUtil.TableUtil; /* */ import com.archive.common.archiveUtil.TableUtil;
/* */ import com.archive.common.utils.StringUtils; /* */ import com.archive.common.utils.StringUtils;

@ -1,6 +1,6 @@
package com.archive.project.dajs.jsgl.mapper package com.archive.project.dajs.jsgl.mapper
-INF.classes.com.archive.project.dajs.jsgl.mapper; ;
import org.springframework.stereotype.Repository; import org.springframework.stereotype.Repository;

@ -1,6 +1,6 @@
package com.archive.project.dajs.jsgl.service package com.archive.project.dajs.jsgl.service
-INF.classes.com.archive.project.dajs.jsgl.service; ;
import java.io.IOException; import java.io.IOException;
import org.springframework.web.multipart.MultipartFile; import org.springframework.web.multipart.MultipartFile;

@ -1,6 +1,6 @@
/* */ package com.archive.project.dajs.jsgl.service.impl /* */ package com.archive.project.dajs.jsgl.service.impl
-INF.classes.com.archive.project.dajs.jsgl.service.impl; ;
/* */ /* */
/* */ import com.alibaba.fastjson.JSON; /* */ import com.alibaba.fastjson.JSON;
/* */ import com.archive.common.archiveUtil.FileUtils; /* */ import com.archive.common.archiveUtil.FileUtils;

@ -1,6 +1,6 @@
/* */ package com.archive.project.dajs.mldr.controller /* */ package com.archive.project.dajs.mldr.controller
-INF.classes.com.archive.project.dajs.mldr.controller; ;
/* */ /* */
/* */ import com.archive.framework.aspectj.lang.annotation.Log; /* */ import com.archive.framework.aspectj.lang.annotation.Log;
/* */ import com.archive.framework.aspectj.lang.enums.BusinessType; /* */ import com.archive.framework.aspectj.lang.enums.BusinessType;

@ -1,4 +1,4 @@
package com.archive.project.dajs.mldr.service-INF.classes.com.archive.project.dajs.mldr.service; package com.archive.project.dajs.mldr.service;
public interface IMldrService { public interface IMldrService {
boolean dhgl(String paramString); boolean dhgl(String paramString);

@ -1,6 +1,6 @@
/* */ package com.archive.project.dajs.qwgj.controller /* */ package com.archive.project.dajs.qwgj.controller
-INF.classes.com.archive.project.dajs.qwgj.controller; ;
/* */ /* */
/* */ import com.archive.framework.web.controller.BaseController; /* */ import com.archive.framework.web.controller.BaseController;
/* */ import com.archive.framework.web.page.TableDataInfo; /* */ import com.archive.framework.web.page.TableDataInfo;

@ -1,6 +1,6 @@
/* */ package com.archive.project.dajs.recycle.controller /* */ package com.archive.project.dajs.recycle.controller
-INF.classes.com.archive.project.dajs.recycle.controller; ;
/* */ /* */
/* */ import com.archive.framework.aspectj.lang.annotation.Log; /* */ import com.archive.framework.aspectj.lang.annotation.Log;
/* */ import com.archive.framework.aspectj.lang.enums.BusinessType; /* */ import com.archive.framework.aspectj.lang.enums.BusinessType;

@ -1,6 +1,6 @@
/* */ package com.archive.project.dasz.ccgl.domain /* */ package com.archive.project.dasz.ccgl.domain
-INF.classes.com.archive.project.dasz.ccgl.domain; ;
/* */ /* */
/* */ import com.archive.framework.aspectj.lang.annotation.Excel; /* */ import com.archive.framework.aspectj.lang.annotation.Excel;
/* */ import com.archive.framework.web.domain.BaseEntity; /* */ import com.archive.framework.web.domain.BaseEntity;

@ -1,6 +1,6 @@
/* */ package com.archive.project.dasz.ccgl.service.impl /* */ package com.archive.project.dasz.ccgl.service.impl
-INF.classes.com.archive.project.dasz.ccgl.service.impl; ;
/* */ /* */
/* */ import com.archive.common.archiveUtil.TableUtil; /* */ import com.archive.common.archiveUtil.TableUtil;
/* */ import com.archive.common.utils.StringUtils; /* */ import com.archive.common.utils.StringUtils;

@ -1,6 +1,6 @@
/* */ package com.archive.project.dasz.gridcolumns.controller /* */ package com.archive.project.dasz.gridcolumns.controller
-INF.classes.com.archive.project.dasz.gridcolumns.controller; ;
/* */ /* */
/* */ import com.archive.common.utils.poi.ExcelUtil; /* */ import com.archive.common.utils.poi.ExcelUtil;
/* */ import com.archive.framework.aspectj.lang.annotation.Log; /* */ import com.archive.framework.aspectj.lang.annotation.Log;

@ -1,6 +1,5 @@
/* */ package com.archive.project.dasz.gridcolumns.domain /* */ package com.archive.project.dasz.gridcolumns.domain
;
-INF.classes.com.archive.project.dasz.gridcolumns.domain;
/* */ /* */
/* */ import com.archive.framework.aspectj.lang.annotation.Excel; /* */ import com.archive.framework.aspectj.lang.annotation.Excel;
/* */ import com.archive.framework.web.domain.BaseEntity; /* */ import com.archive.framework.web.domain.BaseEntity;

@ -1,6 +1,6 @@
/* */ package com.archive.project.dasz.gridcolumns.service.impl /* */ package com.archive.project.dasz.gridcolumns.service.impl
-INF.classes.com.archive.project.dasz.gridcolumns.service.impl; ;
/* */ /* */
/* */ import com.archive.common.utils.text.Convert; /* */ import com.archive.common.utils.text.Convert;
/* */ import com.archive.framework.config.ArchiveConfig; /* */ import com.archive.framework.config.ArchiveConfig;

@ -1,6 +1,6 @@
/* */ package com.archive.project.dasz.mgc.controller /* */ package com.archive.project.dasz.mgc.controller
-INF.classes.com.archive.project.dasz.mgc.controller; ;
/* */ /* */
/* */ import com.archive.common.utils.poi.ExcelUtil; /* */ import com.archive.common.utils.poi.ExcelUtil;
/* */ import com.archive.framework.aspectj.lang.annotation.Log; /* */ import com.archive.framework.aspectj.lang.annotation.Log;

@ -1,6 +1,6 @@
/* */ package com.archive.project.dasz.mgc.domain /* */ package com.archive.project.dasz.mgc.domain
-INF.classes.com.archive.project.dasz.mgc.domain; ;
/* */ /* */
/* */ import com.archive.framework.aspectj.lang.annotation.Excel; /* */ import com.archive.framework.aspectj.lang.annotation.Excel;
/* */ import com.archive.framework.web.domain.BaseEntity; /* */ import com.archive.framework.web.domain.BaseEntity;

@ -1,6 +1,6 @@
package com.archive.project.dasz.mgc.mapper package com.archive.project.dasz.mgc.mapper
-INF.classes.com.archive.project.dasz.mgc.mapper; ;
import com.archive.project.dasz.mgc.domain.Mgc; import com.archive.project.dasz.mgc.domain.Mgc;
import java.util.List; import java.util.List;

@ -1,6 +1,6 @@
package com.archive.project.dasz.mgc.service package com.archive.project.dasz.mgc.service
-INF.classes.com.archive.project.dasz.mgc.service; ;
import com.archive.project.dasz.mgc.domain.Mgc; import com.archive.project.dasz.mgc.domain.Mgc;
import java.util.List; import java.util.List;

@ -1,6 +1,6 @@
package com.archive.project.dasz.physicaltable.service package com.archive.project.dasz.physicaltable.service
-INF.classes.com.archive.project.dasz.physicaltable.service; ;
import com.archive.project.dasz.physicaltable.domain.PhysicalTable; import com.archive.project.dasz.physicaltable.domain.PhysicalTable;
import com.archive.project.dasz.physicaltablecolumn.domain.PhysicalTableColumn; import com.archive.project.dasz.physicaltablecolumn.domain.PhysicalTableColumn;

@ -1,6 +1,6 @@
/* */ package com.archive.project.dasz.physicaltablecolumn.controller /* */ package com.archive.project.dasz.physicaltablecolumn.controller
-INF.classes.com.archive.project.dasz.physicaltablecolumn.controller; ;
/* */ /* */
/* */ import com.archive.common.utils.poi.ExcelUtil; /* */ import com.archive.common.utils.poi.ExcelUtil;
/* */ import com.archive.framework.aspectj.lang.annotation.Log; /* */ import com.archive.framework.aspectj.lang.annotation.Log;

@ -1,6 +1,6 @@
package com.archive.project.dasz.physicaltablecolumn.service package com.archive.project.dasz.physicaltablecolumn.service
-INF.classes.com.archive.project.dasz.physicaltablecolumn.service; ;
import com.archive.project.dasz.physicaltablecolumn.domain.PhysicalTableColumn; import com.archive.project.dasz.physicaltablecolumn.domain.PhysicalTableColumn;
import java.util.List; import java.util.List;

@ -1,6 +1,6 @@
/* */ package com.archive.project.dasz.qzgl.domain /* */ package com.archive.project.dasz.qzgl.domain
-INF.classes.com.archive.project.dasz.qzgl.domain; ;
/* */ /* */
/* */ import com.archive.framework.aspectj.lang.annotation.Excel; /* */ import com.archive.framework.aspectj.lang.annotation.Excel;
/* */ import com.archive.framework.web.domain.BaseEntity; /* */ import com.archive.framework.web.domain.BaseEntity;

@ -1,6 +1,6 @@
package com.archive.project.dasz.qzgl.mapper package com.archive.project.dasz.qzgl.mapper
-INF.classes.com.archive.project.dasz.qzgl.mapper; ;
import com.archive.project.dasz.qzgl.domain.TPsFondsCode; import com.archive.project.dasz.qzgl.domain.TPsFondsCode;
import java.util.List; import java.util.List;

@ -1,6 +1,6 @@
package com.archive.project.dazl.dagl.mapper package com.archive.project.dazl.dagl.mapper
-INF.classes.com.archive.project.dazl.dagl.mapper; ;
import org.springframework.stereotype.Repository; import org.springframework.stereotype.Repository;

@ -1,4 +1,4 @@
package com.archive.project.dazl.dagl.service-INF.classes.com.archive.project.dazl.dagl.service; package com.archive.project.dazl.dagl.service;
public interface IDaglService { public interface IDaglService {
boolean thjsk(String paramString1, String paramString2, String paramString3, String paramString4); boolean thjsk(String paramString1, String paramString2, String paramString3, String paramString4);

@ -1,6 +1,6 @@
/* */ package com.archive.project.dazl.dajd.controller /* */ package com.archive.project.dazl.dajd.controller
-INF.classes.com.archive.project.dazl.dajd.controller; ;
/* */ /* */
/* */ import com.archive.common.archiveUtil.TableUtil; /* */ import com.archive.common.archiveUtil.TableUtil;
/* */ import com.archive.common.utils.poi.ExcelUtil; /* */ import com.archive.common.utils.poi.ExcelUtil;

@ -1,6 +1,6 @@
/* */ package com.archive.project.dazl.dajd.domain /* */ package com.archive.project.dazl.dajd.domain
-INF.classes.com.archive.project.dazl.dajd.domain; ;
/* */ /* */
/* */ import com.archive.framework.aspectj.lang.annotation.Excel; /* */ import com.archive.framework.aspectj.lang.annotation.Excel;
/* */ import com.archive.framework.web.domain.BaseEntity; /* */ import com.archive.framework.web.domain.BaseEntity;

@ -1,6 +1,5 @@
package com.archive.project.dazl.dajd.mapper package com.archive.project.dazl.dajd.mapper
;
-INF.classes.com.archive.project.dazl.dajd.mapper;
import com.archive.project.dazl.dajd.domain.TJdTask; import com.archive.project.dazl.dajd.domain.TJdTask;
import java.util.List; import java.util.List;

@ -1,6 +1,6 @@
package com.archive.project.dazl.dajd.service package com.archive.project.dazl.dajd.service
-INF.classes.com.archive.project.dazl.dajd.service; ;
import com.archive.project.dazl.dajd.domain.TJdTask; import com.archive.project.dazl.dajd.domain.TJdTask;
import java.util.List; import java.util.List;

@ -1,6 +1,6 @@
package com.archive.project.dazl.ggfj.service package com.archive.project.dazl.ggfj.service
-INF.classes.com.archive.project.dazl.ggfj.service; ;
import com.archive.project.dazl.ggfj.domain.TGgfj; import com.archive.project.dazl.ggfj.domain.TGgfj;
import java.util.List; import java.util.List;

@ -1,6 +1,6 @@
/* */ package com.archive.project.dazl.ggfj.service.impl /* */ package com.archive.project.dazl.ggfj.service.impl
-INF.classes.com.archive.project.dazl.ggfj.service.impl; ;
/* */ /* */
/* */ import com.archive.common.utils.text.Convert; /* */ import com.archive.common.utils.text.Convert;
/* */ import com.archive.project.dazl.ggfj.domain.TGgfj; /* */ import com.archive.project.dazl.ggfj.domain.TGgfj;

@ -1,6 +1,5 @@
/* */ package com.archive.project.dazl.jdmx.controller /* */ package com.archive.project.dazl.jdmx.controller;
-INF.classes.com.archive.project.dazl.jdmx.controller;
/* */ /* */
/* */ import com.archive.common.utils.poi.ExcelUtil; /* */ import com.archive.common.utils.poi.ExcelUtil;
/* */ import com.archive.framework.aspectj.lang.annotation.Log; /* */ import com.archive.framework.aspectj.lang.annotation.Log;

@ -1,6 +1,5 @@
/* */ package com.archive.project.dazl.jdmx.domain /* */ package com.archive.project.dazl.jdmx.domain
;
-INF.classes.com.archive.project.dazl.jdmx.domain;
/* */ /* */
/* */ import com.archive.framework.aspectj.lang.annotation.Excel; /* */ import com.archive.framework.aspectj.lang.annotation.Excel;
/* */ import com.archive.framework.web.domain.BaseEntity; /* */ import com.archive.framework.web.domain.BaseEntity;

@ -1,6 +1,6 @@
package com.archive.project.dazl.jdmx.mapper package com.archive.project.dazl.jdmx.mapper
-INF.classes.com.archive.project.dazl.jdmx.mapper; ;
import com.archive.project.dazl.jdmx.domain.TJdTaskDetail; import com.archive.project.dazl.jdmx.domain.TJdTaskDetail;
import java.util.List; import java.util.List;

@ -1,6 +1,6 @@
/* */ package com.archive.project.dazl.wsnj.controller /* */ package com.archive.project.dazl.wsnj.controller
-INF.classes.com.archive.project.dazl.wsnj.controller; ;
/* */ /* */
/* */ import com.archive.common.utils.poi.ExcelUtil; /* */ import com.archive.common.utils.poi.ExcelUtil;
/* */ import com.archive.framework.aspectj.lang.annotation.Log; /* */ import com.archive.framework.aspectj.lang.annotation.Log;

@ -1,6 +1,6 @@
/* */ package com.archive.project.dazl.wsnj.domain /* */ package com.archive.project.dazl.wsnj.domain
-INF.classes.com.archive.project.dazl.wsnj.domain; ;
/* */ /* */
/* */ import com.archive.framework.aspectj.lang.annotation.Excel; /* */ import com.archive.framework.aspectj.lang.annotation.Excel;
/* */ import com.archive.framework.web.domain.BaseEntity; /* */ import com.archive.framework.web.domain.BaseEntity;

@ -1,6 +1,6 @@
package com.archive.project.dazl.wsnj.mapper package com.archive.project.dazl.wsnj.mapper
-INF.classes.com.archive.project.dazl.wsnj.mapper; ;
import com.archive.project.dazl.wsnj.domain.TWsnj; import com.archive.project.dazl.wsnj.domain.TWsnj;
import java.util.List; import java.util.List;

@ -1,88 +0,0 @@
/* */ package com.archive.project.demo.controller
-INF.classes.com.archive.project.demo.controller;
/* */
/* */ import org.springframework.stereotype.Controller;
/* */ import org.springframework.web.bind.annotation.GetMapping;
/* */ import org.springframework.web.bind.annotation.RequestMapping;
/* */
/* */
/* */
/* */
/* */
/* */
/* */ @Controller
/* */ @RequestMapping({"/demo/modal"})
/* */ public class DemoDialogController
/* */ {
/* 16 */ private String prefix = "demo/modal";
/* */
/* */
/* */
/* */
/* */
/* */ @GetMapping({"/dialog"})
/* */ public String dialog() {
/* 24 */ return this.prefix + "/dialog";
/* */ }
/* */
/* */
/* */
/* */
/* */
/* */ @GetMapping({"/layer"})
/* */ public String layer() {
/* 33 */ return this.prefix + "/layer";
/* */ }
/* */
/* */
/* */
/* */
/* */
/* */ @GetMapping({"/form"})
/* */ public String form() {
/* 42 */ return this.prefix + "/form";
/* */ }
/* */
/* */
/* */
/* */
/* */
/* */ @GetMapping({"/table"})
/* */ public String table() {
/* 51 */ return this.prefix + "/table";
/* */ }
/* */
/* */
/* */
/* */
/* */
/* */ @GetMapping({"/check"})
/* */ public String check() {
/* 60 */ return this.prefix + "/table/check";
/* */ }
/* */
/* */
/* */
/* */
/* */
/* */ @GetMapping({"/radio"})
/* */ public String radio() {
/* 69 */ return this.prefix + "/table/radio";
/* */ }
/* */
/* */
/* */
/* */
/* */
/* */ @GetMapping({"/parent"})
/* */ public String parent() {
/* 78 */ return this.prefix + "/table/parent";
/* */ }
/* */ }
/* Location: C:\Users\Administrator\Desktop\extracted.zip!\extracted\BOOT-INF\classes\com\archive\project\demo\controller\DemoDialogController.class
* Java compiler version: 8 (52.0)
* JD-Core Version: 1.1.3
*/

File diff suppressed because one or more lines are too long

@ -1,43 +0,0 @@
/* */ package com.archive.project.demo.controller
-INF.classes.com.archive.project.demo.controller;
/* */
/* */ import org.springframework.stereotype.Controller;
/* */ import org.springframework.web.bind.annotation.GetMapping;
/* */ import org.springframework.web.bind.annotation.RequestMapping;
/* */
/* */
/* */
/* */
/* */
/* */
/* */ @Controller
/* */ @RequestMapping({"/demo/icon"})
/* */ public class DemoIconController
/* */ {
/* 16 */ private String prefix = "demo/icon";
/* */
/* */
/* */
/* */
/* */
/* */ @GetMapping({"/fontawesome"})
/* */ public String fontAwesome() {
/* 24 */ return this.prefix + "/fontawesome";
/* */ }
/* */
/* */
/* */
/* */
/* */
/* */ @GetMapping({"/glyphicons"})
/* */ public String glyphicons() {
/* 33 */ return this.prefix + "/glyphicons";
/* */ }
/* */ }
/* Location: C:\Users\Administrator\Desktop\extracted.zip!\extracted\BOOT-INF\classes\com\archive\project\demo\controller\DemoIconController.class
* Java compiler version: 8 (52.0)
* JD-Core Version: 1.1.3
*/

@ -1,334 +0,0 @@
/* */ package com.archive.project.demo.controller
-INF.classes.com.archive.project.demo.controller;
/* */
/* */ import com.archive.common.exception.BusinessException;
/* */ import com.archive.common.utils.StringUtils;
/* */ import com.archive.common.utils.poi.ExcelUtil;
/* */ import com.archive.common.utils.text.Convert;
/* */ import com.archive.framework.web.controller.BaseController;
/* */ import com.archive.framework.web.domain.AjaxResult;
/* */ import com.archive.framework.web.page.PageDomain;
/* */ import com.archive.framework.web.page.TableDataInfo;
/* */ import com.archive.framework.web.page.TableSupport;
/* */ import com.archive.project.demo.domain.CustomerModel;
/* */ import com.archive.project.demo.domain.UserOperateModel;
/* */ import java.util.ArrayList;
/* */ import java.util.LinkedHashMap;
/* */ import java.util.List;
/* */ import java.util.Map;
/* */ import org.springframework.stereotype.Controller;
/* */ import org.springframework.ui.ModelMap;
/* */ import org.springframework.web.bind.annotation.GetMapping;
/* */ import org.springframework.web.bind.annotation.PathVariable;
/* */ import org.springframework.web.bind.annotation.PostMapping;
/* */ import org.springframework.web.bind.annotation.RequestMapping;
/* */ import org.springframework.web.bind.annotation.ResponseBody;
/* */ import org.springframework.web.multipart.MultipartFile;
/* */
/* */
/* */ @Controller
/* */ @RequestMapping({"/demo/operate"})
/* */ public class DemoOperateController
/* */ extends BaseController
/* */ {
/* */ private String prefix;
/* */
/* */ public DemoOperateController() {
/* 36 */ this.prefix = "demo/operate";
/* */
/* */
/* */
/* 40 */ users.put(Integer.valueOf(1), new UserOperateModel(1, "1000001", "测试1", "0", "15888888888", "ry@qq.com", 150.0D, "0"));
/* 41 */ users.put(Integer.valueOf(2), new UserOperateModel(2, "1000002", "测试2", "1", "15666666666", "ry@qq.com", 180.0D, "1"));
/* 42 */ users.put(Integer.valueOf(3), new UserOperateModel(3, "1000003", "测试3", "0", "15666666666", "ry@qq.com", 110.0D, "1"));
/* 43 */ users.put(Integer.valueOf(4), new UserOperateModel(4, "1000004", "测试4", "1", "15666666666", "ry@qq.com", 220.0D, "1"));
/* 44 */ users.put(Integer.valueOf(5), new UserOperateModel(5, "1000005", "测试5", "0", "15666666666", "ry@qq.com", 140.0D, "1"));
/* 45 */ users.put(Integer.valueOf(6), new UserOperateModel(6, "1000006", "测试6", "1", "15666666666", "ry@qq.com", 330.0D, "1"));
/* 46 */ users.put(Integer.valueOf(7), new UserOperateModel(7, "1000007", "测试7", "0", "15666666666", "ry@qq.com", 160.0D, "1"));
/* 47 */ users.put(Integer.valueOf(8), new UserOperateModel(8, "1000008", "测试8", "1", "15666666666", "ry@qq.com", 170.0D, "1"));
/* 48 */ users.put(Integer.valueOf(9), new UserOperateModel(9, "1000009", "测试9", "0", "15666666666", "ry@qq.com", 180.0D, "1"));
/* 49 */ users.put(Integer.valueOf(10), new UserOperateModel(10, "1000010", "测试10", "0", "15666666666", "ry@qq.com", 210.0D, "1"));
/* 50 */ users.put(Integer.valueOf(11), new UserOperateModel(11, "1000011", "测试11", "1", "15666666666", "ry@qq.com", 110.0D, "1"));
/* 51 */ users.put(Integer.valueOf(12), new UserOperateModel(12, "1000012", "测试12", "0", "15666666666", "ry@qq.com", 120.0D, "1"));
/* 52 */ users.put(Integer.valueOf(13), new UserOperateModel(13, "1000013", "测试13", "1", "15666666666", "ry@qq.com", 380.0D, "1"));
/* 53 */ users.put(Integer.valueOf(14), new UserOperateModel(14, "1000014", "测试14", "0", "15666666666", "ry@qq.com", 280.0D, "1"));
/* 54 */ users.put(Integer.valueOf(15), new UserOperateModel(15, "1000015", "测试15", "0", "15666666666", "ry@qq.com", 570.0D, "1"));
/* 55 */ users.put(Integer.valueOf(16), new UserOperateModel(16, "1000016", "测试16", "1", "15666666666", "ry@qq.com", 260.0D, "1"));
/* 56 */ users.put(Integer.valueOf(17), new UserOperateModel(17, "1000017", "测试17", "1", "15666666666", "ry@qq.com", 210.0D, "1"));
/* 57 */ users.put(Integer.valueOf(18), new UserOperateModel(18, "1000018", "测试18", "1", "15666666666", "ry@qq.com", 340.0D, "1"));
/* 58 */ users.put(Integer.valueOf(19), new UserOperateModel(19, "1000019", "测试19", "1", "15666666666", "ry@qq.com", 160.0D, "1"));
/* 59 */ users.put(Integer.valueOf(20), new UserOperateModel(20, "1000020", "测试20", "1", "15666666666", "ry@qq.com", 220.0D, "1"));
/* 60 */ users.put(Integer.valueOf(21), new UserOperateModel(21, "1000021", "测试21", "1", "15666666666", "ry@qq.com", 120.0D, "1"));
/* 61 */ users.put(Integer.valueOf(22), new UserOperateModel(22, "1000022", "测试22", "1", "15666666666", "ry@qq.com", 130.0D, "1"));
/* 62 */ users.put(Integer.valueOf(23), new UserOperateModel(23, "1000023", "测试23", "1", "15666666666", "ry@qq.com", 490.0D, "1"));
/* 63 */ users.put(Integer.valueOf(24), new UserOperateModel(24, "1000024", "测试24", "1", "15666666666", "ry@qq.com", 570.0D, "1"));
/* 64 */ users.put(Integer.valueOf(25), new UserOperateModel(25, "1000025", "测试25", "1", "15666666666", "ry@qq.com", 250.0D, "1"));
/* 65 */ users.put(Integer.valueOf(26), new UserOperateModel(26, "1000026", "测试26", "1", "15666666666", "ry@qq.com", 250.0D, "1"));
/* */ }
/* */
/* */
/* */ private static final Map<Integer, UserOperateModel> users = new LinkedHashMap<>();
/* */
/* */
/* */ @GetMapping({"/table"})
/* */ public String table() {
/* 74 */ return this.prefix + "/table";
/* */ }
/* */
/* */
/* */
/* */
/* */
/* */ @GetMapping({"/other"})
/* */ public String other() {
/* 83 */ return this.prefix + "/other";
/* */ }
/* */
/* */
/* */
/* */
/* */
/* */ @PostMapping({"/list"})
/* */ @ResponseBody
/* */ public TableDataInfo list(UserOperateModel userModel) {
/* 93 */ TableDataInfo rspData = new TableDataInfo();
/* 94 */ List<UserOperateModel> userList = new ArrayList<>(users.values());
/* */
/* 96 */ if (StringUtils.isNotEmpty(userModel.getSearchValue())) {
/* */
/* 98 */ userList.clear();
/* 99 */ for (Map.Entry<Integer, UserOperateModel> entry : users.entrySet())
/* */ {
/* 101 */ if (((UserOperateModel)entry.getValue()).getUserName().equals(userModel.getSearchValue()))
/* */ {
/* 103 */ userList.add(entry.getValue());
/* */ }
/* */ }
/* */
/* 107 */ } else if (StringUtils.isNotEmpty(userModel.getUserName())) {
/* */
/* 109 */ userList.clear();
/* 110 */ for (Map.Entry<Integer, UserOperateModel> entry : users.entrySet()) {
/* */
/* 112 */ if (((UserOperateModel)entry.getValue()).getUserName().equals(userModel.getUserName()))
/* */ {
/* 114 */ userList.add(entry.getValue());
/* */ }
/* */ }
/* */ }
/* 118 */ PageDomain pageDomain = TableSupport.buildPageRequest();
/* 119 */ if (null == pageDomain.getPageNum() || null == pageDomain.getPageSize()) {
/* */
/* 121 */ rspData.setRows(userList);
/* 122 */ rspData.setTotal(userList.size());
/* 123 */ return rspData;
/* */ }
/* 125 */ Integer pageNum = Integer.valueOf((pageDomain.getPageNum().intValue() - 1) * 10);
/* 126 */ Integer pageSize = Integer.valueOf(pageDomain.getPageNum().intValue() * 10);
/* 127 */ if (pageSize.intValue() > userList.size())
/* */ {
/* 129 */ pageSize = Integer.valueOf(userList.size());
/* */ }
/* 131 */ rspData.setRows(userList.subList(pageNum.intValue(), pageSize.intValue()));
/* 132 */ rspData.setTotal(userList.size());
/* 133 */ return rspData;
/* */ }
/* */
/* */
/* */
/* */
/* */
/* */ @GetMapping({"/add"})
/* */ public String add(ModelMap mmap) {
/* 142 */ return this.prefix + "/add";
/* */ }
/* */
/* */
/* */
/* */
/* */
/* */ @PostMapping({"/add"})
/* */ @ResponseBody
/* */ public AjaxResult addSave(UserOperateModel user) {
/* 152 */ Integer userId = Integer.valueOf(users.size() + 1);
/* 153 */ user.setUserId(userId.intValue());
/* 154 */ return AjaxResult.success(users.put(userId, user));
/* */ }
/* */
/* */
/* */
/* */
/* */
/* */ @PostMapping({"/customer/add"})
/* */ @ResponseBody
/* */ public AjaxResult addSave(CustomerModel customerModel) {
/* 164 */ System.out.println(customerModel.toString());
/* 165 */ return AjaxResult.success();
/* */ }
/* */
/* */
/* */
/* */
/* */
/* */ @GetMapping({"/edit/{userId}"})
/* */ public String edit(@PathVariable("userId") Integer userId, ModelMap mmap) {
/* 174 */ mmap.put("user", users.get(userId));
/* 175 */ return this.prefix + "/edit";
/* */ }
/* */
/* */
/* */
/* */
/* */
/* */ @PostMapping({"/edit"})
/* */ @ResponseBody
/* */ public AjaxResult editSave(UserOperateModel user) {
/* 185 */ return AjaxResult.success(users.put(Integer.valueOf(user.getUserId()), user));
/* */ }
/* */
/* */
/* */
/* */
/* */
/* */ @PostMapping({"/export"})
/* */ @ResponseBody
/* */ public AjaxResult export(UserOperateModel user) {
/* 195 */ List<UserOperateModel> list = new ArrayList<>(users.values());
/* 196 */ ExcelUtil<UserOperateModel> util = new ExcelUtil(UserOperateModel.class);
/* 197 */ return util.exportExcel(list, "用户数据");
/* */ }
/* */
/* */
/* */
/* */
/* */
/* */ @GetMapping({"/importTemplate"})
/* */ @ResponseBody
/* */ public AjaxResult importTemplate() {
/* 207 */ ExcelUtil<UserOperateModel> util = new ExcelUtil(UserOperateModel.class);
/* 208 */ return util.importTemplateExcel("用户数据");
/* */ }
/* */
/* */
/* */
/* */
/* */
/* */ @PostMapping({"/importData"})
/* */ @ResponseBody
/* */ public AjaxResult importData(MultipartFile file, boolean updateSupport) throws Exception {
/* 218 */ ExcelUtil<UserOperateModel> util = new ExcelUtil(UserOperateModel.class);
/* 219 */ List<UserOperateModel> userList = util.importExcel(file.getInputStream());
/* 220 */ String message = importUser(userList, Boolean.valueOf(updateSupport));
/* 221 */ return AjaxResult.success(message);
/* */ }
/* */
/* */
/* */
/* */
/* */
/* */ @PostMapping({"/remove"})
/* */ @ResponseBody
/* */ public AjaxResult remove(String ids) {
/* 231 */ Integer[] userIds = Convert.toIntArray(ids);
/* 232 */ for (Integer userId : userIds)
/* */ {
/* 234 */ users.remove(userId);
/* */ }
/* 236 */ return AjaxResult.success();
/* */ }
/* */
/* */
/* */
/* */
/* */
/* */ @GetMapping({"/detail/{userId}"})
/* */ public String detail(@PathVariable("userId") Integer userId, ModelMap mmap) {
/* 245 */ mmap.put("user", users.get(userId));
/* 246 */ return this.prefix + "/detail";
/* */ }
/* */
/* */
/* */ @PostMapping({"/clean"})
/* */ @ResponseBody
/* */ public AjaxResult clean() {
/* 253 */ users.clear();
/* 254 */ return success();
/* */ }
/* */
/* */
/* */
/* */
/* */
/* */
/* */
/* */
/* */
/* */ public String importUser(List<UserOperateModel> userList, Boolean isUpdateSupport) {
/* 266 */ if (StringUtils.isNull(userList) || userList.size() == 0)
/* */ {
/* 268 */ throw new BusinessException("导入用户数据不能为空!");
/* */ }
/* 270 */ int successNum = 0;
/* 271 */ int failureNum = 0;
/* 272 */ StringBuilder successMsg = new StringBuilder();
/* 273 */ StringBuilder failureMsg = new StringBuilder();
/* 274 */ for (UserOperateModel user : userList) {
/* */
/* */
/* */ try {
/* */
/* 279 */ boolean userFlag = false;
/* 280 */ for (Map.Entry<Integer, UserOperateModel> entry : users.entrySet()) {
/* */
/* 282 */ if (((UserOperateModel)entry.getValue()).getUserName().equals(user.getUserName())) {
/* */
/* 284 */ userFlag = true;
/* */ break;
/* */ }
/* */ }
/* 288 */ if (!userFlag) {
/* */
/* 290 */ Integer userId = Integer.valueOf(users.size() + 1);
/* 291 */ user.setUserId(userId.intValue());
/* 292 */ users.put(userId, user);
/* 293 */ successNum++;
/* 294 */ successMsg.append("<br/>" + successNum + "、用户 " + user.getUserName() + " 导入成功"); continue;
/* */ }
/* 296 */ if (isUpdateSupport.booleanValue()) {
/* */
/* 298 */ users.put(Integer.valueOf(user.getUserId()), user);
/* 299 */ successNum++;
/* 300 */ successMsg.append("<br/>" + successNum + "、用户 " + user.getUserName() + " 更新成功");
/* */
/* */ continue;
/* */ }
/* 304 */ failureNum++;
/* 305 */ failureMsg.append("<br/>" + failureNum + "、用户 " + user.getUserName() + " 已存在");
/* */
/* */ }
/* 308 */ catch (Exception e) {
/* */
/* 310 */ failureNum++;
/* 311 */ String msg = "<br/>" + failureNum + "、账号 " + user.getUserName() + " 导入失败:";
/* 312 */ failureMsg.append(msg + e.getMessage());
/* */ }
/* */ }
/* 315 */ if (failureNum > 0) {
/* */
/* 317 */ failureMsg.insert(0, "很抱歉,导入失败!共 " + failureNum + " 条数据格式不正确,错误如下:");
/* 318 */ throw new BusinessException(failureMsg.toString());
/* */ }
/* */
/* */
/* 322 */ successMsg.insert(0, "恭喜您,数据已全部导入成功!共 " + successNum + " 条,数据如下:");
/* */
/* 324 */ return successMsg.toString();
/* */ }
/* */ }
/* Location: C:\Users\Administrator\Desktop\extracted.zip!\extracted\BOOT-INF\classes\com\archive\project\demo\controller\DemoOperateController.class
* Java compiler version: 8 (52.0)
* JD-Core Version: 1.1.3
*/

@ -1,61 +0,0 @@
/* */ package com.archive.project.demo.controller
-INF.classes.com.archive.project.demo.controller;
/* */
/* */ import org.springframework.stereotype.Controller;
/* */ import org.springframework.web.bind.annotation.GetMapping;
/* */ import org.springframework.web.bind.annotation.RequestMapping;
/* */
/* */
/* */
/* */
/* */
/* */
/* */ @Controller
/* */ @RequestMapping({"/demo/report"})
/* */ public class DemoReportController
/* */ {
/* 16 */ private String prefix = "demo/report";
/* */
/* */
/* */
/* */
/* */
/* */ @GetMapping({"/echarts"})
/* */ public String echarts() {
/* 24 */ return this.prefix + "/echarts";
/* */ }
/* */
/* */
/* */
/* */
/* */
/* */ @GetMapping({"/peity"})
/* */ public String peity() {
/* 33 */ return this.prefix + "/peity";
/* */ }
/* */
/* */
/* */
/* */
/* */
/* */ @GetMapping({"/sparkline"})
/* */ public String sparkline() {
/* 42 */ return this.prefix + "/sparkline";
/* */ }
/* */
/* */
/* */
/* */
/* */
/* */ @GetMapping({"/metrics"})
/* */ public String metrics() {
/* 51 */ return this.prefix + "/metrics";
/* */ }
/* */ }
/* Location: C:\Users\Administrator\Desktop\extracted.zip!\extracted\BOOT-INF\classes\com\archive\project\demo\controller\DemoReportController.class
* Java compiler version: 8 (52.0)
* JD-Core Version: 1.1.3
*/

@ -1,363 +0,0 @@
/* */ package com.archive.project.demo.controller
;
/* */
/* */ import com.archive.common.utils.StringUtils;
/* */ import com.archive.framework.web.controller.BaseController;
/* */ import com.archive.framework.web.domain.AjaxResult;
/* */ import com.archive.framework.web.page.PageDomain;
/* */ import com.archive.framework.web.page.TableDataInfo;
/* */ import com.archive.framework.web.page.TableSupport;
/* */ import com.archive.project.demo.controller.UserTableColumn;
/* */ import com.archive.project.demo.controller.UserTableModel;
/* */ import java.util.ArrayList;
/* */ import java.util.Arrays;
/* */ import java.util.Collections;
/* */ import java.util.List;
/* */ import org.springframework.stereotype.Controller;
/* */ import org.springframework.ui.ModelMap;
/* */ import org.springframework.web.bind.annotation.GetMapping;
/* */ import org.springframework.web.bind.annotation.PostMapping;
/* */ import org.springframework.web.bind.annotation.RequestMapping;
/* */ import org.springframework.web.bind.annotation.ResponseBody;
/* */
/* */
/* */
/* */ @Controller
/* */ @RequestMapping({"/demo/table"})
/* */ public class DemoTableController
/* */ extends BaseController
/* */ {
/* */ private String prefix;
/* */
/* */ public DemoTableController() {
/* 32 */ this.prefix = "demo/table";
/* */
/* */
/* */
/* 36 */ users.add(new UserTableModel(1, "1000001", "测试1", "0", "15888888888", "ry@qq.com", 150.0D, "0"));
/* 37 */ users.add(new UserTableModel(2, "1000002", "测试2", "1", "15666666666", "ry@qq.com", 180.0D, "1"));
/* 38 */ users.add(new UserTableModel(3, "1000003", "测试3", "0", "15666666666", "ry@qq.com", 110.0D, "1"));
/* 39 */ users.add(new UserTableModel(4, "1000004", "测试4", "1", "15666666666", "ry@qq.com", 220.0D, "1"));
/* 40 */ users.add(new UserTableModel(5, "1000005", "测试5", "0", "15666666666", "ry@qq.com", 140.0D, "1"));
/* 41 */ users.add(new UserTableModel(6, "1000006", "测试6", "1", "15666666666", "ry@qq.com", 330.0D, "1"));
/* 42 */ users.add(new UserTableModel(7, "1000007", "测试7", "0", "15666666666", "ry@qq.com", 160.0D, "1"));
/* 43 */ users.add(new UserTableModel(8, "1000008", "测试8", "1", "15666666666", "ry@qq.com", 170.0D, "1"));
/* 44 */ users.add(new UserTableModel(9, "1000009", "测试9", "0", "15666666666", "ry@qq.com", 180.0D, "1"));
/* 45 */ users.add(new UserTableModel(10, "1000010", "测试10", "0", "15666666666", "ry@qq.com", 210.0D, "1"));
/* 46 */ users.add(new UserTableModel(11, "1000011", "测试11", "1", "15666666666", "ry@qq.com", 110.0D, "1"));
/* 47 */ users.add(new UserTableModel(12, "1000012", "测试12", "0", "15666666666", "ry@qq.com", 120.0D, "1"));
/* 48 */ users.add(new UserTableModel(13, "1000013", "测试13", "1", "15666666666", "ry@qq.com", 380.0D, "1"));
/* 49 */ users.add(new UserTableModel(14, "1000014", "测试14", "0", "15666666666", "ry@qq.com", 280.0D, "1"));
/* 50 */ users.add(new UserTableModel(15, "1000015", "测试15", "0", "15666666666", "ry@qq.com", 570.0D, "1"));
/* 51 */ users.add(new UserTableModel(16, "1000016", "测试16", "1", "15666666666", "ry@qq.com", 260.0D, "1"));
/* 52 */ users.add(new UserTableModel(17, "1000017", "测试17", "1", "15666666666", "ry@qq.com", 210.0D, "1"));
/* 53 */ users.add(new UserTableModel(18, "1000018", "测试18", "1", "15666666666", "ry@qq.com", 340.0D, "1"));
/* 54 */ users.add(new UserTableModel(19, "1000019", "测试19", "1", "15666666666", "ry@qq.com", 160.0D, "1"));
/* 55 */ users.add(new UserTableModel(20, "1000020", "测试20", "1", "15666666666", "ry@qq.com", 220.0D, "1"));
/* 56 */ users.add(new UserTableModel(21, "1000021", "测试21", "1", "15666666666", "ry@qq.com", 120.0D, "1"));
/* 57 */ users.add(new UserTableModel(22, "1000022", "测试22", "1", "15666666666", "ry@qq.com", 130.0D, "1"));
/* 58 */ users.add(new UserTableModel(23, "1000023", "测试23", "1", "15666666666", "ry@qq.com", 490.0D, "1"));
/* 59 */ users.add(new UserTableModel(24, "1000024", "测试24", "1", "15666666666", "ry@qq.com", 570.0D, "1"));
/* 60 */ users.add(new UserTableModel(25, "1000025", "测试25", "1", "15666666666", "ry@qq.com", 250.0D, "1"));
/* 61 */ users.add(new UserTableModel(26, "1000026", "测试26", "1", "15666666666", "ry@qq.com", 250.0D, "1"));
/* */
/* */
/* */
/* */
/* 66 */ columns.add(new UserTableColumn("用户ID", "userId"));
/* 67 */ columns.add(new UserTableColumn("用户编号", "userCode"));
/* 68 */ columns.add(new UserTableColumn("用户姓名", "userName"));
/* 69 */ columns.add(new UserTableColumn("用户手机", "userPhone"));
/* 70 */ columns.add(new UserTableColumn("用户邮箱", "userEmail"));
/* 71 */ columns.add(new UserTableColumn("用户状态", "status"));
/* */ }
/* */
/* */
/* */ private static final List<UserTableModel> users = new ArrayList<>();
/* */ private static final List<UserTableColumn> columns = new ArrayList<>();
/* */
/* */ @GetMapping({"/search"})
/* */ public String search() {
/* 80 */ return this.prefix + "/search";
/* */ }
/* */
/* */
/* */
/* */
/* */
/* */ @GetMapping({"/footer"})
/* */ public String footer() {
/* 89 */ return this.prefix + "/footer";
/* */ }
/* */
/* */
/* */
/* */
/* */
/* */ @GetMapping({"/groupHeader"})
/* */ public String groupHeader() {
/* 98 */ return this.prefix + "/groupHeader";
/* */ }
/* */
/* */
/* */
/* */
/* */
/* */ @GetMapping({"/export"})
/* */ public String export() {
/* 107 */ return this.prefix + "/export";
/* */ }
/* */
/* */
/* */
/* */
/* */
/* */ @GetMapping({"/remember"})
/* */ public String remember() {
/* 116 */ return this.prefix + "/remember";
/* */ }
/* */
/* */
/* */
/* */
/* */
/* */ @GetMapping({"/pageGo"})
/* */ public String pageGo() {
/* 125 */ return this.prefix + "/pageGo";
/* */ }
/* */
/* */
/* */
/* */
/* */
/* */ @GetMapping({"/params"})
/* */ public String params() {
/* 134 */ return this.prefix + "/params";
/* */ }
/* */
/* */
/* */
/* */
/* */
/* */ @GetMapping({"/multi"})
/* */ public String multi() {
/* 143 */ return this.prefix + "/multi";
/* */ }
/* */
/* */
/* */
/* */
/* */
/* */ @GetMapping({"/button"})
/* */ public String button() {
/* 152 */ return this.prefix + "/button";
/* */ }
/* */
/* */
/* */
/* */
/* */
/* */ @GetMapping({"/data"})
/* */ public String data(ModelMap mmap) {
/* 161 */ mmap.put("users", users);
/* 162 */ return this.prefix + "/data";
/* */ }
/* */
/* */
/* */
/* */
/* */
/* */ @GetMapping({"/fixedColumns"})
/* */ public String fixedColumns() {
/* 171 */ return this.prefix + "/fixedColumns";
/* */ }
/* */
/* */
/* */
/* */
/* */
/* */ @GetMapping({"/event"})
/* */ public String event() {
/* 180 */ return this.prefix + "/event";
/* */ }
/* */
/* */
/* */
/* */
/* */
/* */ @GetMapping({"/detail"})
/* */ public String detail() {
/* 189 */ return this.prefix + "/detail";
/* */ }
/* */
/* */
/* */
/* */
/* */
/* */ @GetMapping({"/child"})
/* */ public String child() {
/* 198 */ return this.prefix + "/child";
/* */ }
/* */
/* */
/* */
/* */
/* */
/* */ @GetMapping({"/image"})
/* */ public String image() {
/* 207 */ return this.prefix + "/image";
/* */ }
/* */
/* */
/* */
/* */
/* */
/* */ @GetMapping({"/curd"})
/* */ public String curd() {
/* 216 */ return this.prefix + "/curd";
/* */ }
/* */
/* */
/* */
/* */
/* */
/* */ @GetMapping({"/reorder"})
/* */ public String reorder() {
/* 225 */ return this.prefix + "/reorder";
/* */ }
/* */
/* */
/* */
/* */
/* */
/* */ @GetMapping({"/resizable"})
/* */ public String resizable() {
/* 234 */ return this.prefix + "/resizable";
/* */ }
/* */
/* */
/* */
/* */
/* */
/* */ @GetMapping({"/editable"})
/* */ public String editable() {
/* 243 */ return this.prefix + "/editable";
/* */ }
/* */
/* */
/* */
/* */
/* */
/* */ @GetMapping({"/subdata"})
/* */ public String subdata() {
/* 252 */ return this.prefix + "/subdata";
/* */ }
/* */
/* */
/* */
/* */
/* */
/* */ @GetMapping({"/refresh"})
/* */ public String refresh() {
/* 261 */ return this.prefix + "/refresh";
/* */ }
/* */
/* */
/* */
/* */
/* */
/* */ @GetMapping({"/print"})
/* */ public String print() {
/* 270 */ return this.prefix + "/print";
/* */ }
/* */
/* */
/* */
/* */
/* */
/* */ @GetMapping({"/headerStyle"})
/* */ public String headerStyle() {
/* 279 */ return this.prefix + "/headerStyle";
/* */ }
/* */
/* */
/* */
/* */
/* */
/* */ @GetMapping({"/dynamicColumns"})
/* */ public String dynamicColumns() {
/* 288 */ return this.prefix + "/dynamicColumns";
/* */ }
/* */
/* */
/* */
/* */
/* */
/* */ @GetMapping({"/other"})
/* */ public String other() {
/* 297 */ return this.prefix + "/other";
/* */ }
/* */
/* */
/* */
/* */
/* */
/* */ @PostMapping({"/ajaxColumns"})
/* */ @ResponseBody
/* */ public AjaxResult ajaxColumns(UserTableColumn userColumn) {
/* 307 */ List<UserTableColumn> columnList = new ArrayList<>(Arrays.asList(new UserTableColumn[columns.size()]));
/* 308 */ Collections.copy(columnList, columns);
/* 309 */ if (userColumn != null && "userBalance".equals(userColumn.getField()))
/* */ {
/* 311 */ columnList.add(new UserTableColumn("用户余额", "userBalance"));
/* */ }
/* 313 */ return AjaxResult.success(columnList);
/* */ }
/* */
/* */
/* */
/* */
/* */
/* */ @PostMapping({"/list"})
/* */ @ResponseBody
/* */ public TableDataInfo list(UserTableModel userModel) {
/* 323 */ TableDataInfo rspData = new TableDataInfo();
/* 324 */ List<UserTableModel> userList = new ArrayList<>(Arrays.asList(new UserTableModel[users.size()]));
/* 325 */ Collections.copy(userList, users);
/* */
/* 327 */ if (StringUtils.isNotEmpty(userModel.getUserName())) {
/* */
/* 329 */ userList.clear();
/* 330 */ for (UserTableModel user : users) {
/* */
/* 332 */ if (user.getUserName().equals(userModel.getUserName()))
/* */ {
/* 334 */ userList.add(user);
/* */ }
/* */ }
/* */ }
/* 338 */ PageDomain pageDomain = TableSupport.buildPageRequest();
/* 339 */ if (null == pageDomain.getPageNum() || null == pageDomain.getPageSize()) {
/* */
/* 341 */ rspData.setRows(userList);
/* 342 */ rspData.setTotal(userList.size());
/* 343 */ return rspData;
/* */ }
/* 345 */ Integer pageNum = Integer.valueOf((pageDomain.getPageNum().intValue() - 1) * 10);
/* 346 */ Integer pageSize = Integer.valueOf(pageDomain.getPageNum().intValue() * 10);
/* 347 */ if (pageSize.intValue() > userList.size())
/* */ {
/* 349 */ pageSize = Integer.valueOf(userList.size());
/* */ }
/* 351 */ rspData.setRows(userList.subList(pageNum.intValue(), pageSize.intValue()));
/* 352 */ rspData.setTotal(userList.size());
/* 353 */ return rspData;
/* */ }
/* */ }
/* Location: C:\Users\Administrator\Desktop\extracted.zip!\extracted\BOOT-INF\classes\com\archive\project\demo\controller\DemoTableController.class
* Java compiler version: 8 (52.0)
* JD-Core Version: 1.1.3
*/

@ -1,395 +0,0 @@
/* */ package com.archive.project.demo.controller;
/* */
/* */
/* */
/* */
/* */
/* */
/* */
/* */
/* */
/* */
/* */
/* */
/* */
/* */
/* */
/* */
/* */
/* */
/* */
/* */
/* */
/* */
/* */
/* */
/* */
/* */
/* */
/* */
/* */
/* */
/* */
/* */
/* */
/* */
/* */
/* */
/* */
/* */
/* */
/* */
/* */
/* */
/* */
/* */
/* */
/* */
/* */
/* */
/* */
/* */
/* */
/* */
/* */
/* */
/* */
/* */
/* */
/* */
/* */
/* */
/* */
/* */
/* */
/* */
/* */
/* */
/* */
/* */
/* */
/* */
/* */
/* */
/* */
/* */
/* */
/* */
/* */
/* */
/* */
/* */
/* */
/* */
/* */
/* */
/* */
/* */
/* */
/* */
/* */
/* */
/* */
/* */
/* */
/* */
/* */
/* */
/* */
/* */
/* */
/* */
/* */
/* */
/* */
/* */
/* */
/* */
/* */
/* */
/* */
/* */
/* */
/* */
/* */
/* */
/* */
/* */
/* */
/* */
/* */
/* */
/* */
/* */
/* */
/* */
/* */
/* */
/* */
/* */
/* */
/* */
/* */
/* */
/* */
/* */
/* */
/* */
/* */
/* */
/* */
/* */
/* */
/* */
/* */
/* */
/* */
/* */
/* */
/* */
/* */
/* */
/* */
/* */
/* */
/* */
/* */
/* */
/* */
/* */
/* */
/* */
/* */
/* */
/* */
/* */
/* */
/* */
/* */
/* */
/* */
/* */
/* */
/* */
/* */
/* */
/* */
/* */
/* */
/* */
/* */
/* */
/* */
/* */
/* */
/* */
/* */
/* */
/* */
/* */
/* */
/* */
/* */
/* */
/* */
/* */
/* */
/* */
/* */
/* */
/* */
/* */
/* */
/* */
/* */
/* */
/* */
/* */
/* */
/* */
/* */
/* */
/* */
/* */
/* */
/* */
/* */
/* */
/* */
/* */
/* */
/* */
/* */
/* */
/* */
/* */
/* */
/* */
/* */
/* */
/* */
/* */
/* */
/* */
/* */
/* */
/* */
/* */
/* */
/* */
/* */
/* */
/* */
/* */
/* */
/* */
/* */
/* */
/* */
/* */
/* */
/* */
/* */
/* */
/* */
/* */
/* */
/* */
/* */
/* */
/* */
/* */
/* */
/* */
/* */
/* */
/* */
/* */
/* */
/* */
/* */
/* */
/* */
/* */
/* */
/* */
/* */
/* */
/* */
/* */
/* */
/* */
/* */
/* */
/* */
/* */
/* */
/* */
/* */
/* */
/* */
/* */
/* */
/* */
/* */
/* */
/* */
/* */
/* */
/* */
/* */
/* */
/* */
/* */
/* */
/* */
/* */
/* */
/* */
/* */
/* */
/* */
/* */
/* */
/* */
/* */
/* */
/* */
/* */
/* */
/* */
/* */
/* */
/* */
/* */
/* */
/* */
/* */
/* */
/* */
/* */
/* */
/* */
/* */
/* */ class UserFormModel
/* */ {
/* */ private int userId;
/* */ private String userCode;
/* */ private String userName;
/* */ private String userPhone;
/* */
/* */ public UserFormModel() {}
/* */
/* */ public UserFormModel(int userId, String userCode, String userName, String userPhone) {
/* 344 */ this.userId = userId;
/* 345 */ this.userCode = userCode;
/* 346 */ this.userName = userName;
/* 347 */ this.userPhone = userPhone;
/* */ }
/* */
/* */
/* */ public int getUserId() {
/* 352 */ return this.userId;
/* */ }
/* */
/* */
/* */ public void setUserId(int userId) {
/* 357 */ this.userId = userId;
/* */ }
/* */
/* */
/* */ public String getUserCode() {
/* 362 */ return this.userCode;
/* */ }
/* */
/* */
/* */ public void setUserCode(String userCode) {
/* 367 */ this.userCode = userCode;
/* */ }
/* */
/* */
/* */ public String getUserName() {
/* 372 */ return this.userName;
/* */ }
/* */
/* */
/* */ public void setUserName(String userName) {
/* 377 */ this.userName = userName;
/* */ }
/* */
/* */
/* */ public String getUserPhone() {
/* 382 */ return this.userPhone;
/* */ }
/* */
/* */
/* */ public void setUserPhone(String userPhone) {
/* 387 */ this.userPhone = userPhone;
/* */ }
/* */ }
/* Location: C:\Users\Administrator\Desktop\extracted.zip!\extracted\BOOT-INF\classes\com\archive\project\demo\controller\UserFormModel.class
* Java compiler version: 8 (52.0)
* JD-Core Version: 1.1.3
*/

@ -1,400 +0,0 @@
/* */ package com.archive.project.demo.controller-INF.classes.com.archive.project.demo.controller;
/* */
/* */
/* */
/* */
/* */
/* */
/* */
/* */
/* */
/* */
/* */
/* */
/* */
/* */
/* */
/* */
/* */
/* */
/* */
/* */
/* */
/* */
/* */
/* */
/* */
/* */
/* */
/* */
/* */
/* */
/* */
/* */
/* */
/* */
/* */
/* */
/* */
/* */
/* */
/* */
/* */
/* */
/* */
/* */
/* */
/* */
/* */
/* */
/* */
/* */
/* */
/* */
/* */
/* */
/* */
/* */
/* */
/* */
/* */
/* */
/* */
/* */
/* */
/* */
/* */
/* */
/* */
/* */
/* */
/* */
/* */
/* */
/* */
/* */
/* */
/* */
/* */
/* */
/* */
/* */
/* */
/* */
/* */
/* */
/* */
/* */
/* */
/* */
/* */
/* */
/* */
/* */
/* */
/* */
/* */
/* */
/* */
/* */
/* */
/* */
/* */
/* */
/* */
/* */
/* */
/* */
/* */
/* */
/* */
/* */
/* */
/* */
/* */
/* */
/* */
/* */
/* */
/* */
/* */
/* */
/* */
/* */
/* */
/* */
/* */
/* */
/* */
/* */
/* */
/* */
/* */
/* */
/* */
/* */
/* */
/* */
/* */
/* */
/* */
/* */
/* */
/* */
/* */
/* */
/* */
/* */
/* */
/* */
/* */
/* */
/* */
/* */
/* */
/* */
/* */
/* */
/* */
/* */
/* */
/* */
/* */
/* */
/* */
/* */
/* */
/* */
/* */
/* */
/* */
/* */
/* */
/* */
/* */
/* */
/* */
/* */
/* */
/* */
/* */
/* */
/* */
/* */
/* */
/* */
/* */
/* */
/* */
/* */
/* */
/* */
/* */
/* */
/* */
/* */
/* */
/* */
/* */
/* */
/* */
/* */
/* */
/* */
/* */
/* */
/* */
/* */
/* */
/* */
/* */
/* */
/* */
/* */
/* */
/* */
/* */
/* */
/* */
/* */
/* */
/* */
/* */
/* */
/* */
/* */
/* */
/* */
/* */
/* */
/* */
/* */
/* */
/* */
/* */
/* */
/* */
/* */
/* */
/* */
/* */
/* */
/* */
/* */
/* */
/* */
/* */
/* */
/* */
/* */
/* */
/* */
/* */
/* */
/* */
/* */
/* */
/* */
/* */
/* */
/* */
/* */
/* */
/* */
/* */
/* */
/* */
/* */
/* */
/* */
/* */
/* */
/* */
/* */
/* */
/* */
/* */
/* */
/* */
/* */
/* */
/* */
/* */
/* */
/* */
/* */
/* */
/* */
/* */
/* */
/* */
/* */
/* */
/* */
/* */
/* */
/* */
/* */
/* */
/* */
/* */
/* */
/* */
/* */
/* */
/* */
/* */
/* */
/* */
/* */
/* */
/* */
/* */
/* */
/* */
/* */
/* */
/* */
/* */
/* */
/* */
/* */
/* */
/* */
/* */
/* */
/* */
/* */
/* */
/* */
/* */
/* */
/* */
/* */
/* */
/* */
/* */
/* */
/* */
/* */
/* */
/* */
/* */
/* */
/* */
/* */
/* */
/* */
/* */
/* */
/* */
/* */
/* */
/* */
/* */
/* */
/* */
/* */
/* */
/* */
/* */
/* */
/* */
/* */ class UserTableColumn
/* */ {
/* */ private String title;
/* */ private String field;
/* */
/* */ public UserTableColumn() {}
/* */
/* */ public UserTableColumn(String title, String field) {
/* 371 */ this.title = title;
/* 372 */ this.field = field;
/* */ }
/* */
/* */
/* */ public String getTitle() {
/* 377 */ return this.title;
/* */ }
/* */
/* */
/* */ public void setTitle(String title) {
/* 382 */ this.title = title;
/* */ }
/* */
/* */
/* */ public String getField() {
/* 387 */ return this.field;
/* */ }
/* */
/* */
/* */ public void setField(String field) {
/* 392 */ this.field = field;
/* */ }
/* */ }
/* Location: C:\Users\Administrator\Desktop\extracted.zip!\extracted\BOOT-INF\classes\com\archive\project\demo\controller\UserTableColumn.class
* Java compiler version: 8 (52.0)
* JD-Core Version: 1.1.3
*/

@ -1,542 +0,0 @@
/* */ package com.archive.project.demo.controller
;
/* */
/* */ import com.archive.common.utils.DateUtils;
/* */ import com.fasterxml.jackson.annotation.JsonFormat;
/* */ import java.util.Date;
/* */
/* */
/* */
/* */
/* */
/* */
/* */
/* */
/* */
/* */
/* */
/* */
/* */
/* */
/* */
/* */
/* */
/* */
/* */
/* */
/* */
/* */
/* */
/* */
/* */
/* */
/* */
/* */
/* */
/* */
/* */
/* */
/* */
/* */
/* */
/* */
/* */
/* */
/* */
/* */
/* */
/* */
/* */
/* */
/* */
/* */
/* */
/* */
/* */
/* */
/* */
/* */
/* */
/* */
/* */
/* */
/* */
/* */
/* */
/* */
/* */
/* */
/* */
/* */
/* */
/* */
/* */
/* */
/* */
/* */
/* */
/* */
/* */
/* */
/* */
/* */
/* */
/* */
/* */
/* */
/* */
/* */
/* */
/* */
/* */
/* */
/* */
/* */
/* */
/* */
/* */
/* */
/* */
/* */
/* */
/* */
/* */
/* */
/* */
/* */
/* */
/* */
/* */
/* */
/* */
/* */
/* */
/* */
/* */
/* */
/* */
/* */
/* */
/* */
/* */
/* */
/* */
/* */
/* */
/* */
/* */
/* */
/* */
/* */
/* */
/* */
/* */
/* */
/* */
/* */
/* */
/* */
/* */
/* */
/* */
/* */
/* */
/* */
/* */
/* */
/* */
/* */
/* */
/* */
/* */
/* */
/* */
/* */
/* */
/* */
/* */
/* */
/* */
/* */
/* */
/* */
/* */
/* */
/* */
/* */
/* */
/* */
/* */
/* */
/* */
/* */
/* */
/* */
/* */
/* */
/* */
/* */
/* */
/* */
/* */
/* */
/* */
/* */
/* */
/* */
/* */
/* */
/* */
/* */
/* */
/* */
/* */
/* */
/* */
/* */
/* */
/* */
/* */
/* */
/* */
/* */
/* */
/* */
/* */
/* */
/* */
/* */
/* */
/* */
/* */
/* */
/* */
/* */
/* */
/* */
/* */
/* */
/* */
/* */
/* */
/* */
/* */
/* */
/* */
/* */
/* */
/* */
/* */
/* */
/* */
/* */
/* */
/* */
/* */
/* */
/* */
/* */
/* */
/* */
/* */
/* */
/* */
/* */
/* */
/* */
/* */
/* */
/* */
/* */
/* */
/* */
/* */
/* */
/* */
/* */
/* */
/* */
/* */
/* */
/* */
/* */
/* */
/* */
/* */
/* */
/* */
/* */
/* */
/* */
/* */
/* */
/* */
/* */
/* */
/* */
/* */
/* */
/* */
/* */
/* */
/* */
/* */
/* */
/* */
/* */
/* */
/* */
/* */
/* */
/* */
/* */
/* */
/* */
/* */
/* */
/* */
/* */
/* */
/* */
/* */
/* */
/* */
/* */
/* */
/* */
/* */
/* */
/* */
/* */
/* */
/* */
/* */
/* */
/* */
/* */
/* */
/* */
/* */
/* */
/* */
/* */
/* */
/* */
/* */
/* */
/* */
/* */
/* */
/* */
/* */
/* */
/* */
/* */
/* */
/* */
/* */
/* */
/* */
/* */
/* */
/* */
/* */
/* */
/* */
/* */
/* */
/* */
/* */
/* */
/* */
/* */
/* */
/* */
/* */
/* */
/* */
/* */
/* */
/* */
/* */
/* */
/* */
/* */
/* */
/* */
/* */
/* */
/* */
/* */
/* */
/* */
/* */
/* */
/* */
/* */
/* */
/* */
/* */
/* */
/* */
/* */
/* */
/* */
/* */
/* */
/* */
/* */
/* */
/* */
/* */
/* */
/* */
/* */
/* */
/* */
/* */
/* */
/* */
/* */
/* */
/* */
/* */
/* */
/* */
/* */
/* */
/* */
/* */
/* */
/* */
/* */
/* */
/* */
/* */
/* */
/* */
/* */
/* */ class UserTableModel
/* */ {
/* */ private int userId;
/* */ private String userCode;
/* */ private String userName;
/* */ private String userSex;
/* */ private String userPhone;
/* */ private String userEmail;
/* */ private double userBalance;
/* */ private String status;
/* */ @JsonFormat(pattern = "yyyy-MM-dd HH:mm:ss")
/* */ private Date createTime;
/* */
/* */ public UserTableModel() {}
/* */
/* */ public UserTableModel(int userId, String userCode, String userName, String userSex, String userPhone, String userEmail, double userBalance, String status) {
/* 434 */ this.userId = userId;
/* 435 */ this.userCode = userCode;
/* 436 */ this.userName = userName;
/* 437 */ this.userSex = userSex;
/* 438 */ this.userPhone = userPhone;
/* 439 */ this.userEmail = userEmail;
/* 440 */ this.userBalance = userBalance;
/* 441 */ this.status = status;
/* 442 */ this.createTime = DateUtils.getNowDate();
/* */ }
/* */
/* */
/* */ public int getUserId() {
/* 447 */ return this.userId;
/* */ }
/* */
/* */
/* */ public void setUserId(int userId) {
/* 452 */ this.userId = userId;
/* */ }
/* */
/* */
/* */ public String getUserCode() {
/* 457 */ return this.userCode;
/* */ }
/* */
/* */
/* */ public void setUserCode(String userCode) {
/* 462 */ this.userCode = userCode;
/* */ }
/* */
/* */
/* */ public String getUserName() {
/* 467 */ return this.userName;
/* */ }
/* */
/* */
/* */ public void setUserName(String userName) {
/* 472 */ this.userName = userName;
/* */ }
/* */
/* */
/* */ public String getUserSex() {
/* 477 */ return this.userSex;
/* */ }
/* */
/* */
/* */ public void setUserSex(String userSex) {
/* 482 */ this.userSex = userSex;
/* */ }
/* */
/* */
/* */ public String getUserPhone() {
/* 487 */ return this.userPhone;
/* */ }
/* */
/* */
/* */ public void setUserPhone(String userPhone) {
/* 492 */ this.userPhone = userPhone;
/* */ }
/* */
/* */
/* */ public String getUserEmail() {
/* 497 */ return this.userEmail;
/* */ }
/* */
/* */
/* */ public void setUserEmail(String userEmail) {
/* 502 */ this.userEmail = userEmail;
/* */ }
/* */
/* */
/* */ public double getUserBalance() {
/* 507 */ return this.userBalance;
/* */ }
/* */
/* */
/* */ public void setUserBalance(double userBalance) {
/* 512 */ this.userBalance = userBalance;
/* */ }
/* */
/* */
/* */ public String getStatus() {
/* 517 */ return this.status;
/* */ }
/* */
/* */
/* */ public void setStatus(String status) {
/* 522 */ this.status = status;
/* */ }
/* */
/* */
/* */ public Date getCreateTime() {
/* 527 */ return this.createTime;
/* */ }
/* */
/* */
/* */ public void setCreateTime(Date createTime) {
/* 532 */ this.createTime = createTime;
/* */ }
/* */ }
/* Location: C:\Users\Administrator\Desktop\extracted.zip!\extracted\BOOT-INF\classes\com\archive\project\demo\controller\UserTableModel.class
* Java compiler version: 8 (52.0)
* JD-Core Version: 1.1.3
*/

@ -1,124 +0,0 @@
/* */ package com.archive.project.demo.domain
-INF.classes.com.archive.project.demo.domain;
/* */
/* */ import com.archive.project.demo.domain.GoodsModel;
/* */ import java.util.List;
/* */ import org.apache.commons.lang3.builder.ToStringBuilder;
/* */ import org.apache.commons.lang3.builder.ToStringStyle;
/* */
/* */
/* */
/* */
/* */
/* */
/* */
/* */
/* */
/* */
/* */
/* */
/* */
/* */
/* */
/* */
/* */
/* */
/* */
/* */
/* */
/* */
/* */
/* */
/* */
/* */
/* */
/* */
/* */
/* */ public class CustomerModel
/* */ {
/* */ private String name;
/* */ private String phonenumber;
/* */ private String sex;
/* */ private String birthday;
/* */ private String remark;
/* */ private List<GoodsModel> goods;
/* */
/* */ public String getName() {
/* 46 */ return this.name;
/* */ }
/* */
/* */
/* */ public void setName(String name) {
/* 51 */ this.name = name;
/* */ }
/* */
/* */
/* */ public String getPhonenumber() {
/* 56 */ return this.phonenumber;
/* */ }
/* */
/* */
/* */ public void setPhonenumber(String phonenumber) {
/* 61 */ this.phonenumber = phonenumber;
/* */ }
/* */
/* */
/* */
/* */ public String getSex() {
/* 67 */ return this.sex;
/* */ }
/* */
/* */
/* */ public void setSex(String sex) {
/* 72 */ this.sex = sex;
/* */ }
/* */
/* */
/* */ public String getBirthday() {
/* 77 */ return this.birthday;
/* */ }
/* */
/* */
/* */ public void setBirthday(String birthday) {
/* 82 */ this.birthday = birthday;
/* */ }
/* */
/* */
/* */ public String getRemark() {
/* 87 */ return this.remark;
/* */ }
/* */
/* */
/* */ public void setRemark(String remark) {
/* 92 */ this.remark = remark;
/* */ }
/* */
/* */
/* */ public List<GoodsModel> getGoods() {
/* 97 */ return this.goods;
/* */ }
/* */
/* */
/* */ public void setGoods(List<GoodsModel> goods) {
/* 102 */ this.goods = goods;
/* */ }
/* */
/* */
/* */ public String toString() {
/* 107 */ return (new ToStringBuilder(this, ToStringStyle.MULTI_LINE_STYLE))
/* 108 */ .append("name", getName())
/* 109 */ .append("phonenumber", getPhonenumber())
/* 110 */ .append("sex", getSex())
/* 111 */ .append("birthday", getBirthday())
/* 112 */ .append("goods", getGoods())
/* 113 */ .append("remark", getRemark())
/* 114 */ .toString();
/* */ }
/* */ }
/* Location: C:\Users\Administrator\Desktop\extracted.zip!\extracted\BOOT-INF\classes\com\archive\project\demo\domain\CustomerModel.class
* Java compiler version: 8 (52.0)
* JD-Core Version: 1.1.3
*/

@ -1,107 +0,0 @@
/* */ package com.archive.project.demo.domain
-INF.classes.com.archive.project.demo.domain;
/* */
/* */ import java.util.Date;
/* */ import org.apache.commons.lang3.builder.ToStringBuilder;
/* */ import org.apache.commons.lang3.builder.ToStringStyle;
/* */
/* */
/* */
/* */
/* */
/* */
/* */
/* */
/* */
/* */
/* */
/* */
/* */
/* */
/* */
/* */
/* */
/* */
/* */
/* */
/* */
/* */
/* */
/* */
/* */
/* */
/* */ public class GoodsModel
/* */ {
/* */ private String name;
/* */ private Integer weight;
/* */ private Double price;
/* */ private Date date;
/* */ private String type;
/* */
/* */ public String getName() {
/* 41 */ return this.name;
/* */ }
/* */
/* */
/* */ public void setName(String name) {
/* 46 */ this.name = name;
/* */ }
/* */
/* */
/* */ public Integer getWeight() {
/* 51 */ return this.weight;
/* */ }
/* */
/* */
/* */ public void setWeight(Integer weight) {
/* 56 */ this.weight = weight;
/* */ }
/* */
/* */
/* */ public Double getPrice() {
/* 61 */ return this.price;
/* */ }
/* */
/* */
/* */ public void setPrice(Double price) {
/* 66 */ this.price = price;
/* */ }
/* */
/* */
/* */ public Date getDate() {
/* 71 */ return this.date;
/* */ }
/* */
/* */
/* */ public void setDate(Date date) {
/* 76 */ this.date = date;
/* */ }
/* */
/* */
/* */ public String getType() {
/* 81 */ return this.type;
/* */ }
/* */
/* */
/* */ public void setType(String type) {
/* 86 */ this.type = type;
/* */ }
/* */
/* */
/* */ public String toString() {
/* 91 */ return (new ToStringBuilder(this, ToStringStyle.MULTI_LINE_STYLE))
/* 92 */ .append("name", getName())
/* 93 */ .append("weight", getWeight())
/* 94 */ .append("price", getPrice())
/* 95 */ .append("date", getDate())
/* 96 */ .append("type", getType())
/* 97 */ .toString();
/* */ }
/* */ }
/* Location: C:\Users\Administrator\Desktop\extracted.zip!\extracted\BOOT-INF\classes\com\archive\project\demo\domain\GoodsModel.class
* Java compiler version: 8 (52.0)
* JD-Core Version: 1.1.3
*/

@ -1,155 +0,0 @@
/* */ package com.archive.project.demo.domain
;
/* */
/* */ import com.archive.common.utils.DateUtils;
/* */ import com.archive.framework.aspectj.lang.annotation.Excel;
/* */ import com.archive.framework.web.domain.BaseEntity;
/* */ import java.util.Date;
/* */
/* */
/* */
/* */
/* */
/* */
/* */
/* */
/* */
/* */
/* */
/* */
/* */
/* */
/* */
/* */ public class UserOperateModel
/* */ extends BaseEntity
/* */ {
/* */ private static final long serialVersionUID = 1L;
/* */ private int userId;
/* */ @Excel(name = "用户编号")
/* */ private String userCode;
/* */ @Excel(name = "用户姓名")
/* */ private String userName;
/* */ @Excel(name = "用户性别", readConverterExp = "0=男,1=女,2=未知")
/* */ private String userSex;
/* */ @Excel(name = "用户手机")
/* */ private String userPhone;
/* */ @Excel(name = "用户邮箱")
/* */ private String userEmail;
/* */ @Excel(name = "用户余额")
/* */ private double userBalance;
/* */ @Excel(name = "用户状态", readConverterExp = "0=正常,1=停用")
/* */ private String status;
/* */ @Excel(name = "创建时间", width = 30.0D, dateFormat = "yyyy-MM-dd HH:mm:ss", type = Excel.Type.EXPORT)
/* */ private Date createTime;
/* */
/* */ public UserOperateModel() {}
/* */
/* */ public UserOperateModel(int userId, String userCode, String userName, String userSex, String userPhone, String userEmail, double userBalance, String status) {
/* 47 */ this.userId = userId;
/* 48 */ this.userCode = userCode;
/* 49 */ this.userName = userName;
/* 50 */ this.userSex = userSex;
/* 51 */ this.userPhone = userPhone;
/* 52 */ this.userEmail = userEmail;
/* 53 */ this.userBalance = userBalance;
/* 54 */ this.status = status;
/* 55 */ this.createTime = DateUtils.getNowDate();
/* */ }
/* */
/* */
/* */ public int getUserId() {
/* 60 */ return this.userId;
/* */ }
/* */
/* */
/* */ public void setUserId(int userId) {
/* 65 */ this.userId = userId;
/* */ }
/* */
/* */
/* */ public String getUserCode() {
/* 70 */ return this.userCode;
/* */ }
/* */
/* */
/* */ public void setUserCode(String userCode) {
/* 75 */ this.userCode = userCode;
/* */ }
/* */
/* */
/* */ public String getUserName() {
/* 80 */ return this.userName;
/* */ }
/* */
/* */
/* */ public void setUserName(String userName) {
/* 85 */ this.userName = userName;
/* */ }
/* */
/* */
/* */ public String getUserSex() {
/* 90 */ return this.userSex;
/* */ }
/* */
/* */
/* */ public void setUserSex(String userSex) {
/* 95 */ this.userSex = userSex;
/* */ }
/* */
/* */
/* */ public String getUserPhone() {
/* 100 */ return this.userPhone;
/* */ }
/* */
/* */
/* */ public void setUserPhone(String userPhone) {
/* 105 */ this.userPhone = userPhone;
/* */ }
/* */
/* */
/* */ public String getUserEmail() {
/* 110 */ return this.userEmail;
/* */ }
/* */
/* */
/* */ public void setUserEmail(String userEmail) {
/* 115 */ this.userEmail = userEmail;
/* */ }
/* */
/* */
/* */ public double getUserBalance() {
/* 120 */ return this.userBalance;
/* */ }
/* */
/* */
/* */ public void setUserBalance(double userBalance) {
/* 125 */ this.userBalance = userBalance;
/* */ }
/* */
/* */
/* */ public String getStatus() {
/* 130 */ return this.status;
/* */ }
/* */
/* */
/* */ public void setStatus(String status) {
/* 135 */ this.status = status;
/* */ }
/* */
/* */
/* */ public Date getCreateTime() {
/* 140 */ return this.createTime;
/* */ }
/* */
/* */
/* */ public void setCreateTime(Date createTime) {
/* 145 */ this.createTime = createTime;
/* */ }
/* */ }
/* Location: C:\Users\Administrator\Desktop\extracted.zip!\extracted\BOOT-INF\classes\com\archive\project\demo\domain\UserOperateModel.class
* Java compiler version: 8 (52.0)
* JD-Core Version: 1.1.3
*/

@ -1,6 +1,6 @@
/* */ package com.archive.project.document.controller /* */ package com.archive.project.document.controller
-INF.classes.com.archive.project.document.controller; ;
/* */ /* */
/* */ import com.archive.common.archiveUtil.TableUtil; /* */ import com.archive.common.archiveUtil.TableUtil;
/* */ import com.archive.framework.web.controller.BaseController; /* */ import com.archive.framework.web.controller.BaseController;

@ -1,4 +1,4 @@
/* */ package com.archive.project.document.domain-INF.classes.com.archive.project.document.domain; /* */ package com.archive.project.document.domain;
/* */ /* */
/* */ /* */
/* */ /* */

@ -1,6 +1,6 @@
package com.archive.project.jyly.borrow.mapper package com.archive.project.jyly.borrow.mapper
-INF.classes.com.archive.project.jyly.borrow.mapper; ;
import com.archive.project.jyly.borrow.domain.TArchiveBorrow; import com.archive.project.jyly.borrow.domain.TArchiveBorrow;
import java.util.List; import java.util.List;

@ -1,6 +1,6 @@
package com.archive.project.jyly.borrow.service package com.archive.project.jyly.borrow.service
-INF.classes.com.archive.project.jyly.borrow.service; ;
import com.archive.project.jyly.borrow.domain.TArchiveBorrow; import com.archive.project.jyly.borrow.domain.TArchiveBorrow;
import java.util.List; import java.util.List;

@ -1,6 +1,6 @@
/* */ package com.archive.project.jyly.borrow.service.impl /* */ package com.archive.project.jyly.borrow.service.impl
-INF.classes.com.archive.project.jyly.borrow.service.impl; ;
/* */ /* */
/* */ import com.archive.common.utils.text.Convert; /* */ import com.archive.common.utils.text.Convert;
/* */ import com.archive.framework.config.ArchiveConfig; /* */ import com.archive.framework.config.ArchiveConfig;

@ -1,6 +1,6 @@
/* */ package com.archive.project.jyly.detail.domain /* */ package com.archive.project.jyly.detail.domain
-INF.classes.com.archive.project.jyly.detail.domain; ;
/* */ /* */
/* */ import com.archive.framework.aspectj.lang.annotation.Excel; /* */ import com.archive.framework.aspectj.lang.annotation.Excel;
/* */ import com.archive.framework.web.domain.BaseEntity; /* */ import com.archive.framework.web.domain.BaseEntity;

@ -1,6 +1,6 @@
/* */ package com.archive.project.jyly.detail.service.impl /* */ package com.archive.project.jyly.detail.service.impl
-INF.classes.com.archive.project.jyly.detail.service.impl; ;
/* */ /* */
/* */ import com.archive.common.utils.DateUtils; /* */ import com.archive.common.utils.DateUtils;
/* */ import com.archive.common.utils.security.ShiroUtils; /* */ import com.archive.common.utils.security.ShiroUtils;

@ -1,6 +1,6 @@
/* */ package com.archive.project.jyly.person.controller /* */ package com.archive.project.jyly.person.controller
-INF.classes.com.archive.project.jyly.person.controller; ;
/* */ /* */
/* */ import com.archive.common.utils.poi.ExcelUtil; /* */ import com.archive.common.utils.poi.ExcelUtil;
/* */ import com.archive.framework.aspectj.lang.annotation.Log; /* */ import com.archive.framework.aspectj.lang.annotation.Log;

@ -1,6 +1,6 @@
/* */ package com.archive.project.jyly.person.domain /* */ package com.archive.project.jyly.person.domain
-INF.classes.com.archive.project.jyly.person.domain; ;
/* */ /* */
/* */ import com.archive.framework.aspectj.lang.annotation.Excel; /* */ import com.archive.framework.aspectj.lang.annotation.Excel;
/* */ import com.archive.framework.web.domain.BaseEntity; /* */ import com.archive.framework.web.domain.BaseEntity;

@ -1,6 +1,5 @@
/* */ package com.archive.project.jyly.person.service.impl /* */ package com.archive.project.jyly.person.service.impl
;
-INF.classes.com.archive.project.jyly.person.service.impl;
/* */ /* */
/* */ import com.archive.common.utils.text.Convert; /* */ import com.archive.common.utils.text.Convert;
/* */ import com.archive.project.jyly.person.domain.TArchivePerson; /* */ import com.archive.project.jyly.person.domain.TArchivePerson;

@ -1,6 +1,6 @@
/* */ package com.archive.project.monitor.cache /* */ package com.archive.project.monitor.cache
-INF.classes.com.archive.project.monitor.cache; ;
/* */ /* */
/* */ import com.archive.framework.web.controller.BaseController; /* */ import com.archive.framework.web.controller.BaseController;
/* */ import com.archive.framework.web.domain.AjaxResult; /* */ import com.archive.framework.web.domain.AjaxResult;

Some files were not shown because too many files have changed in this diff Show More

Loading…
Cancel
Save