feat:修改任务

dev
wangxy 8 months ago
parent 07fa856090
commit c4712cc9c9

@ -1,32 +1,32 @@
/* */ package com.archive.common.exception.job; package com.archive.common.exception.job;
/* */
/* */
/* */
/* */
/* */
/* */
/* */
/* */ public class TaskException public class TaskException
/* */ extends Exception extends Exception
/* */ { {
/* */ private static final long serialVersionUID = 1L; private static final long serialVersionUID = 1L;
/* */ private Code code; private Code code;
/* */
/* */ public TaskException(String msg, Code code) { public TaskException(String msg, Code code) {
/* 16 */ this(msg, code, null); this(msg, code, null);
/* */ } }
/* */
/* */
/* */ public TaskException(String msg, Code code, Exception nestedEx) { public TaskException(String msg, Code code, Exception nestedEx) {
/* 21 */ super(msg, nestedEx); super(msg, nestedEx);
/* 22 */ this.code = code; this.code = code;
/* */ } }
/* */
/* */
/* */ public Code getCode() { public Code getCode() {
/* 27 */ return this.code; return this.code;
/* */ } }
/* */ } }
/* Location: C:\Users\Administrator\Desktop\extracted.zip!\extracted\BOOT-INF\classes\com\archive\common\exception\job\TaskException.class /* Location: C:\Users\Administrator\Desktop\extracted.zip!\extracted\BOOT-INF\classes\com\archive\common\exception\job\TaskException.class

@ -1,19 +1,19 @@
/* */ package com.archive.common.exception.user; package com.archive.common.exception.user;
/* */
/* */ import com.archive.common.exception.user.UserException; import com.archive.common.exception.user.UserException;
/* */
/* */
/* */
/* */
/* */ public class UserBlockedException public class UserBlockedException
/* */ extends UserException extends UserException
/* */ { {
/* */ private static final long serialVersionUID = 1L; private static final long serialVersionUID = 1L;
/* */
/* */ public UserBlockedException() { public UserBlockedException() {
/* 14 */ super("user.blocked", null); super("user.blocked", null);
/* */ } }
/* */ } }
/* Location: C:\Users\Administrator\Desktop\extracted.zip!\extracted\BOOT-INF\classes\com\archive\common\exceptio\\user\UserBlockedException.class /* Location: C:\Users\Administrator\Desktop\extracted.zip!\extracted\BOOT-INF\classes\com\archive\common\exceptio\\user\UserBlockedException.class

@ -1,19 +1,19 @@
/* */ package com.archive.common.exception.user; package com.archive.common.exception.user;
/* */
/* */ import com.archive.common.exception.user.UserException; import com.archive.common.exception.user.UserException;
/* */
/* */
/* */
/* */
/* */ public class UserDeleteException public class UserDeleteException
/* */ extends UserException extends UserException
/* */ { {
/* */ private static final long serialVersionUID = 1L; private static final long serialVersionUID = 1L;
/* */
/* */ public UserDeleteException() { public UserDeleteException() {
/* 14 */ super("user.password.delete", null); super("user.password.delete", null);
/* */ } }
/* */ } }
/* Location: C:\Users\Administrator\Desktop\extracted.zip!\extracted\BOOT-INF\classes\com\archive\common\exceptio\\user\UserDeleteException.class /* Location: C:\Users\Administrator\Desktop\extracted.zip!\extracted\BOOT-INF\classes\com\archive\common\exceptio\\user\UserDeleteException.class

@ -1,104 +1,104 @@
/* */ package com.archive.common.utils package com.archive.common.utils
; ;
/* */
/* */ import java.util.concurrent.CancellationException; import java.util.concurrent.CancellationException;
/* */ import java.util.concurrent.ExecutionException; import java.util.concurrent.ExecutionException;
/* */ import java.util.concurrent.ExecutorService; import java.util.concurrent.ExecutorService;
/* */ import java.util.concurrent.Future; import java.util.concurrent.Future;
/* */ import java.util.concurrent.TimeUnit; import java.util.concurrent.TimeUnit;
/* */ import org.slf4j.Logger; import org.slf4j.Logger;
/* */ import org.slf4j.LoggerFactory; import org.slf4j.LoggerFactory;
/* */
/* */
/* */
/* */
/* */
/* */
/* */ public class Threads public class Threads
/* */ { {
/* 18 */ private static final Logger logger = LoggerFactory.getLogger(com.archive.common.utils.Threads.class); private static final Logger logger = LoggerFactory.getLogger(com.archive.common.utils.Threads.class);
/* */
/* */
/* */
/* */
/* */
/* */
/* */ public static void sleep(long milliseconds) { public static void sleep(long milliseconds) {
/* */ try { try {
/* 27 */ Thread.sleep(milliseconds); Thread.sleep(milliseconds);
/* */ } }
/* 29 */ catch (InterruptedException e) { catch (InterruptedException e) {
/* */ return; return;
/* */ } }
/* */ } }
/* */
/* */
/* */
/* */
/* */
/* */
/* */
/* */
/* */
/* */
/* */ public static void shutdownAndAwaitTermination(ExecutorService pool) { public static void shutdownAndAwaitTermination(ExecutorService pool) {
/* 44 */ if (pool != null && !pool.isShutdown()) { if (pool != null && !pool.isShutdown()) {
/* */
/* 46 */ pool.shutdown(); pool.shutdown();
/* */
/* */ try { try {
/* 49 */ if (!pool.awaitTermination(120L, TimeUnit.SECONDS)) if (!pool.awaitTermination(120L, TimeUnit.SECONDS))
/* */ { {
/* 51 */ pool.shutdownNow(); pool.shutdownNow();
/* 52 */ if (!pool.awaitTermination(120L, TimeUnit.SECONDS)) if (!pool.awaitTermination(120L, TimeUnit.SECONDS))
/* */ { {
/* 54 */ logger.info("Pool did not terminate"); logger.info("Pool did not terminate");
/* */ } }
/* */ } }
/* */
/* 58 */ } catch (InterruptedException ie) { } catch (InterruptedException ie) {
/* */
/* 60 */ pool.shutdownNow(); pool.shutdownNow();
/* 61 */ Thread.currentThread().interrupt(); Thread.currentThread().interrupt();
/* */ } }
/* */ } }
/* */ } }
/* */
/* */
/* */
/* */
/* */
/* */ public static void printException(Runnable r, Throwable t) { public static void printException(Runnable r, Throwable t) {
/* 71 */ if (t == null && r instanceof Future) { if (t == null && r instanceof Future) {
/* */
/* */ try { try {
/* */
/* 75 */ Future<?> future = (Future)r; Future<?> future = (Future)r;
/* 76 */ if (future.isDone()) if (future.isDone())
/* */ { {
/* 78 */ future.get(); future.get();
/* */ } }
/* */ } }
/* 81 */ catch (CancellationException ce) { catch (CancellationException ce) {
/* */
/* 83 */ t = ce; t = ce;
/* */ } }
/* 85 */ catch (ExecutionException ee) { catch (ExecutionException ee) {
/* */
/* 87 */ t = ee.getCause(); t = ee.getCause();
/* */ } }
/* 89 */ catch (InterruptedException ie) { catch (InterruptedException ie) {
/* */
/* 91 */ Thread.currentThread().interrupt(); Thread.currentThread().interrupt();
/* */ } }
/* */ } }
/* 94 */ if (t != null) if (t != null)
/* */ { {
/* 96 */ logger.error(t.getMessage(), t); logger.error(t.getMessage(), t);
/* */ } }
/* */ } }
/* */ } }
/* Location: C:\Users\Administrator\Desktop\extracted.zip!\extracted\BOOT-INF\classes\com\archive\commo\\utils\Threads.class /* Location: C:\Users\Administrator\Desktop\extracted.zip!\extracted\BOOT-INF\classes\com\archive\commo\\utils\Threads.class

@ -1,142 +1,142 @@
/* */ package com.archive.common.utils package com.archive.common.utils
; ;
/* */
/* */ import com.archive.project.system.menu.domain.Menu; import com.archive.project.system.menu.domain.Menu;
/* */ import java.util.ArrayList; import java.util.ArrayList;
/* */ import java.util.Iterator; import java.util.Iterator;
/* */ import java.util.List; import java.util.List;
/* */
/* */
/* */
/* */
/* */
/* */
/* */
/* */
/* */
/* */
/* */
/* */
/* */
/* */
/* */ public class TreeUtils public class TreeUtils
/* */ { {
/* */ public static List<Menu> getChildPerms(List<Menu> list, int parentId) { public static List<Menu> getChildPerms(List<Menu> list, int parentId) {
/* 24 */ List<Menu> returnList = new ArrayList<>(); List<Menu> returnList = new ArrayList<>();
/* 25 */ for (Iterator<Menu> iterator = list.iterator(); iterator.hasNext(); ) { for (Iterator<Menu> iterator = list.iterator(); iterator.hasNext(); ) {
/* */
/* 27 */ Menu t = iterator.next(); Menu t = iterator.next();
/* */
/* 29 */ if (t.getParentId().longValue() == parentId) { if (t.getParentId().longValue() == parentId) {
/* */
/* 31 */ recursionFn(list, t); recursionFn(list, t);
/* 32 */ returnList.add(t); returnList.add(t);
/* */ } }
/* */ } }
/* 35 */ return returnList; return returnList;
/* */ } }
/* */
/* */
/* */
/* */
/* */
/* */
/* */
/* */
/* */
/* */ private static void recursionFn(List<Menu> list, Menu t) { private static void recursionFn(List<Menu> list, Menu t) {
/* 47 */ List<Menu> childList = getChildList(list, t); List<Menu> childList = getChildList(list, t);
/* 48 */ t.setChildren(childList); t.setChildren(childList);
/* 49 */ for (Menu tChild : childList) { for (Menu tChild : childList) {
/* */
/* 51 */ if (hasChild(list, tChild)) if (hasChild(list, tChild))
/* */ { {
/* 53 */ recursionFn(list, tChild); recursionFn(list, tChild);
/* */ } }
/* */ } }
/* */ } }
/* */
/* */
/* */
/* */
/* */
/* */
/* */ private static List<Menu> getChildList(List<Menu> list, Menu t) { private static List<Menu> getChildList(List<Menu> list, Menu t) {
/* 64 */ List<Menu> tlist = new ArrayList<>(); List<Menu> tlist = new ArrayList<>();
/* 65 */ Iterator<Menu> it = list.iterator(); Iterator<Menu> it = list.iterator();
/* 66 */ while (it.hasNext()) { while (it.hasNext()) {
/* */
/* 68 */ Menu n = it.next(); Menu n = it.next();
/* 69 */ if (n.getParentId().longValue() == t.getMenuId().longValue()) if (n.getParentId().longValue() == t.getMenuId().longValue())
/* */ { {
/* 71 */ tlist.add(n); tlist.add(n);
/* */ } }
/* */ } }
/* 74 */ return tlist; return tlist;
/* */ } }
/* */
/* 77 */ List<Menu> returnList = new ArrayList<>(); List<Menu> returnList = new ArrayList<>();
/* */
/* */
/* */
/* */
/* */
/* */
/* */
/* */
/* */
/* */ public List<Menu> getChildPerms(List<Menu> list, int typeId, String prefix) { public List<Menu> getChildPerms(List<Menu> list, int typeId, String prefix) {
/* 88 */ if (list == null) if (list == null)
/* */ { {
/* 90 */ return null; return null;
/* */ } }
/* 92 */ for (Iterator<Menu> iterator = list.iterator(); iterator.hasNext(); ) { for (Iterator<Menu> iterator = list.iterator(); iterator.hasNext(); ) {
/* */
/* 94 */ Menu node = iterator.next(); Menu node = iterator.next();
/* */
/* 96 */ if (node.getParentId().longValue() == typeId) if (node.getParentId().longValue() == typeId)
/* */ { {
/* 98 */ recursionFn(list, node, prefix); recursionFn(list, node, prefix);
/* */ } }
/* */ } }
/* */
/* */
/* */
/* */
/* 105 */ return this.returnList; return this.returnList;
/* */ } }
/* */
/* */
/* */
/* */ private void recursionFn(List<Menu> list, Menu node, String p) { private void recursionFn(List<Menu> list, Menu node, String p) {
/* 111 */ List<Menu> childList = getChildList(list, node); List<Menu> childList = getChildList(list, node);
/* 112 */ if (hasChild(list, node)) { if (hasChild(list, node)) {
/* */
/* */
/* 115 */ this.returnList.add(node); this.returnList.add(node);
/* 116 */ Iterator<Menu> it = childList.iterator(); Iterator<Menu> it = childList.iterator();
/* 117 */ while (it.hasNext()) while (it.hasNext())
/* */ { {
/* 119 */ Menu n = it.next(); Menu n = it.next();
/* 120 */ n.setMenuName(p + n.getMenuName()); n.setMenuName(p + n.getMenuName());
/* 121 */ recursionFn(list, n, p + p); recursionFn(list, n, p + p);
/* */ } }
/* */
/* */ } else { } else {
/* */
/* 126 */ this.returnList.add(node); this.returnList.add(node);
/* */ } }
/* */ } }
/* */
/* */
/* */
/* */
/* */
/* */ private static boolean hasChild(List<Menu> list, Menu t) { private static boolean hasChild(List<Menu> list, Menu t) {
/* 135 */ return (getChildList(list, t).size() > 0); return (getChildList(list, t).size() > 0);
/* */ } }
/* */ } }
/* Location: C:\Users\Administrator\Desktop\extracted.zip!\extracted\BOOT-INF\classes\com\archive\commo\\utils\TreeUtils.class /* Location: C:\Users\Administrator\Desktop\extracted.zip!\extracted\BOOT-INF\classes\com\archive\commo\\utils\TreeUtils.class

@ -1,96 +1,96 @@
/* */ package com.archive.common.utils.text; package com.archive.common.utils.text;
/* */
/* */ import com.archive.common.utils.StringUtils; import com.archive.common.utils.StringUtils;
/* */ import com.archive.common.utils.text.Convert; import com.archive.common.utils.text.Convert;
/* */
/* */
/* */
/* */
/* */
/* */
/* */
/* */
/* */
/* */
/* */
/* */
/* */
/* */
/* */
/* */
/* */
/* */
/* */
/* */ public class StrFormatter public class StrFormatter
/* */ { {
/* */ public static final String EMPTY_JSON = "{}"; public static final String EMPTY_JSON = "{}";
/* */ public static final char C_BACKSLASH = '\\'; public static final char C_BACKSLASH = '\\';
/* */ public static final char C_DELIM_START = '{'; public static final char C_DELIM_START = '{';
/* */ public static final char C_DELIM_END = '}'; public static final char C_DELIM_END = '}';
/* */
/* */ public static String format(String strPattern, Object... argArray) { public static String format(String strPattern, Object... argArray) {
/* 32 */ if (StringUtils.isEmpty(strPattern) || StringUtils.isEmpty(argArray)) if (StringUtils.isEmpty(strPattern) || StringUtils.isEmpty(argArray))
/* */ { {
/* 34 */ return strPattern; return strPattern;
/* */ } }
/* 36 */ int strPatternLength = strPattern.length(); int strPatternLength = strPattern.length();
/* */
/* */
/* 39 */ StringBuilder sbuf = new StringBuilder(strPatternLength + 50); StringBuilder sbuf = new StringBuilder(strPatternLength + 50);
/* */
/* 41 */ int handledPosition = 0; int handledPosition = 0;
/* */
/* 43 */ for (int argIndex = 0; argIndex < argArray.length; argIndex++) { for (int argIndex = 0; argIndex < argArray.length; argIndex++) {
/* */
/* 45 */ int delimIndex = strPattern.indexOf("{}", handledPosition); int delimIndex = strPattern.indexOf("{}", handledPosition);
/* 46 */ if (delimIndex == -1) { if (delimIndex == -1) {
/* */
/* 48 */ if (handledPosition == 0) if (handledPosition == 0)
/* */ { {
/* 50 */ return strPattern; return strPattern;
/* */ } }
/* */
/* */
/* 54 */ sbuf.append(strPattern, handledPosition, strPatternLength); sbuf.append(strPattern, handledPosition, strPatternLength);
/* 55 */ return sbuf.toString(); return sbuf.toString();
/* */ } }
/* */
/* */
/* */
/* 60 */ if (delimIndex > 0 && strPattern.charAt(delimIndex - 1) == '\\') { if (delimIndex > 0 && strPattern.charAt(delimIndex - 1) == '\\') {
/* */
/* 62 */ if (delimIndex > 1 && strPattern.charAt(delimIndex - 2) == '\\') if (delimIndex > 1 && strPattern.charAt(delimIndex - 2) == '\\')
/* */ { {
/* */
/* 65 */ sbuf.append(strPattern, handledPosition, delimIndex - 1); sbuf.append(strPattern, handledPosition, delimIndex - 1);
/* 66 */ sbuf.append(Convert.utf8Str(argArray[argIndex])); sbuf.append(Convert.utf8Str(argArray[argIndex]));
/* 67 */ handledPosition = delimIndex + 2; handledPosition = delimIndex + 2;
/* */
/* */ } }
/* */ else else
/* */ { {
/* 72 */ argIndex--; argIndex--;
/* 73 */ sbuf.append(strPattern, handledPosition, delimIndex - 1); sbuf.append(strPattern, handledPosition, delimIndex - 1);
/* 74 */ sbuf.append('{'); sbuf.append('{');
/* 75 */ handledPosition = delimIndex + 1; handledPosition = delimIndex + 1;
/* */ } }
/* */
/* */ } }
/* */ else { else {
/* */
/* 81 */ sbuf.append(strPattern, handledPosition, delimIndex); sbuf.append(strPattern, handledPosition, delimIndex);
/* 82 */ sbuf.append(Convert.utf8Str(argArray[argIndex])); sbuf.append(Convert.utf8Str(argArray[argIndex]));
/* 83 */ handledPosition = delimIndex + 2; handledPosition = delimIndex + 2;
/* */ } }
/* */ } }
/* */
/* */
/* */
/* 89 */ sbuf.append(strPattern, handledPosition, strPattern.length()); sbuf.append(strPattern, handledPosition, strPattern.length());
/* */
/* 91 */ return sbuf.toString(); return sbuf.toString();
/* */ } }
/* */ } }
/* Location: C:\Users\Administrator\Desktop\extracted.zip!\extracted\BOOT-INF\classes\com\archive\commo\\utils\text\StrFormatter.class /* Location: C:\Users\Administrator\Desktop\extracted.zip!\extracted\BOOT-INF\classes\com\archive\commo\\utils\text\StrFormatter.class

@ -1,62 +1,62 @@
/* */ package com.archive.common.utils.text; package com.archive.common.utils.text;
/* */
/* */ import com.archive.framework.config.ArchiveConfig; import com.archive.framework.config.ArchiveConfig;
/* */ import java.io.BufferedWriter; import java.io.BufferedWriter;
/* */ import java.io.File; import java.io.File;
/* */ import java.io.FileWriter; import java.io.FileWriter;
/* */ import java.io.IOException; import java.io.IOException;
/* */ import java.nio.file.Files; import java.nio.file.Files;
/* */ import java.nio.file.Paths; import java.nio.file.Paths;
/* */ import java.util.List; import java.util.List;
/* */
/* */
/* */
/* */
/* */
/* */
/* */
/* */
/* */
/* */
/* */
/* */
/* */
/* */
/* */ public class TextUtils public class TextUtils
/* */ { {
/* */ public static String generateTxt(String text, String fileName) { public static String generateTxt(String text, String fileName) {
/* 28 */ String result = ""; String result = "";
/* 29 */ String folderDir = ArchiveConfig.getInstance().getImportBathMessagePath(); String folderDir = ArchiveConfig.getInstance().getImportBathMessagePath();
/* 30 */ File folder = new File(folderDir); File folder = new File(folderDir);
/* 31 */ if (!folder.exists()) { if (!folder.exists()) {
/* 32 */ folder.mkdirs(); folder.mkdirs();
/* */ } }
/* */ try { try {
/* 35 */ String filePath = folderDir + File.separator + fileName; String filePath = folderDir + File.separator + fileName;
/* 36 */ File file = new File(filePath); File file = new File(filePath);
/* 37 */ BufferedWriter writer = new BufferedWriter(new FileWriter(file)); BufferedWriter writer = new BufferedWriter(new FileWriter(file));
/* 38 */ writer.write(text); writer.write(text);
/* 39 */ writer.close(); writer.close();
/* 40 */ result = filePath; result = filePath;
/* 41 */ } catch (IOException e) { } catch (IOException e) {
/* 42 */ e.printStackTrace(); e.printStackTrace();
/* */ } }
/* 44 */ return result; return result;
/* */ } }
/* */
/* */ public static String readText(String filePath) { public static String readText(String filePath) {
/* 48 */ String result = ""; String result = "";
/* */ try { try {
/* 50 */ List<String> lines = Files.readAllLines(Paths.get(filePath, new String[0])); List<String> lines = Files.readAllLines(Paths.get(filePath, new String[0]));
/* 51 */ for (String line : lines) { for (String line : lines) {
/* 52 */ result = result + line; result = result + line;
/* */ } }
/* 54 */ } catch (IOException e) { } catch (IOException e) {
/* 55 */ e.printStackTrace(); e.printStackTrace();
/* */ } }
/* 57 */ return result; return result;
/* */ } }
/* */ } }
/* Location: C:\Users\Administrator\Desktop\extracted.zip!\extracted\BOOT-INF\classes\com\archive\commo\\utils\text\TextUtils.class /* Location: C:\Users\Administrator\Desktop\extracted.zip!\extracted\BOOT-INF\classes\com\archive\commo\\utils\text\TextUtils.class

@ -1,153 +1,153 @@
/* */ package com.archive.framework.aspectj.lang.annotation package com.archive.framework.aspectj.lang.annotation
; ;
/* */
/* */ import com.archive.framework.aspectj.lang.annotation.Excel; import com.archive.framework.aspectj.lang.annotation.Excel;
/* */
/* */
/* */
/* */
/* */
/* */
/* */
/* */
/* */
/* */
/* */
/* */
/* */
/* */
/* */
/* */
/* */
/* */
/* */
/* */
/* */
/* */
/* */
/* */
/* */
/* */
/* */
/* */
/* */
/* */
/* */
/* */
/* */
/* */
/* */
/* */
/* */
/* */
/* */
/* */
/* */
/* */
/* */
/* */
/* */
/* */
/* */
/* */
/* */
/* */
/* */
/* */
/* */
/* */
/* */
/* */
/* */
/* */
/* */
/* */
/* */
/* */
/* */
/* */
/* */
/* */
/* */
/* */
/* */
/* */
/* */
/* */
/* */
/* */
/* */
/* */
/* */
/* */
/* */
/* */
/* */
/* */
/* */
/* */
/* */
/* */
/* */
/* */
/* */
/* */
/* */
/* */
/* */
/* */
/* */
/* */
/* */
/* */
/* */
/* */
/* */
/* */
/* */
/* */
/* */
/* */
/* */
/* */
/* */
/* */
/* */
/* */
/* */
/* */
/* */
/* */
/* */
/* */
/* */
/* */
/* */
/* */
/* */
/* */
/* */
/* */
/* */
/* */
/* */
/* */
/* */ public enum Type public enum Type
/* */ { {
/* 136 */ ALL(0), EXPORT(1), IMPORT(2); ALL(0), EXPORT(1), IMPORT(2);
/* */
/* */ private final int value; private final int value;
/* */
/* */ Type(int value) { Type(int value) {
/* 141 */ this.value = value; this.value = value;
/* */ } }
/* */
/* */
/* */ public int value() { public int value() {
/* 146 */ return this.value; return this.value;
/* */ } }
/* */ } }
/* Location: C:\Users\Administrator\Desktop\extracted.zip!\extracted\BOOT-INF\classes\com\archive\framework\aspectj\lang\annotation\Excel$Type.class /* Location: C:\Users\Administrator\Desktop\extracted.zip!\extracted\BOOT-INF\classes\com\archive\framework\aspectj\lang\annotation\Excel$Type.class

@ -1,78 +1,78 @@
/* */ package com.archive.framework.config package 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;
/* */ import org.springframework.beans.factory.annotation.Autowired; import org.springframework.beans.factory.annotation.Autowired;
/* */ import org.springframework.beans.factory.annotation.Value; import org.springframework.beans.factory.annotation.Value;
/* */ import org.springframework.context.annotation.Bean; import org.springframework.context.annotation.Bean;
/* */ import org.springframework.context.annotation.Configuration; import org.springframework.context.annotation.Configuration;
/* */ import springfox.documentation.builders.ApiInfoBuilder; import springfox.documentation.builders.ApiInfoBuilder;
/* */ import springfox.documentation.builders.PathSelectors; import springfox.documentation.builders.PathSelectors;
/* */ import springfox.documentation.builders.RequestHandlerSelectors; import springfox.documentation.builders.RequestHandlerSelectors;
/* */ import springfox.documentation.service.ApiInfo; import springfox.documentation.service.ApiInfo;
/* */ import springfox.documentation.service.Contact; import springfox.documentation.service.Contact;
/* */ import springfox.documentation.spi.DocumentationType; import springfox.documentation.spi.DocumentationType;
/* */ import springfox.documentation.spring.web.plugins.Docket; import springfox.documentation.spring.web.plugins.Docket;
/* */ import springfox.documentation.swagger2.annotations.EnableSwagger2; import springfox.documentation.swagger2.annotations.EnableSwagger2;
/* */
/* */
/* */
/* */
/* */
/* */
/* */
/* */
/* */
/* */
/* */
/* */
/* */ @Configuration @Configuration
/* */ @EnableSwagger2 @EnableSwagger2
/* */ public class SwaggerConfig public class SwaggerConfig
/* */ { {
/* */ @Autowired @Autowired
/* */ private ArchiveConfig archiveConfig; private ArchiveConfig archiveConfig;
/* */ @Value("${swagger.enabled}") @Value("${swagger.enabled}")
/* */ private boolean enabled; private boolean enabled;
/* */
/* */ @Bean @Bean
/* */ public Docket createRestApi() { public Docket createRestApi() {
/* 40 */ return (new Docket(DocumentationType.SWAGGER_2)) return (new Docket(DocumentationType.SWAGGER_2))
/* */
/* 42 */ .enable(this.enabled) .enable(this.enabled)
/* */
/* 44 */ .apiInfo(apiInfo()) .apiInfo(apiInfo())
/* */
/* 46 */ .select() .select()
/* */
/* 48 */ .apis(RequestHandlerSelectors.withMethodAnnotation(ApiOperation.class)) .apis(RequestHandlerSelectors.withMethodAnnotation(ApiOperation.class))
/* */
/* */
/* */
/* 52 */ .paths(PathSelectors.any()) .paths(PathSelectors.any())
/* 53 */ .build(); .build();
/* */ } }
/* */
/* */
/* */
/* */
/* */
/* */
/* */ private ApiInfo apiInfo() { private ApiInfo apiInfo() {
/* 62 */ return (new ApiInfoBuilder()) return (new ApiInfoBuilder())
/* */
/* 64 */ .title("标题若依管理系统_接口文档") .title("标题若依管理系统_接口文档")
/* */
/* 66 */ .description("描述:用于管理集团旗下公司的人员信息,具体包括XXX,XXX模块...") .description("描述:用于管理集团旗下公司的人员信息,具体包括XXX,XXX模块...")
/* */
/* 68 */ .contact(new Contact(this.archiveConfig.getName(), null, null)) .contact(new Contact(this.archiveConfig.getName(), null, null))
/* */
/* 70 */ .version("版本号:" + this.archiveConfig.getVersion()) .version("版本号:" + this.archiveConfig.getVersion())
/* 71 */ .build(); .build();
/* */ } }
/* */ } }
/* Location: C:\Users\Administrator\Desktop\extracted.zip!\extracted\BOOT-INF\classes\com\archive\framework\config\SwaggerConfig.class /* Location: C:\Users\Administrator\Desktop\extracted.zip!\extracted\BOOT-INF\classes\com\archive\framework\config\SwaggerConfig.class

@ -1,57 +1,57 @@
/* */ package com.archive.framework.config package com.archive.framework.config
; ;
/* */
/* */ import java.util.concurrent.ScheduledExecutorService; import java.util.concurrent.ScheduledExecutorService;
/* */ import java.util.concurrent.ScheduledThreadPoolExecutor; import java.util.concurrent.ScheduledThreadPoolExecutor;
import java.util.concurrent.ThreadFactory; import java.util.concurrent.ThreadFactory;
/* */ import java.util.concurrent.ThreadPoolExecutor; import java.util.concurrent.ThreadPoolExecutor;
/* */ import com.archive.common.utils.Threads; import com.archive.common.utils.Threads;
import org.apache.commons.lang3.concurrent.BasicThreadFactory; import org.apache.commons.lang3.concurrent.BasicThreadFactory;
/* */ import org.springframework.context.annotation.Bean; import org.springframework.context.annotation.Bean;
/* */ import org.springframework.context.annotation.Configuration; import org.springframework.context.annotation.Configuration;
/* */ import org.springframework.scheduling.concurrent.ThreadPoolTaskExecutor; import org.springframework.scheduling.concurrent.ThreadPoolTaskExecutor;
/* */
/* */
/* */
/* */
/* */
/* */
/* */
/* */
/* */ @Configuration @Configuration
/* */ public class ThreadPoolConfig public class ThreadPoolConfig
/* */ { {
/* 21 */ private int corePoolSize = 50; private int corePoolSize = 50;
/* */
/* */
/* 24 */ private int maxPoolSize = 200; private int maxPoolSize = 200;
/* */
/* */
/* 27 */ private int queueCapacity = 1000; private int queueCapacity = 1000;
/* */
/* */
/* 30 */ private int keepAliveSeconds = 300; private int keepAliveSeconds = 300;
/* */
/* */
/* */ @Bean(name = {"threadPoolTaskExecutor"}) @Bean(name = {"threadPoolTaskExecutor"})
/* */ public ThreadPoolTaskExecutor threadPoolTaskExecutor() { public ThreadPoolTaskExecutor threadPoolTaskExecutor() {
/* 35 */ ThreadPoolTaskExecutor executor = new ThreadPoolTaskExecutor(); ThreadPoolTaskExecutor executor = new ThreadPoolTaskExecutor();
/* 36 */ executor.setMaxPoolSize(this.maxPoolSize); executor.setMaxPoolSize(this.maxPoolSize);
/* 37 */ executor.setCorePoolSize(this.corePoolSize); executor.setCorePoolSize(this.corePoolSize);
/* 38 */ executor.setQueueCapacity(this.queueCapacity); executor.setQueueCapacity(this.queueCapacity);
/* 39 */ executor.setKeepAliveSeconds(this.keepAliveSeconds); executor.setKeepAliveSeconds(this.keepAliveSeconds);
/* */
/* 41 */ executor.setRejectedExecutionHandler(new ThreadPoolExecutor.CallerRunsPolicy()); executor.setRejectedExecutionHandler(new ThreadPoolExecutor.CallerRunsPolicy());
/* 42 */ return executor; return executor;
/* */ } }
/* */
/* */
/* */
/* */
/* */
/* */ @Bean(name = {"scheduledExecutorService"}) @Bean(name = {"scheduledExecutorService"})
/* */ protected ScheduledExecutorService scheduledExecutorService() protected ScheduledExecutorService scheduledExecutorService()
{ {
return new ScheduledThreadPoolExecutor(corePoolSize, return new ScheduledThreadPoolExecutor(corePoolSize,
new BasicThreadFactory.Builder().namingPattern("schedule-pool-%d").daemon(true).build(), new BasicThreadFactory.Builder().namingPattern("schedule-pool-%d").daemon(true).build(),
@ -65,7 +65,7 @@ import org.apache.commons.lang3.concurrent.BasicThreadFactory;
} }
}; };
} }
/* */ } }
/* Location: C:\Users\Administrator\Desktop\extracted.zip!\extracted\BOOT-INF\classes\com\archive\framework\config\ThreadPoolConfig.class /* Location: C:\Users\Administrator\Desktop\extracted.zip!\extracted\BOOT-INF\classes\com\archive\framework\config\ThreadPoolConfig.class

@ -1,42 +1,42 @@
/* */ package com.archive.framework.shiro.web.filter.sync; package com.archive.framework.shiro.web.filter.sync;
/* */
/* */ import com.archive.framework.shiro.session.OnlineSessionDAO; import com.archive.framework.shiro.session.OnlineSessionDAO;
/* */ import com.archive.project.monitor.online.domain.OnlineSession; import com.archive.project.monitor.online.domain.OnlineSession;
/* */ import javax.servlet.ServletRequest; import javax.servlet.ServletRequest;
/* */ import javax.servlet.ServletResponse; import javax.servlet.ServletResponse;
/* */ import org.apache.shiro.web.filter.PathMatchingFilter; import org.apache.shiro.web.filter.PathMatchingFilter;
/* */
/* */
/* */
/* */
/* */
/* */
/* */
/* */
/* */
/* */
/* */
/* */ public class SyncOnlineSessionFilter public class SyncOnlineSessionFilter
/* */ extends PathMatchingFilter extends PathMatchingFilter
/* */ { {
/* */ private OnlineSessionDAO onlineSessionDAO; private OnlineSessionDAO onlineSessionDAO;
/* */
/* */ protected boolean onPreHandle(ServletRequest request, ServletResponse response, Object mappedValue) throws Exception { protected boolean onPreHandle(ServletRequest request, ServletResponse response, Object mappedValue) throws Exception {
/* 25 */ OnlineSession session = (OnlineSession)request.getAttribute("online_session"); OnlineSession session = (OnlineSession)request.getAttribute("online_session");
/* */
/* */
/* 28 */ if (session != null && session.getUserId() != null && session.getStopTimestamp() == null) if (session != null && session.getUserId() != null && session.getStopTimestamp() == null)
/* */ { {
/* 30 */ this.onlineSessionDAO.syncToDb(session); this.onlineSessionDAO.syncToDb(session);
/* */ } }
/* 32 */ return true; return true;
/* */ } }
/* */
/* */
/* */ public void setOnlineSessionDAO(OnlineSessionDAO onlineSessionDAO) { public void setOnlineSessionDAO(OnlineSessionDAO onlineSessionDAO) {
/* 37 */ this.onlineSessionDAO = onlineSessionDAO; this.onlineSessionDAO = onlineSessionDAO;
/* */ } }
/* */ } }
/* Location: C:\Users\Administrator\Desktop\extracted.zip!\extracted\BOOT-INF\classes\com\archive\framework\shiro\web\filter\sync\SyncOnlineSessionFilter.class /* Location: C:\Users\Administrator\Desktop\extracted.zip!\extracted\BOOT-INF\classes\com\archive\framework\shiro\web\filter\sync\SyncOnlineSessionFilter.class

@ -1,68 +1,68 @@
/* */ package com.archive.framework.web.domain package com.archive.framework.web.domain
; ;
/* */
/* */ import com.archive.framework.web.domain.BaseEntity; import com.archive.framework.web.domain.BaseEntity;
/* */
/* */
/* */
/* */
/* */
/* */
/* */
/* */
/* */
/* */
/* */
/* */
/* */ public class TreeEntity public class TreeEntity
/* */ extends BaseEntity extends BaseEntity
/* */ { {
/* */ private static final long serialVersionUID = 1L; private static final long serialVersionUID = 1L;
/* */ private String parentName; private String parentName;
/* */ private Long parentId; private Long parentId;
/* */ private Integer orderNum; private Integer orderNum;
/* */ private String ancestors; private String ancestors;
/* */
/* */ public String getParentName() { public String getParentName() {
/* 26 */ return this.parentName; return this.parentName;
/* */ } }
/* */
/* */
/* */ public void setParentName(String parentName) { public void setParentName(String parentName) {
/* 31 */ this.parentName = parentName; this.parentName = parentName;
/* */ } }
/* */
/* */
/* */ public Long getParentId() { public Long getParentId() {
/* 36 */ return this.parentId; return this.parentId;
/* */ } }
/* */
/* */
/* */ public void setParentId(Long parentId) { public void setParentId(Long parentId) {
/* 41 */ this.parentId = parentId; this.parentId = parentId;
/* */ } }
/* */
/* */
/* */ public Integer getOrderNum() { public Integer getOrderNum() {
/* 46 */ return this.orderNum; return this.orderNum;
/* */ } }
/* */
/* */
/* */ public void setOrderNum(Integer orderNum) { public void setOrderNum(Integer orderNum) {
/* 51 */ this.orderNum = orderNum; this.orderNum = orderNum;
/* */ } }
/* */
/* */
/* */ public String getAncestors() { public String getAncestors() {
/* 56 */ return this.ancestors; return this.ancestors;
/* */ } }
/* */
/* */
/* */ public void setAncestors(String ancestors) { public void setAncestors(String ancestors) {
/* 61 */ this.ancestors = ancestors; this.ancestors = ancestors;
/* */ } }
/* */ } }
/* Location: C:\Users\Administrator\Desktop\extracted.zip!\extracted\BOOT-INF\classes\com\archive\framework\web\domain\TreeEntity.class /* Location: C:\Users\Administrator\Desktop\extracted.zip!\extracted\BOOT-INF\classes\com\archive\framework\web\domain\TreeEntity.class

@ -1,51 +1,51 @@
/* */ package com.archive.framework.web.domain package com.archive.framework.web.domain
; ;
/* */
/* */ import com.archive.framework.web.domain.AjaxResult; import com.archive.framework.web.domain.AjaxResult;
/* */
/* */
/* */
/* */
/* */
/* */
/* */
/* */
/* */
/* */
/* */
/* */
/* */
/* */
/* */
/* */
/* */
/* */
/* */
/* */
/* */
/* */
/* */
/* */
/* */ public enum Type public enum Type
/* */ { {
/* 30 */ SUCCESS(0), SUCCESS(0),
/* */
/* 32 */ WARN(301), WARN(301),
/* */
/* 34 */ ERROR(500); ERROR(500);
/* */
/* */ private final int value; private final int value;
/* */
/* */ Type(int value) { Type(int value) {
/* 39 */ this.value = value; this.value = value;
/* */ } }
/* */
/* */
/* */ public int value() { public int value() {
/* 44 */ return this.value; return this.value;
/* */ } }
/* */ } }
/* Location: C:\Users\Administrator\Desktop\extracted.zip!\extracted\BOOT-INF\classes\com\archive\framework\web\domain\AjaxResult$Type.class /* Location: C:\Users\Administrator\Desktop\extracted.zip!\extracted\BOOT-INF\classes\com\archive\framework\web\domain\AjaxResult$Type.class

@ -1,88 +1,88 @@
/* */ package com.archive.framework.web.page; package com.archive.framework.web.page;
/* */
/* */ import java.io.Serializable; import java.io.Serializable;
/* */ import java.util.List; import java.util.List;
/* */
/* */
/* */
/* */
/* */
/* */
/* */
/* */
/* */
/* */
/* */
/* */
/* */
/* */
/* */
/* */
/* */
/* */
/* */
/* */
/* */
/* */
/* */
/* */
/* */
/* */ public class TableDataInfo public class TableDataInfo
/* */ implements Serializable implements Serializable
/* */ { {
/* */ private static final long serialVersionUID = 1L; private static final long serialVersionUID = 1L;
/* */ private long total; private long total;
/* */ private List<?> rows; private List<?> rows;
/* */ private int code; private int code;
/* */ private String msg; private String msg;
/* */
/* */ public TableDataInfo() {} public TableDataInfo() {}
/* */
/* */ public TableDataInfo(List<?> list, int total) { public TableDataInfo(List<?> list, int total) {
/* 42 */ this.rows = list; this.rows = list;
/* 43 */ this.total = total; this.total = total;
/* */ } }
/* */
/* */
/* */ public long getTotal() { public long getTotal() {
/* 48 */ return this.total; return this.total;
/* */ } }
/* */
/* */
/* */ public void setTotal(long total) { public void setTotal(long total) {
/* 53 */ this.total = total; this.total = total;
/* */ } }
/* */
/* */
/* */ public List<?> getRows() { public List<?> getRows() {
/* 58 */ return this.rows; return this.rows;
/* */ } }
/* */
/* */
/* */ public void setRows(List<?> rows) { public void setRows(List<?> rows) {
/* 63 */ this.rows = rows; this.rows = rows;
/* */ } }
/* */
/* */
/* */ public int getCode() { public int getCode() {
/* 68 */ return this.code; return this.code;
/* */ } }
/* */
/* */
/* */ public void setCode(int code) { public void setCode(int code) {
/* 73 */ this.code = code; this.code = code;
/* */ } }
/* */
/* */
/* */ public String getMsg() { public String getMsg() {
/* 78 */ return this.msg; return this.msg;
/* */ } }
/* */
/* */
/* */ public void setMsg(String msg) { public void setMsg(String msg) {
/* 83 */ this.msg = msg; this.msg = msg;
/* */ } }
/* */ } }
/* Location: C:\Users\Administrator\Desktop\extracted.zip!\extracted\BOOT-INF\classes\com\archive\framework\web\page\TableDataInfo.class /* Location: C:\Users\Administrator\Desktop\extracted.zip!\extracted\BOOT-INF\classes\com\archive\framework\web\page\TableDataInfo.class

@ -1,35 +1,35 @@
/* */ package com.archive.framework.web.page package com.archive.framework.web.page
; ;
/* */
/* */ import com.archive.common.utils.ServletUtils; import com.archive.common.utils.ServletUtils;
/* */ import com.archive.framework.web.page.PageDomain; import com.archive.framework.web.page.PageDomain;
/* */
/* */
/* */
/* */
/* */
/* */
/* */
/* */
/* */
/* */
/* */ public class TableSupport public class TableSupport
/* */ { {
/* */ public static PageDomain getPageDomain() { public static PageDomain getPageDomain() {
/* 18 */ PageDomain pageDomain = new PageDomain(); PageDomain pageDomain = new PageDomain();
/* 19 */ pageDomain.setPageNum(ServletUtils.getParameterToInt("pageNum")); pageDomain.setPageNum(ServletUtils.getParameterToInt("pageNum"));
/* 20 */ pageDomain.setPageSize(ServletUtils.getParameterToInt("pageSize")); pageDomain.setPageSize(ServletUtils.getParameterToInt("pageSize"));
/* 21 */ pageDomain.setOrderByColumn(ServletUtils.getParameter("orderByColumn")); pageDomain.setOrderByColumn(ServletUtils.getParameter("orderByColumn"));
/* 22 */ pageDomain.setIsAsc(ServletUtils.getParameter("isAsc")); pageDomain.setIsAsc(ServletUtils.getParameter("isAsc"));
/* 23 */ return pageDomain; return pageDomain;
/* */ } }
/* */
/* */
/* */ public static PageDomain buildPageRequest() { public static PageDomain buildPageRequest() {
/* 28 */ return getPageDomain(); return getPageDomain();
/* */ } }
/* */ } }
/* Location: C:\Users\Administrator\Desktop\extracted.zip!\extracted\BOOT-INF\classes\com\archive\framework\web\page\TableSupport.class /* Location: C:\Users\Administrator\Desktop\extracted.zip!\extracted\BOOT-INF\classes\com\archive\framework\web\page\TableSupport.class

@ -1,129 +1,129 @@
/* */ package com.archive.project.dabg.bfgl.controller; package com.archive.project.dabg.bfgl.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;
/* */ import com.archive.framework.aspectj.lang.enums.BusinessType; import com.archive.framework.aspectj.lang.enums.BusinessType;
/* */ 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;
/* */ import com.archive.framework.web.page.TableDataInfo; import com.archive.framework.web.page.TableDataInfo;
/* */ import com.archive.project.dabg.bfgl.domain.TKfBfgl; import com.archive.project.dabg.bfgl.domain.TKfBfgl;
/* */ import com.archive.project.dabg.bfgl.service.ITKfBfglService; import com.archive.project.dabg.bfgl.service.ITKfBfglService;
/* */ import java.util.List; import java.util.List;
/* */ import org.apache.shiro.authz.annotation.RequiresPermissions; import org.apache.shiro.authz.annotation.RequiresPermissions;
/* */ import org.springframework.beans.factory.annotation.Autowired; import org.springframework.beans.factory.annotation.Autowired;
/* */ import org.springframework.stereotype.Controller; import org.springframework.stereotype.Controller;
/* */ import org.springframework.ui.ModelMap; import org.springframework.ui.ModelMap;
/* */ import org.springframework.web.bind.annotation.GetMapping; import org.springframework.web.bind.annotation.GetMapping;
/* */ import org.springframework.web.bind.annotation.PathVariable; import org.springframework.web.bind.annotation.PathVariable;
/* */ import org.springframework.web.bind.annotation.PostMapping; import org.springframework.web.bind.annotation.PostMapping;
/* */ import org.springframework.web.bind.annotation.RequestMapping; import org.springframework.web.bind.annotation.RequestMapping;
/* */ import org.springframework.web.bind.annotation.ResponseBody; import org.springframework.web.bind.annotation.ResponseBody;
/* */
/* */
/* */
/* */
/* */
/* */
/* */ @Controller @Controller
/* */ @RequestMapping({"/dabg/bfgl"}) @RequestMapping({"/dabg/bfgl"})
/* */ public class TKfBfglController public class TKfBfglController
/* */ extends BaseController extends BaseController
/* */ { {
/* 32 */ private String prefix = "dabg/bfgl"; private String prefix = "dabg/bfgl";
/* */
/* */ @Autowired @Autowired
/* */ private ITKfBfglService tKfBfglService; private ITKfBfglService tKfBfglService;
/* */
/* */
/* */ @RequiresPermissions({"dabg:bfgl:view"}) @RequiresPermissions({"dabg:bfgl:view"})
/* */ @GetMapping @GetMapping
/* */ public String bfgl() { public String bfgl() {
/* 41 */ return this.prefix + "/bfgl"; return this.prefix + "/bfgl";
/* */ } }
/* */
/* */
/* */
/* */
/* */
/* */ @RequiresPermissions({"dabg:bfgl:list"}) @RequiresPermissions({"dabg:bfgl:list"})
/* */ @PostMapping({"/list"}) @PostMapping({"/list"})
/* */ @ResponseBody @ResponseBody
/* */ public TableDataInfo list(TKfBfgl tKfBfgl) { public TableDataInfo list(TKfBfgl tKfBfgl) {
/* 52 */ startPage(); startPage();
/* 53 */ List<TKfBfgl> list = this.tKfBfglService.selectTKfBfglList(tKfBfgl); List<TKfBfgl> list = this.tKfBfglService.selectTKfBfglList(tKfBfgl);
/* 54 */ return getDataTable(list); return getDataTable(list);
/* */ } }
/* */
/* */
/* */
/* */
/* */
/* */ @RequiresPermissions({"dabg:bfgl:export"}) @RequiresPermissions({"dabg:bfgl:export"})
/* */ @Log(title = "库房八防管理", businessType = BusinessType.EXPORT) @Log(title = "库房八防管理", businessType = BusinessType.EXPORT)
/* */ @PostMapping({"/export"}) @PostMapping({"/export"})
/* */ @ResponseBody @ResponseBody
/* */ public AjaxResult export(TKfBfgl tKfBfgl) { public AjaxResult export(TKfBfgl tKfBfgl) {
/* 66 */ List<TKfBfgl> list = this.tKfBfglService.selectTKfBfglList(tKfBfgl); List<TKfBfgl> list = this.tKfBfglService.selectTKfBfglList(tKfBfgl);
/* 67 */ ExcelUtil<TKfBfgl> util = new ExcelUtil(TKfBfgl.class); ExcelUtil<TKfBfgl> util = new ExcelUtil(TKfBfgl.class);
/* 68 */ return util.exportExcel(list, "bfgl"); return util.exportExcel(list, "bfgl");
/* */ } }
/* */
/* */
/* */
/* */
/* */
/* */ @GetMapping({"/add"}) @GetMapping({"/add"})
/* */ public String add() { public String add() {
/* 77 */ return this.prefix + "/add"; return this.prefix + "/add";
/* */ } }
/* */
/* */
/* */
/* */
/* */
/* */ @RequiresPermissions({"dabg:bfgl:add"}) @RequiresPermissions({"dabg:bfgl:add"})
/* */ @Log(title = "库房八防管理", businessType = BusinessType.INSERT) @Log(title = "库房八防管理", businessType = BusinessType.INSERT)
/* */ @PostMapping({"/add"}) @PostMapping({"/add"})
/* */ @ResponseBody @ResponseBody
/* */ public AjaxResult addSave(TKfBfgl tKfBfgl) { public AjaxResult addSave(TKfBfgl tKfBfgl) {
/* 89 */ return toAjax(this.tKfBfglService.insertTKfBfgl(tKfBfgl)); return toAjax(this.tKfBfglService.insertTKfBfgl(tKfBfgl));
/* */ } }
/* */
/* */
/* */
/* */
/* */
/* */ @GetMapping({"/edit/{id}"}) @GetMapping({"/edit/{id}"})
/* */ public String edit(@PathVariable("id") Long id, ModelMap mmap) { public String edit(@PathVariable("id") Long id, ModelMap mmap) {
/* 98 */ TKfBfgl tKfBfgl = this.tKfBfglService.selectTKfBfglById(id); TKfBfgl tKfBfgl = this.tKfBfglService.selectTKfBfglById(id);
/* 99 */ mmap.put("tKfBfgl", tKfBfgl); mmap.put("tKfBfgl", tKfBfgl);
/* 100 */ return this.prefix + "/edit"; return this.prefix + "/edit";
/* */ } }
/* */
/* */
/* */
/* */
/* */
/* */ @RequiresPermissions({"dabg:bfgl:edit"}) @RequiresPermissions({"dabg:bfgl:edit"})
/* */ @Log(title = "库房八防管理", businessType = BusinessType.UPDATE) @Log(title = "库房八防管理", businessType = BusinessType.UPDATE)
/* */ @PostMapping({"/edit"}) @PostMapping({"/edit"})
/* */ @ResponseBody @ResponseBody
/* */ public AjaxResult editSave(TKfBfgl tKfBfgl) { public AjaxResult editSave(TKfBfgl tKfBfgl) {
/* 112 */ return toAjax(this.tKfBfglService.updateTKfBfgl(tKfBfgl)); return toAjax(this.tKfBfglService.updateTKfBfgl(tKfBfgl));
/* */ } }
/* */
/* */
/* */
/* */
/* */
/* */ @RequiresPermissions({"dabg:bfgl:remove"}) @RequiresPermissions({"dabg:bfgl:remove"})
/* */ @Log(title = "库房八防管理", businessType = BusinessType.DELETE) @Log(title = "库房八防管理", businessType = BusinessType.DELETE)
/* */ @PostMapping({"/remove"}) @PostMapping({"/remove"})
/* */ @ResponseBody @ResponseBody
/* */ public AjaxResult remove(String ids) { public AjaxResult remove(String ids) {
/* 124 */ return toAjax(this.tKfBfglService.deleteTKfBfglByIds(ids)); return toAjax(this.tKfBfglService.deleteTKfBfglByIds(ids));
/* */ } }
/* */ } }
/* Location: C:\Users\Administrator\Desktop\extracted.zip!\extracted\BOOT-INF\classes\com\archive\project\dabg\bfgl\controller\TKfBfglController.class /* Location: C:\Users\Administrator\Desktop\extracted.zip!\extracted\BOOT-INF\classes\com\archive\project\dabg\bfgl\controller\TKfBfglController.class

@ -1,142 +1,142 @@
/* */ package com.archive.project.dabg.bfgl.domain package 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;
/* */ import org.apache.commons.lang3.builder.ToStringBuilder; import org.apache.commons.lang3.builder.ToStringBuilder;
/* */ import org.apache.commons.lang3.builder.ToStringStyle; import org.apache.commons.lang3.builder.ToStringStyle;
/* */
/* */
/* */
/* */
/* */
/* */
/* */
/* */
/* */
/* */
/* */
/* */
/* */
/* */
/* */
/* */
/* */
/* */
/* */
/* */
/* */
/* */
/* */
/* */ public class TKfBfgl public class TKfBfgl
/* */ extends BaseEntity extends BaseEntity
/* */ { {
/* */ private static final long serialVersionUID = 1L; private static final long serialVersionUID = 1L;
/* */ private Long id; private Long id;
/* */ @Excel(name = "库房名称") @Excel(name = "库房名称")
/* */ private String kfmc; private String kfmc;
/* */ @Excel(name = "库房号") @Excel(name = "库房号")
/* */ private String kfh; private String kfh;
/* */ @Excel(name = "检查类型") @Excel(name = "检查类型")
/* */ private String jclx; private String jclx;
/* */ @Excel(name = "检查人") @Excel(name = "检查人")
/* */ private String jcr; private String jcr;
/* */ @Excel(name = "状态") @Excel(name = "状态")
/* */ private String status; private String status;
/* */ @Excel(name = "检查时间") @Excel(name = "检查时间")
/* */ private String jcsj; private String jcsj;
/* */ @Excel(name = "备注") @Excel(name = "备注")
/* */ private String bz; private String bz;
/* */
/* */ public void setId(Long id) { public void setId(Long id) {
/* 51 */ this.id = id; this.id = id;
/* */ } }
/* */
/* */
/* */ public Long getId() { public Long getId() {
/* 56 */ return this.id; return this.id;
/* */ } }
/* */
/* */ public void setKfmc(String kfmc) { public void setKfmc(String kfmc) {
/* 60 */ this.kfmc = kfmc; this.kfmc = kfmc;
/* */ } }
/* */
/* */
/* */ public String getKfmc() { public String getKfmc() {
/* 65 */ return this.kfmc; return this.kfmc;
/* */ } }
/* */
/* */ public void setKfh(String kfh) { public void setKfh(String kfh) {
/* 69 */ this.kfh = kfh; this.kfh = kfh;
/* */ } }
/* */
/* */
/* */ public String getKfh() { public String getKfh() {
/* 74 */ return this.kfh; return this.kfh;
/* */ } }
/* */
/* */ public void setJclx(String jclx) { public void setJclx(String jclx) {
/* 78 */ this.jclx = jclx; this.jclx = jclx;
/* */ } }
/* */
/* */
/* */ public String getJclx() { public String getJclx() {
/* 83 */ return this.jclx; return this.jclx;
/* */ } }
/* */
/* */ public void setStatus(String status) { public void setStatus(String status) {
/* 87 */ this.status = status; this.status = status;
/* */ } }
/* */
/* */
/* */ public String getJcr() { public String getJcr() {
/* 92 */ return this.jcr; return this.jcr;
/* */ } }
/* */
/* */ public void setJcr(String jcr) { public void setJcr(String jcr) {
/* 96 */ this.jcr = jcr; this.jcr = jcr;
/* */ } }
/* */
/* */
/* */
/* */
/* */ public String getStatus() { public String getStatus() {
/* 103 */ return this.status; return this.status;
/* */ } }
/* */
/* */ public void setJcsj(String jcsj) { public void setJcsj(String jcsj) {
/* 107 */ this.jcsj = jcsj; this.jcsj = jcsj;
/* */ } }
/* */
/* */
/* */ public String getJcsj() { public String getJcsj() {
/* 112 */ return this.jcsj; return this.jcsj;
/* */ } }
/* */
/* */ public void setBz(String bz) { public void setBz(String bz) {
/* 116 */ this.bz = bz; this.bz = bz;
/* */ } }
/* */
/* */
/* */ public String getBz() { public String getBz() {
/* 121 */ return this.bz; return this.bz;
/* */ } }
/* */
/* */
/* */ public String toString() { public String toString() {
/* 126 */ return (new ToStringBuilder(this, ToStringStyle.MULTI_LINE_STYLE)) return (new ToStringBuilder(this, ToStringStyle.MULTI_LINE_STYLE))
/* 127 */ .append("id", getId()) .append("id", getId())
/* 128 */ .append("kfmc", getKfmc()) .append("kfmc", getKfmc())
/* 129 */ .append("kfh", getKfh()) .append("kfh", getKfh())
/* 130 */ .append("jclx", getJclx()) .append("jclx", getJclx())
/* 131 */ .append("status", getStatus()) .append("status", getStatus())
/* 132 */ .append("jcsj", getJcsj()) .append("jcsj", getJcsj())
/* 133 */ .append("bz", getBz()) .append("bz", getBz())
/* 134 */ .append("jcr", getJcr()) .append("jcr", getJcr())
/* 135 */ .toString(); .toString();
/* */ } }
/* */ } }
/* Location: C:\Users\Administrator\Desktop\extracted.zip!\extracted\BOOT-INF\classes\com\archive\project\dabg\bfgl\domain\TKfBfgl.class /* Location: C:\Users\Administrator\Desktop\extracted.zip!\extracted\BOOT-INF\classes\com\archive\project\dabg\bfgl\domain\TKfBfgl.class

@ -1,99 +1,99 @@
/* */ package com.archive.project.dabg.bfgl.service.impl package 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;
/* */ import com.archive.project.dabg.bfgl.mapper.TKfBfglMapper; import com.archive.project.dabg.bfgl.mapper.TKfBfglMapper;
/* */ import com.archive.project.dabg.bfgl.service.ITKfBfglService; import com.archive.project.dabg.bfgl.service.ITKfBfglService;
/* */ import java.util.List; import java.util.List;
/* */ import org.springframework.beans.factory.annotation.Autowired; import org.springframework.beans.factory.annotation.Autowired;
/* */ import org.springframework.stereotype.Service; import org.springframework.stereotype.Service;
/* */
/* */
/* */
/* */
/* */
/* */
/* */
/* */
/* */
/* */
/* */
/* */
/* */
/* */
/* */ @Service @Service
/* */ public class TKfBfglServiceImpl public class TKfBfglServiceImpl
/* */ implements ITKfBfglService implements ITKfBfglService
/* */ { {
/* */ @Autowired @Autowired
/* */ private TKfBfglMapper tKfBfglMapper; private TKfBfglMapper tKfBfglMapper;
/* */
/* */ public TKfBfgl selectTKfBfglById(Long id) { public TKfBfgl selectTKfBfglById(Long id) {
/* 32 */ return this.tKfBfglMapper.selectTKfBfglById(id); return this.tKfBfglMapper.selectTKfBfglById(id);
/* */ } }
/* */
/* */
/* */
/* */
/* */
/* */
/* */
/* */
/* */
/* */ public List<TKfBfgl> selectTKfBfglList(TKfBfgl tKfBfgl) { public List<TKfBfgl> selectTKfBfglList(TKfBfgl tKfBfgl) {
/* 44 */ return this.tKfBfglMapper.selectTKfBfglList(tKfBfgl); return this.tKfBfglMapper.selectTKfBfglList(tKfBfgl);
/* */ } }
/* */
/* */
/* */
/* */
/* */
/* */
/* */
/* */
/* */
/* */ public int insertTKfBfgl(TKfBfgl tKfBfgl) { public int insertTKfBfgl(TKfBfgl tKfBfgl) {
/* 56 */ return this.tKfBfglMapper.insertTKfBfgl(tKfBfgl); return this.tKfBfglMapper.insertTKfBfgl(tKfBfgl);
/* */ } }
/* */
/* */
/* */
/* */
/* */
/* */
/* */
/* */
/* */
/* */ public int updateTKfBfgl(TKfBfgl tKfBfgl) { public int updateTKfBfgl(TKfBfgl tKfBfgl) {
/* 68 */ return this.tKfBfglMapper.updateTKfBfgl(tKfBfgl); return this.tKfBfglMapper.updateTKfBfgl(tKfBfgl);
/* */ } }
/* */
/* */
/* */
/* */
/* */
/* */
/* */
/* */
/* */
/* */ public int deleteTKfBfglByIds(String ids) { public int deleteTKfBfglByIds(String ids) {
/* 80 */ return this.tKfBfglMapper.deleteTKfBfglByIds(Convert.toStrArray(ids)); return this.tKfBfglMapper.deleteTKfBfglByIds(Convert.toStrArray(ids));
/* */ } }
/* */
/* */
/* */
/* */
/* */
/* */
/* */
/* */
/* */
/* */ public int deleteTKfBfglById(Long id) { public int deleteTKfBfglById(Long id) {
/* 92 */ return this.tKfBfglMapper.deleteTKfBfglById(id); return this.tKfBfglMapper.deleteTKfBfglById(id);
/* */ } }
/* */ } }
/* Location: C:\Users\Administrator\Desktop\extracted.zip!\extracted\BOOT-INF\classes\com\archive\project\dabg\bfgl\service\impl\TKfBfglServiceImpl.class /* Location: C:\Users\Administrator\Desktop\extracted.zip!\extracted\BOOT-INF\classes\com\archive\project\dabg\bfgl\service\impl\TKfBfglServiceImpl.class

@ -1,130 +1,130 @@
/* */ package com.archive.project.dabg.wsddj.controller package 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;
/* */ import com.archive.framework.aspectj.lang.enums.BusinessType; import com.archive.framework.aspectj.lang.enums.BusinessType;
/* */ 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;
/* */ import com.archive.framework.web.page.TableDataInfo; import com.archive.framework.web.page.TableDataInfo;
/* */ import com.archive.project.dabg.wsddj.domain.TKfWsddj; import com.archive.project.dabg.wsddj.domain.TKfWsddj;
/* */ import com.archive.project.dabg.wsddj.service.ITKfWsddjService; import com.archive.project.dabg.wsddj.service.ITKfWsddjService;
/* */ import java.util.List; import java.util.List;
/* */ import org.apache.shiro.authz.annotation.RequiresPermissions; import org.apache.shiro.authz.annotation.RequiresPermissions;
/* */ import org.springframework.beans.factory.annotation.Autowired; import org.springframework.beans.factory.annotation.Autowired;
/* */ import org.springframework.stereotype.Controller; import org.springframework.stereotype.Controller;
/* */ import org.springframework.ui.ModelMap; import org.springframework.ui.ModelMap;
/* */ import org.springframework.web.bind.annotation.GetMapping; import org.springframework.web.bind.annotation.GetMapping;
/* */ import org.springframework.web.bind.annotation.PathVariable; import org.springframework.web.bind.annotation.PathVariable;
/* */ import org.springframework.web.bind.annotation.PostMapping; import org.springframework.web.bind.annotation.PostMapping;
/* */ import org.springframework.web.bind.annotation.RequestMapping; import org.springframework.web.bind.annotation.RequestMapping;
/* */ import org.springframework.web.bind.annotation.ResponseBody; import org.springframework.web.bind.annotation.ResponseBody;
/* */
/* */
/* */
/* */
/* */
/* */
/* */ @Controller @Controller
/* */ @RequestMapping({"/dabg/wsddj"}) @RequestMapping({"/dabg/wsddj"})
/* */ public class TKfWsddjController public class TKfWsddjController
/* */ extends BaseController extends BaseController
/* */ { {
/* 32 */ private String prefix = "dabg/wsddj"; private String prefix = "dabg/wsddj";
/* */
/* */ @Autowired @Autowired
/* */ private ITKfWsddjService tKfWsddjService; private ITKfWsddjService tKfWsddjService;
/* */
/* */
/* */ @RequiresPermissions({"dabg:wsddj:view"}) @RequiresPermissions({"dabg:wsddj:view"})
/* */ @GetMapping @GetMapping
/* */ public String wsddj() { public String wsddj() {
/* 41 */ return this.prefix + "/wsddj"; return this.prefix + "/wsddj";
/* */ } }
/* */
/* */
/* */
/* */
/* */
/* */ @RequiresPermissions({"dabg:wsddj:list"}) @RequiresPermissions({"dabg:wsddj:list"})
/* */ @PostMapping({"/list"}) @PostMapping({"/list"})
/* */ @ResponseBody @ResponseBody
/* */ public TableDataInfo list(TKfWsddj tKfWsddj) { public TableDataInfo list(TKfWsddj tKfWsddj) {
/* 52 */ startPage(); startPage();
/* 53 */ List<TKfWsddj> list = this.tKfWsddjService.selectTKfWsddjList(tKfWsddj); List<TKfWsddj> list = this.tKfWsddjService.selectTKfWsddjList(tKfWsddj);
/* 54 */ return getDataTable(list); return getDataTable(list);
/* */ } }
/* */
/* */
/* */
/* */
/* */
/* */ @RequiresPermissions({"dabg:wsddj:export"}) @RequiresPermissions({"dabg:wsddj:export"})
/* */ @Log(title = "库房温湿度登记", businessType = BusinessType.EXPORT) @Log(title = "库房温湿度登记", businessType = BusinessType.EXPORT)
/* */ @PostMapping({"/export"}) @PostMapping({"/export"})
/* */ @ResponseBody @ResponseBody
/* */ public AjaxResult export(TKfWsddj tKfWsddj) { public AjaxResult export(TKfWsddj tKfWsddj) {
/* 66 */ List<TKfWsddj> list = this.tKfWsddjService.selectTKfWsddjList(tKfWsddj); List<TKfWsddj> list = this.tKfWsddjService.selectTKfWsddjList(tKfWsddj);
/* 67 */ ExcelUtil<TKfWsddj> util = new ExcelUtil(TKfWsddj.class); ExcelUtil<TKfWsddj> util = new ExcelUtil(TKfWsddj.class);
/* 68 */ return util.exportExcel(list, "wsddj"); return util.exportExcel(list, "wsddj");
/* */ } }
/* */
/* */
/* */
/* */
/* */
/* */ @GetMapping({"/add"}) @GetMapping({"/add"})
/* */ public String add() { public String add() {
/* 77 */ return this.prefix + "/add"; return this.prefix + "/add";
/* */ } }
/* */
/* */
/* */
/* */
/* */
/* */ @RequiresPermissions({"dabg:wsddj:add"}) @RequiresPermissions({"dabg:wsddj:add"})
/* */ @Log(title = "库房温湿度登记", businessType = BusinessType.INSERT) @Log(title = "库房温湿度登记", businessType = BusinessType.INSERT)
/* */ @PostMapping({"/add"}) @PostMapping({"/add"})
/* */ @ResponseBody @ResponseBody
/* */ public AjaxResult addSave(TKfWsddj tKfWsddj) { public AjaxResult addSave(TKfWsddj tKfWsddj) {
/* 89 */ return toAjax(this.tKfWsddjService.insertTKfWsddj(tKfWsddj)); return toAjax(this.tKfWsddjService.insertTKfWsddj(tKfWsddj));
/* */ } }
/* */
/* */
/* */
/* */
/* */
/* */ @GetMapping({"/edit/{id}"}) @GetMapping({"/edit/{id}"})
/* */ public String edit(@PathVariable("id") Long id, ModelMap mmap) { public String edit(@PathVariable("id") Long id, ModelMap mmap) {
/* 98 */ TKfWsddj tKfWsddj = this.tKfWsddjService.selectTKfWsddjById(id); TKfWsddj tKfWsddj = this.tKfWsddjService.selectTKfWsddjById(id);
/* 99 */ mmap.put("tKfWsddj", tKfWsddj); mmap.put("tKfWsddj", tKfWsddj);
/* 100 */ return this.prefix + "/edit"; return this.prefix + "/edit";
/* */ } }
/* */
/* */
/* */
/* */
/* */
/* */ @RequiresPermissions({"dabg:wsddj:edit"}) @RequiresPermissions({"dabg:wsddj:edit"})
/* */ @Log(title = "库房温湿度登记", businessType = BusinessType.UPDATE) @Log(title = "库房温湿度登记", businessType = BusinessType.UPDATE)
/* */ @PostMapping({"/edit"}) @PostMapping({"/edit"})
/* */ @ResponseBody @ResponseBody
/* */ public AjaxResult editSave(TKfWsddj tKfWsddj) { public AjaxResult editSave(TKfWsddj tKfWsddj) {
/* 112 */ return toAjax(this.tKfWsddjService.updateTKfWsddj(tKfWsddj)); return toAjax(this.tKfWsddjService.updateTKfWsddj(tKfWsddj));
/* */ } }
/* */
/* */
/* */
/* */
/* */
/* */ @RequiresPermissions({"dabg:wsddj:remove"}) @RequiresPermissions({"dabg:wsddj:remove"})
/* */ @Log(title = "库房温湿度登记", businessType = BusinessType.DELETE) @Log(title = "库房温湿度登记", businessType = BusinessType.DELETE)
/* */ @PostMapping({"/remove"}) @PostMapping({"/remove"})
/* */ @ResponseBody @ResponseBody
/* */ public AjaxResult remove(String ids) { public AjaxResult remove(String ids) {
/* 124 */ return toAjax(this.tKfWsddjService.deleteTKfWsddjByIds(ids)); return toAjax(this.tKfWsddjService.deleteTKfWsddjByIds(ids));
/* */ } }
/* */ } }
/* Location: C:\Users\Administrator\Desktop\extracted.zip!\extracted\BOOT-INF\classes\com\archive\project\dabg\wsddj\controller\TKfWsddjController.class /* Location: C:\Users\Administrator\Desktop\extracted.zip!\extracted\BOOT-INF\classes\com\archive\project\dabg\wsddj\controller\TKfWsddjController.class

@ -1,153 +1,153 @@
/* */ package com.archive.project.dabg.wsddj.domain package com.archive.project.dabg.wsddj.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;
/* */ import org.apache.commons.lang3.builder.ToStringBuilder; import org.apache.commons.lang3.builder.ToStringBuilder;
/* */ import org.apache.commons.lang3.builder.ToStringStyle; import org.apache.commons.lang3.builder.ToStringStyle;
/* */
/* */
/* */
/* */
/* */
/* */
/* */
/* */
/* */
/* */
/* */
/* */
/* */
/* */
/* */
/* */
/* */
/* */
/* */
/* */
/* */
/* */
/* */
/* */
/* */
/* */ public class TKfWsddj public class TKfWsddj
/* */ extends BaseEntity extends BaseEntity
/* */ { {
/* */ private static final long serialVersionUID = 1L; private static final long serialVersionUID = 1L;
/* */ private Long id; private Long id;
/* */ @Excel(name = "时间") @Excel(name = "时间")
/* */ private String rqsj; private String rqsj;
/* */ @Excel(name = "检查人") @Excel(name = "检查人")
/* */ private String jcr; private String jcr;
/* */ @Excel(name = "库房名称") @Excel(name = "库房名称")
/* */ private String kfmc; private String kfmc;
/* */ @Excel(name = "库房号") @Excel(name = "库房号")
/* */ private String kfh; private String kfh;
/* */ @Excel(name = "温度") @Excel(name = "温度")
/* */ private String wd; private String wd;
/* */ @Excel(name = "湿度") @Excel(name = "湿度")
/* */ private String sd; private String sd;
/* */ @Excel(name = "备注") @Excel(name = "备注")
/* */ private String bz; private String bz;
/* */ @Excel(name = "状态") @Excel(name = "状态")
/* */ private String status; private String status;
/* */
/* */ public void setId(Long id) { public void setId(Long id) {
/* 55 */ this.id = id; this.id = id;
/* */ } }
/* */
/* */
/* */ public Long getId() { public Long getId() {
/* 60 */ return this.id; return this.id;
/* */ } }
/* */
/* */ public void setRqsj(String rqsj) { public void setRqsj(String rqsj) {
/* 64 */ this.rqsj = rqsj; this.rqsj = rqsj;
/* */ } }
/* */
/* */
/* */ public String getRqsj() { public String getRqsj() {
/* 69 */ return this.rqsj; return this.rqsj;
/* */ } }
/* */
/* */ public void setJcr(String jcr) { public void setJcr(String jcr) {
/* 73 */ this.jcr = jcr; this.jcr = jcr;
/* */ } }
/* */
/* */
/* */ public String getJcr() { public String getJcr() {
/* 78 */ return this.jcr; return this.jcr;
/* */ } }
/* */
/* */ public void setKfmc(String kfmc) { public void setKfmc(String kfmc) {
/* 82 */ this.kfmc = kfmc; this.kfmc = kfmc;
/* */ } }
/* */
/* */
/* */ public String getKfmc() { public String getKfmc() {
/* 87 */ return this.kfmc; return this.kfmc;
/* */ } }
/* */
/* */ public void setKfh(String kfh) { public void setKfh(String kfh) {
/* 91 */ this.kfh = kfh; this.kfh = kfh;
/* */ } }
/* */
/* */
/* */ public String getKfh() { public String getKfh() {
/* 96 */ return this.kfh; return this.kfh;
/* */ } }
/* */
/* */ public void setWd(String wd) { public void setWd(String wd) {
/* 100 */ this.wd = wd; this.wd = wd;
/* */ } }
/* */
/* */
/* */ public String getWd() { public String getWd() {
/* 105 */ return this.wd; return this.wd;
/* */ } }
/* */
/* */ public void setSd(String sd) { public void setSd(String sd) {
/* 109 */ this.sd = sd; this.sd = sd;
/* */ } }
/* */
/* */
/* */ public String getSd() { public String getSd() {
/* 114 */ return this.sd; return this.sd;
/* */ } }
/* */
/* */ public void setBz(String bz) { public void setBz(String bz) {
/* 118 */ this.bz = bz; this.bz = bz;
/* */ } }
/* */
/* */
/* */ public String getBz() { public String getBz() {
/* 123 */ return this.bz; return this.bz;
/* */ } }
/* */
/* */ public void setStatus(String status) { public void setStatus(String status) {
/* 127 */ this.status = status; this.status = status;
/* */ } }
/* */
/* */
/* */ public String getStatus() { public String getStatus() {
/* 132 */ return this.status; return this.status;
/* */ } }
/* */
/* */
/* */ public String toString() { public String toString() {
/* 137 */ return (new ToStringBuilder(this, ToStringStyle.MULTI_LINE_STYLE)) return (new ToStringBuilder(this, ToStringStyle.MULTI_LINE_STYLE))
/* 138 */ .append("id", getId()) .append("id", getId())
/* 139 */ .append("rqsj", getRqsj()) .append("rqsj", getRqsj())
/* 140 */ .append("jcr", getJcr()) .append("jcr", getJcr())
/* 141 */ .append("kfmc", getKfmc()) .append("kfmc", getKfmc())
/* 142 */ .append("kfh", getKfh()) .append("kfh", getKfh())
/* 143 */ .append("wd", getWd()) .append("wd", getWd())
/* 144 */ .append("sd", getSd()) .append("sd", getSd())
/* 145 */ .append("bz", getBz()) .append("bz", getBz())
/* 146 */ .append("status", getStatus()) .append("status", getStatus())
/* 147 */ .toString(); .toString();
/* */ } }
/* */ } }
/* Location: C:\Users\Administrator\Desktop\extracted.zip!\extracted\BOOT-INF\classes\com\archive\project\dabg\wsddj\domain\TKfWsddj.class /* Location: C:\Users\Administrator\Desktop\extracted.zip!\extracted\BOOT-INF\classes\com\archive\project\dabg\wsddj\domain\TKfWsddj.class

@ -1,99 +1,99 @@
/* */ package com.archive.project.dabg.wsddj.service.impl package com.archive.project.dabg.wsddj.service.impl
; ;
/* */
/* */ import com.archive.common.utils.text.Convert; import com.archive.common.utils.text.Convert;
/* */ import com.archive.project.dabg.wsddj.domain.TKfWsddj; import com.archive.project.dabg.wsddj.domain.TKfWsddj;
/* */ import com.archive.project.dabg.wsddj.mapper.TKfWsddjMapper; import com.archive.project.dabg.wsddj.mapper.TKfWsddjMapper;
/* */ import com.archive.project.dabg.wsddj.service.ITKfWsddjService; import com.archive.project.dabg.wsddj.service.ITKfWsddjService;
/* */ import java.util.List; import java.util.List;
/* */ import org.springframework.beans.factory.annotation.Autowired; import org.springframework.beans.factory.annotation.Autowired;
/* */ import org.springframework.stereotype.Service; import org.springframework.stereotype.Service;
/* */
/* */
/* */
/* */
/* */
/* */
/* */
/* */
/* */
/* */
/* */
/* */
/* */
/* */
/* */ @Service @Service
/* */ public class TKfWsddjServiceImpl public class TKfWsddjServiceImpl
/* */ implements ITKfWsddjService implements ITKfWsddjService
/* */ { {
/* */ @Autowired @Autowired
/* */ private TKfWsddjMapper tKfWsddjMapper; private TKfWsddjMapper tKfWsddjMapper;
/* */
/* */ public TKfWsddj selectTKfWsddjById(Long id) { public TKfWsddj selectTKfWsddjById(Long id) {
/* 32 */ return this.tKfWsddjMapper.selectTKfWsddjById(id); return this.tKfWsddjMapper.selectTKfWsddjById(id);
/* */ } }
/* */
/* */
/* */
/* */
/* */
/* */
/* */
/* */
/* */
/* */ public List<TKfWsddj> selectTKfWsddjList(TKfWsddj tKfWsddj) { public List<TKfWsddj> selectTKfWsddjList(TKfWsddj tKfWsddj) {
/* 44 */ return this.tKfWsddjMapper.selectTKfWsddjList(tKfWsddj); return this.tKfWsddjMapper.selectTKfWsddjList(tKfWsddj);
/* */ } }
/* */
/* */
/* */
/* */
/* */
/* */
/* */
/* */
/* */
/* */ public int insertTKfWsddj(TKfWsddj tKfWsddj) { public int insertTKfWsddj(TKfWsddj tKfWsddj) {
/* 56 */ return this.tKfWsddjMapper.insertTKfWsddj(tKfWsddj); return this.tKfWsddjMapper.insertTKfWsddj(tKfWsddj);
/* */ } }
/* */
/* */
/* */
/* */
/* */
/* */
/* */
/* */
/* */
/* */ public int updateTKfWsddj(TKfWsddj tKfWsddj) { public int updateTKfWsddj(TKfWsddj tKfWsddj) {
/* 68 */ return this.tKfWsddjMapper.updateTKfWsddj(tKfWsddj); return this.tKfWsddjMapper.updateTKfWsddj(tKfWsddj);
/* */ } }
/* */
/* */
/* */
/* */
/* */
/* */
/* */
/* */
/* */
/* */ public int deleteTKfWsddjByIds(String ids) { public int deleteTKfWsddjByIds(String ids) {
/* 80 */ return this.tKfWsddjMapper.deleteTKfWsddjByIds(Convert.toStrArray(ids)); return this.tKfWsddjMapper.deleteTKfWsddjByIds(Convert.toStrArray(ids));
/* */ } }
/* */
/* */
/* */
/* */
/* */
/* */
/* */
/* */
/* */
/* */ public int deleteTKfWsddjById(Long id) { public int deleteTKfWsddjById(Long id) {
/* 92 */ return this.tKfWsddjMapper.deleteTKfWsddjById(id); return this.tKfWsddjMapper.deleteTKfWsddjById(id);
/* */ } }
/* */ } }
/* Location: C:\Users\Administrator\Desktop\extracted.zip!\extracted\BOOT-INF\classes\com\archive\project\dabg\wsddj\service\impl\TKfWsddjServiceImpl.class /* Location: C:\Users\Administrator\Desktop\extracted.zip!\extracted\BOOT-INF\classes\com\archive\project\dabg\wsddj\service\impl\TKfWsddjServiceImpl.class

@ -1,134 +1,134 @@
/* */ package com.archive.project.dasz.gridcolumns.controller package 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;
/* */ import com.archive.framework.aspectj.lang.enums.BusinessType; import com.archive.framework.aspectj.lang.enums.BusinessType;
/* */ 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;
/* */ import com.archive.framework.web.page.TableDataInfo; import com.archive.framework.web.page.TableDataInfo;
/* */ import com.archive.project.dasz.gridcolumns.domain.TXtpzGridColumns; import com.archive.project.dasz.gridcolumns.domain.TXtpzGridColumns;
/* */ import com.archive.project.dasz.gridcolumns.service.ITXtpzGridColumnsService; import com.archive.project.dasz.gridcolumns.service.ITXtpzGridColumnsService;
/* */ import java.util.List; import java.util.List;
/* */ import org.springframework.beans.factory.annotation.Autowired; import org.springframework.beans.factory.annotation.Autowired;
/* */ import org.springframework.stereotype.Controller; import org.springframework.stereotype.Controller;
/* */ import org.springframework.ui.ModelMap; import org.springframework.ui.ModelMap;
/* */ import org.springframework.web.bind.annotation.GetMapping; import org.springframework.web.bind.annotation.GetMapping;
/* */ import org.springframework.web.bind.annotation.PathVariable; import org.springframework.web.bind.annotation.PathVariable;
/* */ import org.springframework.web.bind.annotation.PostMapping; import org.springframework.web.bind.annotation.PostMapping;
/* */ import org.springframework.web.bind.annotation.RequestMapping; import org.springframework.web.bind.annotation.RequestMapping;
/* */ import org.springframework.web.bind.annotation.ResponseBody; import org.springframework.web.bind.annotation.ResponseBody;
/* */
/* */
/* */
/* */
/* */
/* */
/* */
/* */ @Controller @Controller
/* */ @RequestMapping({"/dasz/gridcolumns"}) @RequestMapping({"/dasz/gridcolumns"})
/* */ public class TXtpzGridColumnsController public class TXtpzGridColumnsController
/* */ extends BaseController extends BaseController
/* */ { {
/* 32 */ private String prefix = "/dasz/gridcolumns"; private String prefix = "/dasz/gridcolumns";
/* */
/* */
/* */ @Autowired @Autowired
/* */ private ITXtpzGridColumnsService tXtpzGridColumnsService; private ITXtpzGridColumnsService tXtpzGridColumnsService;
/* */
/* */
/* */ @GetMapping({"/gridcolumns/{tableId}"}) @GetMapping({"/gridcolumns/{tableId}"})
/* */ public String columns(@PathVariable("tableId") Long tableId, ModelMap mmap) { public String columns(@PathVariable("tableId") Long tableId, ModelMap mmap) {
/* 41 */ mmap.put("tableId", tableId); mmap.put("tableId", tableId);
/* 42 */ return this.prefix + "/gridcolumns"; return this.prefix + "/gridcolumns";
/* */ } }
/* */
/* */
/* */
/* */
/* */
/* */
/* */ @PostMapping({"/list/{tableId}"}) @PostMapping({"/list/{tableId}"})
/* */ @ResponseBody @ResponseBody
/* */ public TableDataInfo list(@PathVariable("tableId") long tableId, TXtpzGridColumns tXtpzGridColumns) { public TableDataInfo list(@PathVariable("tableId") long tableId, TXtpzGridColumns tXtpzGridColumns) {
/* 53 */ startPage(); startPage();
/* 54 */ tXtpzGridColumns.setTableId(Long.valueOf(tableId)); tXtpzGridColumns.setTableId(Long.valueOf(tableId));
/* */
/* 56 */ List<TXtpzGridColumns> list = this.tXtpzGridColumnsService.selectTXtpzGridColumnsList(tXtpzGridColumns); List<TXtpzGridColumns> list = this.tXtpzGridColumnsService.selectTXtpzGridColumnsList(tXtpzGridColumns);
/* 57 */ return getDataTable(list); return getDataTable(list);
/* */ } }
/* */
/* */
/* */
/* */
/* */
/* */
/* */ @Log(title = "物理表列表定义", businessType = BusinessType.EXPORT) @Log(title = "物理表列表定义", businessType = BusinessType.EXPORT)
/* */ @PostMapping({"/export"}) @PostMapping({"/export"})
/* */ @ResponseBody @ResponseBody
/* */ public AjaxResult export(TXtpzGridColumns tXtpzGridColumns) { public AjaxResult export(TXtpzGridColumns tXtpzGridColumns) {
/* 69 */ List<TXtpzGridColumns> list = this.tXtpzGridColumnsService.selectTXtpzGridColumnsList(tXtpzGridColumns); List<TXtpzGridColumns> list = this.tXtpzGridColumnsService.selectTXtpzGridColumnsList(tXtpzGridColumns);
/* 70 */ ExcelUtil<TXtpzGridColumns> util = new ExcelUtil(TXtpzGridColumns.class); ExcelUtil<TXtpzGridColumns> util = new ExcelUtil(TXtpzGridColumns.class);
/* 71 */ return util.exportExcel(list, "columns"); return util.exportExcel(list, "columns");
/* */ } }
/* */
/* */
/* */
/* */
/* */
/* */ @GetMapping({"/add"}) @GetMapping({"/add"})
/* */ public String add() { public String add() {
/* 80 */ return this.prefix + "/gridadd"; return this.prefix + "/gridadd";
/* */ } }
/* */
/* */
/* */
/* */
/* */
/* */
/* */ @Log(title = "物理表列表定义", businessType = BusinessType.INSERT) @Log(title = "物理表列表定义", businessType = BusinessType.INSERT)
/* */ @PostMapping({"/add"}) @PostMapping({"/add"})
/* */ @ResponseBody @ResponseBody
/* */ public AjaxResult addSave(TXtpzGridColumns tXtpzGridColumns) { public AjaxResult addSave(TXtpzGridColumns tXtpzGridColumns) {
/* 92 */ return toAjax(this.tXtpzGridColumnsService.insertTXtpzGridColumns(tXtpzGridColumns)); return toAjax(this.tXtpzGridColumnsService.insertTXtpzGridColumns(tXtpzGridColumns));
/* */ } }
/* */
/* */
/* */
/* */
/* */
/* */ @GetMapping({"/edit/{id}"}) @GetMapping({"/edit/{id}"})
/* */ public String edit(@PathVariable("id") Long id, ModelMap mmap) { public String edit(@PathVariable("id") Long id, ModelMap mmap) {
/* 101 */ TXtpzGridColumns tXtpzGridColumns = this.tXtpzGridColumnsService.selectTXtpzGridColumnsById(id); TXtpzGridColumns tXtpzGridColumns = this.tXtpzGridColumnsService.selectTXtpzGridColumnsById(id);
/* 102 */ mmap.put("tXtpzGridColumns", tXtpzGridColumns); mmap.put("tXtpzGridColumns", tXtpzGridColumns);
/* 103 */ return this.prefix + "/gridedit"; return this.prefix + "/gridedit";
/* */ } }
/* */
/* */
/* */
/* */
/* */
/* */
/* */ @Log(title = "物理表列表定义", businessType = BusinessType.UPDATE) @Log(title = "物理表列表定义", businessType = BusinessType.UPDATE)
/* */ @PostMapping({"/edit"}) @PostMapping({"/edit"})
/* */ @ResponseBody @ResponseBody
/* */ public AjaxResult editSave(TXtpzGridColumns tXtpzGridColumns) { public AjaxResult editSave(TXtpzGridColumns tXtpzGridColumns) {
/* 115 */ return toAjax(this.tXtpzGridColumnsService.updateTXtpzGridColumns(tXtpzGridColumns)); return toAjax(this.tXtpzGridColumnsService.updateTXtpzGridColumns(tXtpzGridColumns));
/* */ } }
/* */
/* */
/* */
/* */
/* */
/* */
/* */ @Log(title = "物理表列表定义", businessType = BusinessType.DELETE) @Log(title = "物理表列表定义", businessType = BusinessType.DELETE)
/* */ @PostMapping({"/remove"}) @PostMapping({"/remove"})
/* */ @ResponseBody @ResponseBody
/* */ public AjaxResult remove(String ids) { public AjaxResult remove(String ids) {
/* 127 */ return toAjax(this.tXtpzGridColumnsService.deleteTXtpzGridColumnsByIds(ids)); return toAjax(this.tXtpzGridColumnsService.deleteTXtpzGridColumnsByIds(ids));
/* */ } }
/* */ } }
/* Location: C:\Users\Administrator\Desktop\extracted.zip!\extracted\BOOT-INF\classes\com\archive\project\dasz\gridcolumns\controller\TXtpzGridColumnsController.class /* Location: C:\Users\Administrator\Desktop\extracted.zip!\extracted\BOOT-INF\classes\com\archive\project\dasz\gridcolumns\controller\TXtpzGridColumnsController.class

@ -1,167 +1,167 @@
/* */ package com.archive.project.dasz.gridcolumns.domain package 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;
/* */ import org.apache.commons.lang3.builder.ToStringBuilder; import org.apache.commons.lang3.builder.ToStringBuilder;
/* */ import org.apache.commons.lang3.builder.ToStringStyle; import org.apache.commons.lang3.builder.ToStringStyle;
/* */
/* */
/* */
/* */
/* */
/* */
/* */
/* */
/* */
/* */
/* */
/* */
/* */
/* */
/* */
/* */
/* */
/* */
/* */
/* */
/* */
/* */
/* */
/* */
/* */
/* */
/* */
/* */ public class TXtpzGridColumns public class TXtpzGridColumns
/* */ extends BaseEntity extends BaseEntity
/* */ { {
/* */ private static final long serialVersionUID = 1L; private static final long serialVersionUID = 1L;
/* */ private Long id; private Long id;
/* */ @Excel(name = "所属表id") @Excel(name = "所属表id")
/* */ private Long tableId; private Long tableId;
/* */ @Excel(name = "字段id") @Excel(name = "字段id")
/* */ private Long columnId; private Long columnId;
/* */ @Excel(name = "字段名称") @Excel(name = "字段名称")
/* */ private String columnname; private String columnname;
/* */ @Excel(name = "字段显示名称") @Excel(name = "字段显示名称")
/* */ private String showname; private String showname;
/* */ @Excel(name = "列表显示宽度") @Excel(name = "列表显示宽度")
/* */ private Long width; private Long width;
/* */ @Excel(name = "显示顺序") @Excel(name = "显示顺序")
/* */ private Long orderInt; private Long orderInt;
/* */ @Excel(name = "档案类型id") @Excel(name = "档案类型id")
/* */ private Long archiveTypeId; private Long archiveTypeId;
/* */ @Excel(name = "备用字段1") @Excel(name = "备用字段1")
/* */ private String by1; private String by1;
/* */ @Excel(name = "备用字段2") @Excel(name = "备用字段2")
/* */ private String by2; private String by2;
/* */
/* */ public void setId(Long id) { public void setId(Long id) {
/* 59 */ this.id = id; this.id = id;
/* */ } }
/* */
/* */
/* */ public Long getId() { public Long getId() {
/* 64 */ return this.id; return this.id;
/* */ } }
/* */
/* */ public void setTableId(Long tableId) { public void setTableId(Long tableId) {
/* 68 */ this.tableId = tableId; this.tableId = tableId;
/* */ } }
/* */
/* */
/* */ public Long getTableId() { public Long getTableId() {
/* 73 */ return this.tableId; return this.tableId;
/* */ } }
/* */
/* */ public void setColumnId(Long columnId) { public void setColumnId(Long columnId) {
/* 77 */ this.columnId = columnId; this.columnId = columnId;
/* */ } }
/* */
/* */
/* */ public Long getColumnId() { public Long getColumnId() {
/* 82 */ return this.columnId; return this.columnId;
/* */ } }
/* */
/* */ public void setColumnname(String columnname) { public void setColumnname(String columnname) {
/* 86 */ this.columnname = columnname; this.columnname = columnname;
/* */ } }
/* */
/* */
/* */ public String getColumnname() { public String getColumnname() {
/* 91 */ return this.columnname; return this.columnname;
/* */ } }
/* */
/* */ public void setShowname(String showname) { public void setShowname(String showname) {
/* 95 */ this.showname = showname; this.showname = showname;
/* */ } }
/* */
/* */
/* */ public String getShowname() { public String getShowname() {
/* 100 */ return this.showname; return this.showname;
/* */ } }
/* */
/* */ public void setWidth(Long width) { public void setWidth(Long width) {
/* 104 */ this.width = width; this.width = width;
/* */ } }
/* */
/* */
/* */ public Long getWidth() { public Long getWidth() {
/* 109 */ return this.width; return this.width;
/* */ } }
/* */
/* */ public void setOrderInt(Long orderInt) { public void setOrderInt(Long orderInt) {
/* 113 */ this.orderInt = orderInt; this.orderInt = orderInt;
/* */ } }
/* */
/* */
/* */ public Long getOrderInt() { public Long getOrderInt() {
/* 118 */ return this.orderInt; return this.orderInt;
/* */ } }
/* */
/* */ public void setArchiveTypeId(Long archiveTypeId) { public void setArchiveTypeId(Long archiveTypeId) {
/* 122 */ this.archiveTypeId = archiveTypeId; this.archiveTypeId = archiveTypeId;
/* */ } }
/* */
/* */
/* */ public Long getArchiveTypeId() { public Long getArchiveTypeId() {
/* 127 */ return this.archiveTypeId; return this.archiveTypeId;
/* */ } }
/* */
/* */ public void setBy1(String by1) { public void setBy1(String by1) {
/* 131 */ this.by1 = by1; this.by1 = by1;
/* */ } }
/* */
/* */
/* */ public String getBy1() { public String getBy1() {
/* 136 */ return this.by1; return this.by1;
/* */ } }
/* */
/* */ public void setBy2(String by2) { public void setBy2(String by2) {
/* 140 */ this.by2 = by2; this.by2 = by2;
/* */ } }
/* */
/* */
/* */ public String getBy2() { public String getBy2() {
/* 145 */ return this.by2; return this.by2;
/* */ } }
/* */
/* */
/* */ public String toString() { public String toString() {
/* 150 */ return (new ToStringBuilder(this, ToStringStyle.MULTI_LINE_STYLE)) return (new ToStringBuilder(this, ToStringStyle.MULTI_LINE_STYLE))
/* 151 */ .append("id", getId()) .append("id", getId())
/* 152 */ .append("tableId", getTableId()) .append("tableId", getTableId())
/* 153 */ .append("columnId", getColumnId()) .append("columnId", getColumnId())
/* 154 */ .append("columnname", getColumnname()) .append("columnname", getColumnname())
/* 155 */ .append("showname", getShowname()) .append("showname", getShowname())
/* 156 */ .append("width", getWidth()) .append("width", getWidth())
/* 157 */ .append("orderInt", getOrderInt()) .append("orderInt", getOrderInt())
/* 158 */ .append("archiveTypeId", getArchiveTypeId()) .append("archiveTypeId", getArchiveTypeId())
/* 159 */ .append("by1", getBy1()) .append("by1", getBy1())
/* 160 */ .append("by2", getBy2()) .append("by2", getBy2())
/* 161 */ .toString(); .toString();
/* */ } }
/* */ } }
/* Location: C:\Users\Administrator\Desktop\extracted.zip!\extracted\BOOT-INF\classes\com\archive\project\dasz\gridcolumns\domain\TXtpzGridColumns.class /* Location: C:\Users\Administrator\Desktop\extracted.zip!\extracted\BOOT-INF\classes\com\archive\project\dasz\gridcolumns\domain\TXtpzGridColumns.class

@ -1,182 +1,182 @@
/* */ package com.archive.project.dasz.gridcolumns.service.impl package 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;
/* */ import com.archive.project.dasz.gridcolumns.domain.TXtpzGridColumns; import com.archive.project.dasz.gridcolumns.domain.TXtpzGridColumns;
/* */ import com.archive.project.dasz.gridcolumns.mapper.TXtpzGridColumnsMapper; import com.archive.project.dasz.gridcolumns.mapper.TXtpzGridColumnsMapper;
/* */ import com.archive.project.dasz.gridcolumns.service.ITXtpzGridColumnsService; import com.archive.project.dasz.gridcolumns.service.ITXtpzGridColumnsService;
/* */ import com.archive.project.dasz.physicaltablecolumn.domain.PhysicalTableColumn; import com.archive.project.dasz.physicaltablecolumn.domain.PhysicalTableColumn;
/* */ import com.archive.project.dasz.physicaltablecolumn.mapper.PhysicalTableColumnMapper; import com.archive.project.dasz.physicaltablecolumn.mapper.PhysicalTableColumnMapper;
/* */ import java.util.ArrayList; import java.util.ArrayList;
/* */ import java.util.List; import java.util.List;
/* */ import org.springframework.beans.factory.annotation.Autowired; import org.springframework.beans.factory.annotation.Autowired;
/* */ import org.springframework.stereotype.Service; import org.springframework.stereotype.Service;
/* */
/* */
/* */
/* */
/* */
/* */
/* */
/* */
/* */
/* */
/* */
/* */
/* */
/* */
/* */
/* */
/* */
/* */
/* */
/* */ @Service @Service
/* */ public class TXtpzGridColumnsServiceImpl public class TXtpzGridColumnsServiceImpl
/* */ implements ITXtpzGridColumnsService implements ITXtpzGridColumnsService
/* */ { {
/* */ @Autowired @Autowired
/* */ private TXtpzGridColumnsMapper tXtpzGridColumnsMapper; private TXtpzGridColumnsMapper tXtpzGridColumnsMapper;
/* */ @Autowired @Autowired
/* */ private PhysicalTableColumnMapper physicalTableColumnMapper; private PhysicalTableColumnMapper physicalTableColumnMapper;
/* */ @Autowired @Autowired
/* */ private ArchiveConfig archiveConfig; private ArchiveConfig archiveConfig;
/* */
/* */ public TXtpzGridColumns selectTXtpzGridColumnsById(Long id) { public TXtpzGridColumns selectTXtpzGridColumnsById(Long id) {
/* 45 */ return this.tXtpzGridColumnsMapper.selectTXtpzGridColumnsById(id); return this.tXtpzGridColumnsMapper.selectTXtpzGridColumnsById(id);
/* */ } }
/* */
/* */
/* */
/* */
/* */
/* */
/* */
/* */
/* */
/* */ public List<TXtpzGridColumns> selectTXtpzGridColumnsList(TXtpzGridColumns tXtpzGridColumns) { public List<TXtpzGridColumns> selectTXtpzGridColumnsList(TXtpzGridColumns tXtpzGridColumns) {
/* 57 */ List<TXtpzGridColumns> list = null; List<TXtpzGridColumns> list = null;
/* 58 */ list = this.tXtpzGridColumnsMapper.selectTXtpzGridColumnsList(tXtpzGridColumns); list = this.tXtpzGridColumnsMapper.selectTXtpzGridColumnsList(tXtpzGridColumns);
/* */
/* */
/* 61 */ PhysicalTableColumn physicalTableColumn = new PhysicalTableColumn(); PhysicalTableColumn physicalTableColumn = new PhysicalTableColumn();
/* 62 */ physicalTableColumn.setTableId(tXtpzGridColumns.getTableId()); physicalTableColumn.setTableId(tXtpzGridColumns.getTableId());
/* 63 */ physicalTableColumn.setLbx(Long.valueOf(1L)); physicalTableColumn.setLbx(Long.valueOf(1L));
/* 64 */ List<PhysicalTableColumn> columnsList = new ArrayList<>(); List<PhysicalTableColumn> columnsList = new ArrayList<>();
/* 65 */ if ("mysql".equals(this.archiveConfig.getDatabaseType())) { if ("mysql".equals(this.archiveConfig.getDatabaseType())) {
/* 66 */ columnsList = this.physicalTableColumnMapper.selectPhysicalTableColumnListMysql(physicalTableColumn); columnsList = this.physicalTableColumnMapper.selectPhysicalTableColumnListMysql(physicalTableColumn);
/* */ } }
/* 68 */ else if ("sqlite".equals(this.archiveConfig.getDatabaseType())) { else if ("sqlite".equals(this.archiveConfig.getDatabaseType())) {
/* 69 */ columnsList = this.physicalTableColumnMapper.selectPhysicalTableColumnListSqlLite(physicalTableColumn); columnsList = this.physicalTableColumnMapper.selectPhysicalTableColumnListSqlLite(physicalTableColumn);
/* */ } }
/* */
/* 72 */ if (columnsList != null && columnsList.size() > 0) { if (columnsList != null && columnsList.size() > 0) {
/* */ int i; int i;
/* 74 */ for (i = 0; i < columnsList.size(); i++) { for (i = 0; i < columnsList.size(); i++) {
/* 75 */ PhysicalTableColumn physicalTableColumn1 = columnsList.get(i); PhysicalTableColumn physicalTableColumn1 = columnsList.get(i);
/* 76 */ boolean isExit = false; boolean isExit = false;
/* 77 */ for (int j = 0; j < list.size(); j++) { for (int j = 0; j < list.size(); j++) {
/* 78 */ if (physicalTableColumn1.getColumnCode().equals(((TXtpzGridColumns)list.get(j)).getColumnname())) { if (physicalTableColumn1.getColumnCode().equals(((TXtpzGridColumns)list.get(j)).getColumnname())) {
/* 79 */ isExit = true; isExit = true;
/* */
/* */ break; break;
/* */ } }
/* */ } }
/* 84 */ if (!isExit) { if (!isExit) {
/* 85 */ int OrderInt = list.size() + i; int OrderInt = list.size() + i;
/* 86 */ TXtpzGridColumns tXtpzGridColumns1 = new TXtpzGridColumns(); TXtpzGridColumns tXtpzGridColumns1 = new TXtpzGridColumns();
/* 87 */ tXtpzGridColumns1.setTableId(tXtpzGridColumns.getTableId()); tXtpzGridColumns1.setTableId(tXtpzGridColumns.getTableId());
/* 88 */ tXtpzGridColumns1.setColumnId(physicalTableColumn1.getId()); tXtpzGridColumns1.setColumnId(physicalTableColumn1.getId());
/* 89 */ tXtpzGridColumns1.setColumnname(physicalTableColumn1.getColumnCode()); tXtpzGridColumns1.setColumnname(physicalTableColumn1.getColumnCode());
/* 90 */ tXtpzGridColumns1.setShowname(physicalTableColumn1.getColumnName()); tXtpzGridColumns1.setShowname(physicalTableColumn1.getColumnName());
/* 91 */ tXtpzGridColumns1.setOrderInt(Long.valueOf(OrderInt)); tXtpzGridColumns1.setOrderInt(Long.valueOf(OrderInt));
/* 92 */ tXtpzGridColumns1.setBy1(physicalTableColumn1.getColumnCodetype()); tXtpzGridColumns1.setBy1(physicalTableColumn1.getColumnCodetype());
/* 93 */ insertTXtpzGridColumns(tXtpzGridColumns1); insertTXtpzGridColumns(tXtpzGridColumns1);
/* */ } }
/* */ } }
/* */
/* 97 */ for (i = 0; i < list.size(); i++) { for (i = 0; i < list.size(); i++) {
/* 98 */ TXtpzGridColumns tXtpzGridColumns1 = list.get(i); TXtpzGridColumns tXtpzGridColumns1 = list.get(i);
/* 99 */ boolean isExit = false; boolean isExit = false;
/* 100 */ for (int j = 0; j < columnsList.size(); j++) { for (int j = 0; j < columnsList.size(); j++) {
/* 101 */ if (tXtpzGridColumns1.getColumnId().equals(((PhysicalTableColumn)columnsList.get(j)).getId())) { if (tXtpzGridColumns1.getColumnId().equals(((PhysicalTableColumn)columnsList.get(j)).getId())) {
/* 102 */ isExit = true; isExit = true;
/* */ break; break;
/* */ } }
/* */ } }
/* 106 */ if (!isExit) if (!isExit)
/* */ { {
/* 108 */ deleteTXtpzGridColumnsById(tXtpzGridColumns1.getId()); deleteTXtpzGridColumnsById(tXtpzGridColumns1.getId());
/* */ } }
/* */ } }
/* */ } }
/* */
/* 113 */ list = this.tXtpzGridColumnsMapper.selectTXtpzGridColumnsList(tXtpzGridColumns); list = this.tXtpzGridColumnsMapper.selectTXtpzGridColumnsList(tXtpzGridColumns);
/* 114 */ lambda(list); lambda(list);
/* 115 */ return list; return list;
/* */ } }
/* */
/* */
/* */
/* */
/* */
/* */
/* */ public void lambda(List<TXtpzGridColumns> list) { public void lambda(List<TXtpzGridColumns> list) {
/* 124 */ list.sort((o1, o2) -> Integer.parseInt(String.valueOf(o1.getOrderInt())) - Integer.parseInt(String.valueOf(o2.getOrderInt()))); list.sort((o1, o2) -> Integer.parseInt(String.valueOf(o1.getOrderInt())) - Integer.parseInt(String.valueOf(o2.getOrderInt())));
/* */ } }
/* */
/* */
/* */
/* */
/* */
/* */
/* */
/* */
/* */
/* */
/* */
/* */
/* */ public int insertTXtpzGridColumns(TXtpzGridColumns tXtpzGridColumns) { public int insertTXtpzGridColumns(TXtpzGridColumns tXtpzGridColumns) {
/* 139 */ return this.tXtpzGridColumnsMapper.insertTXtpzGridColumns(tXtpzGridColumns); return this.tXtpzGridColumnsMapper.insertTXtpzGridColumns(tXtpzGridColumns);
/* */ } }
/* */
/* */
/* */
/* */
/* */
/* */
/* */
/* */
/* */
/* */ public int updateTXtpzGridColumns(TXtpzGridColumns tXtpzGridColumns) { public int updateTXtpzGridColumns(TXtpzGridColumns tXtpzGridColumns) {
/* 151 */ return this.tXtpzGridColumnsMapper.updateTXtpzGridColumns(tXtpzGridColumns); return this.tXtpzGridColumnsMapper.updateTXtpzGridColumns(tXtpzGridColumns);
/* */ } }
/* */
/* */
/* */
/* */
/* */
/* */
/* */
/* */
/* */
/* */ public int deleteTXtpzGridColumnsByIds(String ids) { public int deleteTXtpzGridColumnsByIds(String ids) {
/* 163 */ return this.tXtpzGridColumnsMapper.deleteTXtpzGridColumnsByIds(Convert.toStrArray(ids)); return this.tXtpzGridColumnsMapper.deleteTXtpzGridColumnsByIds(Convert.toStrArray(ids));
/* */ } }
/* */
/* */
/* */
/* */
/* */
/* */
/* */
/* */
/* */
/* */ public int deleteTXtpzGridColumnsById(Long id) { public int deleteTXtpzGridColumnsById(Long id) {
/* 175 */ return this.tXtpzGridColumnsMapper.deleteTXtpzGridColumnsById(id); return this.tXtpzGridColumnsMapper.deleteTXtpzGridColumnsById(id);
/* */ } }
/* */ } }
/* Location: C:\Users\Administrator\Desktop\extracted.zip!\extracted\BOOT-INF\classes\com\archive\project\dasz\gridcolumns\service\impl\TXtpzGridColumnsServiceImpl.class /* Location: C:\Users\Administrator\Desktop\extracted.zip!\extracted\BOOT-INF\classes\com\archive\project\dasz\gridcolumns\service\impl\TXtpzGridColumnsServiceImpl.class

@ -1,131 +1,131 @@
/* */ package com.archive.project.dasz.qzgl.controller package com.archive.project.dasz.qzgl.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;
/* */ import com.archive.framework.aspectj.lang.enums.BusinessType; import com.archive.framework.aspectj.lang.enums.BusinessType;
/* */ 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;
/* */ import com.archive.framework.web.page.TableDataInfo; import com.archive.framework.web.page.TableDataInfo;
/* */ import com.archive.project.dasz.qzgl.domain.TPsFondsCode; import com.archive.project.dasz.qzgl.domain.TPsFondsCode;
/* */ import com.archive.project.dasz.qzgl.service.ITPsFondsCodeService; import com.archive.project.dasz.qzgl.service.ITPsFondsCodeService;
/* */ import java.util.List; import java.util.List;
/* */ import org.apache.shiro.authz.annotation.RequiresPermissions; import org.apache.shiro.authz.annotation.RequiresPermissions;
/* */ import org.springframework.beans.factory.annotation.Autowired; import org.springframework.beans.factory.annotation.Autowired;
/* */ import org.springframework.stereotype.Controller; import org.springframework.stereotype.Controller;
/* */ import org.springframework.ui.ModelMap; import org.springframework.ui.ModelMap;
/* */ import org.springframework.web.bind.annotation.GetMapping; import org.springframework.web.bind.annotation.GetMapping;
/* */ import org.springframework.web.bind.annotation.PathVariable; import org.springframework.web.bind.annotation.PathVariable;
/* */ import org.springframework.web.bind.annotation.PostMapping; import org.springframework.web.bind.annotation.PostMapping;
/* */ import org.springframework.web.bind.annotation.RequestMapping; import org.springframework.web.bind.annotation.RequestMapping;
/* */ import org.springframework.web.bind.annotation.ResponseBody; import org.springframework.web.bind.annotation.ResponseBody;
/* */
/* */
/* */
/* */
/* */
/* */
/* */ @Controller @Controller
/* */ @RequestMapping({"/dasz/qzgl"}) @RequestMapping({"/dasz/qzgl"})
/* */ public class TPsFondsCodeController public class TPsFondsCodeController
/* */ extends BaseController extends BaseController
/* */ { {
/* 32 */ private String prefix = "dasz/qzgl"; private String prefix = "dasz/qzgl";
/* */
/* */ @Autowired @Autowired
/* */ private ITPsFondsCodeService tPsFondsCodeService; private ITPsFondsCodeService tPsFondsCodeService;
/* */
/* */
/* */ @RequiresPermissions({"dasz:qzgl:view"}) @RequiresPermissions({"dasz:qzgl:view"})
/* */ @GetMapping @GetMapping
/* */ public String qzgl() { public String qzgl() {
/* 41 */ return this.prefix + "/qzgl"; return this.prefix + "/qzgl";
/* */ } }
/* */
/* */
/* */
/* */
/* */
/* */ @RequiresPermissions({"dasz:qzgl:list"}) @RequiresPermissions({"dasz:qzgl:list"})
/* */ @PostMapping({"/list"}) @PostMapping({"/list"})
/* */ @ResponseBody @ResponseBody
/* */ public TableDataInfo list(TPsFondsCode tPsFondsCode) { public TableDataInfo list(TPsFondsCode tPsFondsCode) {
/* 52 */ startPage(); startPage();
/* 53 */ List<TPsFondsCode> list = this.tPsFondsCodeService.selectTPsFondsCodeList(tPsFondsCode); List<TPsFondsCode> list = this.tPsFondsCodeService.selectTPsFondsCodeList(tPsFondsCode);
/* 54 */ return getDataTable(list); return getDataTable(list);
/* */ } }
/* */
/* */
/* */
/* */
/* */
/* */ @RequiresPermissions({"dasz:qzgl:export"}) @RequiresPermissions({"dasz:qzgl:export"})
/* */ @Log(title = "全宗管理", businessType = BusinessType.EXPORT) @Log(title = "全宗管理", businessType = BusinessType.EXPORT)
/* */ @PostMapping({"/export"}) @PostMapping({"/export"})
/* */ @ResponseBody @ResponseBody
/* */ public AjaxResult export(TPsFondsCode tPsFondsCode) { public AjaxResult export(TPsFondsCode tPsFondsCode) {
/* 66 */ List<TPsFondsCode> list = this.tPsFondsCodeService.selectTPsFondsCodeList(tPsFondsCode); List<TPsFondsCode> list = this.tPsFondsCodeService.selectTPsFondsCodeList(tPsFondsCode);
/* 67 */ ExcelUtil<TPsFondsCode> util = new ExcelUtil(TPsFondsCode.class); ExcelUtil<TPsFondsCode> util = new ExcelUtil(TPsFondsCode.class);
/* 68 */ return util.exportExcel(list, "qzgl"); return util.exportExcel(list, "qzgl");
/* */ } }
/* */
/* */
/* */
/* */
/* */
/* */ @GetMapping({"/add"}) @GetMapping({"/add"})
/* */ public String add() { public String add() {
/* 77 */ return this.prefix + "/add"; return this.prefix + "/add";
/* */ } }
/* */
/* */
/* */
/* */
/* */
/* */ @RequiresPermissions({"dasz:qzgl:add"}) @RequiresPermissions({"dasz:qzgl:add"})
/* */ @Log(title = "全宗管理", businessType = BusinessType.INSERT) @Log(title = "全宗管理", businessType = BusinessType.INSERT)
/* */ @PostMapping({"/add"}) @PostMapping({"/add"})
/* */ @ResponseBody @ResponseBody
/* */ public AjaxResult addSave(TPsFondsCode tPsFondsCode) { public AjaxResult addSave(TPsFondsCode tPsFondsCode) {
/* 89 */ return toAjax(this.tPsFondsCodeService.insertTPsFondsCode(tPsFondsCode)); return toAjax(this.tPsFondsCodeService.insertTPsFondsCode(tPsFondsCode));
/* */ } }
/* */
/* */
/* */
/* */
/* */
/* */ @GetMapping({"/edit/{id}"}) @GetMapping({"/edit/{id}"})
/* */ public String edit(@PathVariable("id") Long id, ModelMap mmap) { public String edit(@PathVariable("id") Long id, ModelMap mmap) {
/* 98 */ TPsFondsCode tPsFondsCode = this.tPsFondsCodeService.selectTPsFondsCodeById(id); TPsFondsCode tPsFondsCode = this.tPsFondsCodeService.selectTPsFondsCodeById(id);
/* 99 */ mmap.put("tPsFondsCode", tPsFondsCode); mmap.put("tPsFondsCode", tPsFondsCode);
/* 100 */ return this.prefix + "/edit"; return this.prefix + "/edit";
/* */ } }
/* */
/* */
/* */
/* */
/* */
/* */ @RequiresPermissions({"dasz:qzgl:edit"}) @RequiresPermissions({"dasz:qzgl:edit"})
/* */ @Log(title = "全宗管理", businessType = BusinessType.UPDATE) @Log(title = "全宗管理", businessType = BusinessType.UPDATE)
/* */ @PostMapping({"/edit"}) @PostMapping({"/edit"})
/* */ @ResponseBody @ResponseBody
/* */ public AjaxResult editSave(TPsFondsCode tPsFondsCode) { public AjaxResult editSave(TPsFondsCode tPsFondsCode) {
/* 112 */ return toAjax(this.tPsFondsCodeService.updateTPsFondsCode(tPsFondsCode)); return toAjax(this.tPsFondsCodeService.updateTPsFondsCode(tPsFondsCode));
/* */ } }
/* */
/* */
/* */
/* */
/* */
/* */ @RequiresPermissions({"dasz:qzgl:remove"}) @RequiresPermissions({"dasz:qzgl:remove"})
/* */ @Log(title = "全宗管理", businessType = BusinessType.DELETE) @Log(title = "全宗管理", businessType = BusinessType.DELETE)
/* */ @PostMapping({"/remove"}) @PostMapping({"/remove"})
/* */ @ResponseBody @ResponseBody
/* */ public AjaxResult remove(String ids) { public AjaxResult remove(String ids) {
/* 124 */ return toAjax(this.tPsFondsCodeService.deleteTPsFondsCodeByIds(ids)); return toAjax(this.tPsFondsCodeService.deleteTPsFondsCodeByIds(ids));
/* */ } }
/* */ } }
/* Location: C:\Users\Administrator\Desktop\extracted.zip!\extracted\BOOT-INF\classes\com\archive\project\dasz\qzgl\controller\TPsFondsCodeController.class /* Location: C:\Users\Administrator\Desktop\extracted.zip!\extracted\BOOT-INF\classes\com\archive\project\dasz\qzgl\controller\TPsFondsCodeController.class

@ -1,126 +1,126 @@
/* */ package com.archive.project.dasz.qzgl.domain package 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;
/* */ import org.apache.commons.lang3.builder.ToStringBuilder; import org.apache.commons.lang3.builder.ToStringBuilder;
/* */ import org.apache.commons.lang3.builder.ToStringStyle; import org.apache.commons.lang3.builder.ToStringStyle;
/* */
/* */
/* */
/* */
/* */
/* */
/* */
/* */
/* */
/* */
/* */
/* */
/* */
/* */
/* */
/* */
/* */
/* */
/* */
/* */
/* */
/* */ public class TPsFondsCode public class TPsFondsCode
/* */ extends BaseEntity extends BaseEntity
/* */ { {
/* */ private static final long serialVersionUID = 1L; private static final long serialVersionUID = 1L;
/* */ private Long id; private Long id;
/* */ @Excel(name = "全宗号") @Excel(name = "全宗号")
/* */ private String fondscode; private String fondscode;
/* */ @Excel(name = "全宗名称") @Excel(name = "全宗名称")
/* */ private String fondsname; private String fondsname;
/* */ @Excel(name = "关联组织") @Excel(name = "关联组织")
/* */ private String glzz; private String glzz;
/* */ @Excel(name = "备注") @Excel(name = "备注")
/* */ private String bz; private String bz;
/* */ @Excel(name = "关联档案") @Excel(name = "关联档案")
/* */ private String glda; private String glda;
/* */ @Excel(name = "备用字段") @Excel(name = "备用字段")
/* */ private String by1; private String by1;
/* */
/* */ public void setId(Long id) { public void setId(Long id) {
/* 47 */ this.id = id; this.id = id;
/* */ } }
/* */
/* */
/* */ public Long getId() { public Long getId() {
/* 52 */ return this.id; return this.id;
/* */ } }
/* */
/* */ public void setFondscode(String fondscode) { public void setFondscode(String fondscode) {
/* 56 */ this.fondscode = fondscode; this.fondscode = fondscode;
/* */ } }
/* */
/* */
/* */ public String getFondscode() { public String getFondscode() {
/* 61 */ return this.fondscode; return this.fondscode;
/* */ } }
/* */
/* */ public void setFondsname(String fondsname) { public void setFondsname(String fondsname) {
/* 65 */ this.fondsname = fondsname; this.fondsname = fondsname;
/* */ } }
/* */
/* */
/* */ public String getFondsname() { public String getFondsname() {
/* 70 */ return this.fondsname; return this.fondsname;
/* */ } }
/* */
/* */ public void setGlzz(String glzz) { public void setGlzz(String glzz) {
/* 74 */ this.glzz = glzz; this.glzz = glzz;
/* */ } }
/* */
/* */
/* */ public String getGlzz() { public String getGlzz() {
/* 79 */ return this.glzz; return this.glzz;
/* */ } }
/* */
/* */ public void setBz(String bz) { public void setBz(String bz) {
/* 83 */ this.bz = bz; this.bz = bz;
/* */ } }
/* */
/* */
/* */ public String getBz() { public String getBz() {
/* 88 */ return this.bz; return this.bz;
/* */ } }
/* */
/* */ public void setGlda(String glda) { public void setGlda(String glda) {
/* 92 */ this.glda = glda; this.glda = glda;
/* */ } }
/* */
/* */
/* */ public String getGlda() { public String getGlda() {
/* 97 */ return this.glda; return this.glda;
/* */ } }
/* */
/* */ public void setBy(String by1) { public void setBy(String by1) {
/* 101 */ this.by1 = by1; this.by1 = by1;
/* */ } }
/* */
/* */
/* */ public String getBy1() { public String getBy1() {
/* 106 */ return this.by1; return this.by1;
/* */ } }
/* */
/* */
/* */ public String toString() { public String toString() {
/* 111 */ return (new ToStringBuilder(this, ToStringStyle.MULTI_LINE_STYLE)) return (new ToStringBuilder(this, ToStringStyle.MULTI_LINE_STYLE))
/* 112 */ .append("id", getId()) .append("id", getId())
/* 113 */ .append("fondscode", getFondscode()) .append("fondscode", getFondscode())
/* 114 */ .append("fondsname", getFondsname()) .append("fondsname", getFondsname())
/* 115 */ .append("glzz", getGlzz()) .append("glzz", getGlzz())
/* 116 */ .append("bz", getBz()) .append("bz", getBz())
/* 117 */ .append("glda", getGlda()) .append("glda", getGlda())
/* 118 */ .append("by1", getBy1()) .append("by1", getBy1())
/* 119 */ .toString(); .toString();
/* */ } }
/* */ } }
/* Location: C:\Users\Administrator\Desktop\extracted.zip!\extracted\BOOT-INF\classes\com\archive\project\dasz\qzgl\domain\TPsFondsCode.class /* Location: C:\Users\Administrator\Desktop\extracted.zip!\extracted\BOOT-INF\classes\com\archive\project\dasz\qzgl\domain\TPsFondsCode.class

@ -1,113 +1,113 @@
/* */ package com.archive.project.dasz.qzgl.service.impl package com.archive.project.dasz.qzgl.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;
/* */ import com.archive.project.dasz.qzgl.domain.TPsFondsCode; import com.archive.project.dasz.qzgl.domain.TPsFondsCode;
/* */ import com.archive.project.dasz.qzgl.mapper.TPsFondsCodeMapper; import com.archive.project.dasz.qzgl.mapper.TPsFondsCodeMapper;
/* */ import com.archive.project.dasz.qzgl.service.ITPsFondsCodeService; import com.archive.project.dasz.qzgl.service.ITPsFondsCodeService;
/* */ import java.util.List; import java.util.List;
/* */ import org.springframework.beans.factory.annotation.Autowired; import org.springframework.beans.factory.annotation.Autowired;
/* */ import org.springframework.stereotype.Service; import org.springframework.stereotype.Service;
/* */
/* */
/* */
/* */
/* */
/* */
/* */
/* */
/* */
/* */
/* */
/* */
/* */
/* */
/* */
/* */
/* */ @Service @Service
/* */ public class TPsFondsCodeServiceImpl public class TPsFondsCodeServiceImpl
/* */ implements ITPsFondsCodeService implements ITPsFondsCodeService
/* */ { {
/* */ @Autowired @Autowired
/* */ private TPsFondsCodeMapper tPsFondsCodeMapper; private TPsFondsCodeMapper tPsFondsCodeMapper;
/* */ @Autowired @Autowired
/* */ private ArchiveConfig archiveConfig; private ArchiveConfig archiveConfig;
/* */
/* */ public TPsFondsCode selectTPsFondsCodeById(Long id) { public TPsFondsCode selectTPsFondsCodeById(Long id) {
/* 37 */ return this.tPsFondsCodeMapper.selectTPsFondsCodeById(id); return this.tPsFondsCodeMapper.selectTPsFondsCodeById(id);
/* */ } }
/* */
/* */
/* */
/* */
/* */
/* */
/* */
/* */
/* */
/* */
/* */ public List<TPsFondsCode> selectTPsFondsCodeList(TPsFondsCode tPsFondsCode) { public List<TPsFondsCode> selectTPsFondsCodeList(TPsFondsCode tPsFondsCode) {
/* 50 */ if ("mysql".equals(this.archiveConfig.getDatabaseType())) { if ("mysql".equals(this.archiveConfig.getDatabaseType())) {
/* 51 */ return this.tPsFondsCodeMapper.selectTPsFondsCodeList(tPsFondsCode); return this.tPsFondsCodeMapper.selectTPsFondsCodeList(tPsFondsCode);
/* */ } }
/* 53 */ if ("sqlite".equals(this.archiveConfig.getDatabaseType())) { if ("sqlite".equals(this.archiveConfig.getDatabaseType())) {
/* 54 */ return this.tPsFondsCodeMapper.selectTPsFondsCodeListSqlite(tPsFondsCode); return this.tPsFondsCodeMapper.selectTPsFondsCodeListSqlite(tPsFondsCode);
/* */ } }
/* 56 */ return this.tPsFondsCodeMapper.selectTPsFondsCodeList(tPsFondsCode); return this.tPsFondsCodeMapper.selectTPsFondsCodeList(tPsFondsCode);
/* */ } }
/* */
/* */
/* */
/* */
/* */
/* */
/* */
/* */
/* */
/* */
/* */
/* */ public int insertTPsFondsCode(TPsFondsCode tPsFondsCode) { public int insertTPsFondsCode(TPsFondsCode tPsFondsCode) {
/* 70 */ return this.tPsFondsCodeMapper.insertTPsFondsCode(tPsFondsCode); return this.tPsFondsCodeMapper.insertTPsFondsCode(tPsFondsCode);
/* */ } }
/* */
/* */
/* */
/* */
/* */
/* */
/* */
/* */
/* */
/* */ public int updateTPsFondsCode(TPsFondsCode tPsFondsCode) { public int updateTPsFondsCode(TPsFondsCode tPsFondsCode) {
/* 82 */ return this.tPsFondsCodeMapper.updateTPsFondsCode(tPsFondsCode); return this.tPsFondsCodeMapper.updateTPsFondsCode(tPsFondsCode);
/* */ } }
/* */
/* */
/* */
/* */
/* */
/* */
/* */
/* */
/* */
/* */ public int deleteTPsFondsCodeByIds(String ids) { public int deleteTPsFondsCodeByIds(String ids) {
/* 94 */ return this.tPsFondsCodeMapper.deleteTPsFondsCodeByIds(Convert.toStrArray(ids)); return this.tPsFondsCodeMapper.deleteTPsFondsCodeByIds(Convert.toStrArray(ids));
/* */ } }
/* */
/* */
/* */
/* */
/* */
/* */
/* */
/* */
/* */
/* */ public int deleteTPsFondsCodeById(Long id) { public int deleteTPsFondsCodeById(Long id) {
/* 106 */ return this.tPsFondsCodeMapper.deleteTPsFondsCodeById(id); return this.tPsFondsCodeMapper.deleteTPsFondsCodeById(id);
/* */ } }
/* */ } }
/* Location: C:\Users\Administrator\Desktop\extracted.zip!\extracted\BOOT-INF\classes\com\archive\project\dasz\qzgl\service\impl\TPsFondsCodeServiceImpl.class /* Location: C:\Users\Administrator\Desktop\extracted.zip!\extracted\BOOT-INF\classes\com\archive\project\dasz\qzgl\service\impl\TPsFondsCodeServiceImpl.class

@ -1,149 +1,149 @@
/* */ package com.archive.project.dazl.dajd.controller package 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;
/* */ 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;
/* */ 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;
/* */ import com.archive.framework.web.page.TableDataInfo; import com.archive.framework.web.page.TableDataInfo;
/* */ import com.archive.project.dasz.archivetype.domain.ArchiveType; import com.archive.project.dasz.archivetype.domain.ArchiveType;
/* */ import com.archive.project.dazl.dajd.domain.TJdTask; import com.archive.project.dazl.dajd.domain.TJdTask;
/* */ import com.archive.project.dazl.dajd.service.ITJdTaskService; import com.archive.project.dazl.dajd.service.ITJdTaskService;
/* */ import java.util.List; import java.util.List;
/* */ import org.apache.shiro.authz.annotation.RequiresPermissions; import org.apache.shiro.authz.annotation.RequiresPermissions;
/* */ import org.springframework.beans.factory.annotation.Autowired; import org.springframework.beans.factory.annotation.Autowired;
/* */ import org.springframework.stereotype.Controller; import org.springframework.stereotype.Controller;
/* */ import org.springframework.ui.ModelMap; import org.springframework.ui.ModelMap;
/* */ import org.springframework.validation.annotation.Validated; import org.springframework.validation.annotation.Validated;
/* */ import org.springframework.web.bind.annotation.GetMapping; import org.springframework.web.bind.annotation.GetMapping;
/* */ import org.springframework.web.bind.annotation.PathVariable; import org.springframework.web.bind.annotation.PathVariable;
/* */ import org.springframework.web.bind.annotation.PostMapping; import org.springframework.web.bind.annotation.PostMapping;
/* */ import org.springframework.web.bind.annotation.RequestMapping; import org.springframework.web.bind.annotation.RequestMapping;
/* */ import org.springframework.web.bind.annotation.ResponseBody; import org.springframework.web.bind.annotation.ResponseBody;
/* */
/* */
/* */
/* */
/* */
/* */
/* */
/* */ @Controller @Controller
/* */ @RequestMapping({"/dazl/dajd"}) @RequestMapping({"/dazl/dajd"})
/* */ public class TJdTaskController public class TJdTaskController
/* */ extends BaseController extends BaseController
/* */ { {
/* 36 */ private String prefix = "dazl/dajd"; private String prefix = "dazl/dajd";
/* */
/* */ @Autowired @Autowired
/* */ private ITJdTaskService tJdTaskService; private ITJdTaskService tJdTaskService;
/* */
/* */
/* */ @RequiresPermissions({"dazl:dajd:view"}) @RequiresPermissions({"dazl:dajd:view"})
/* */ @GetMapping @GetMapping
/* */ public String dajd() { public String dajd() {
/* 45 */ return this.prefix + "/dajd"; return this.prefix + "/dajd";
/* */ } }
/* */
/* */
/* */
/* */
/* */
/* */ @RequiresPermissions({"dazl:dajd:list"}) @RequiresPermissions({"dazl:dajd:list"})
/* */ @PostMapping({"/list"}) @PostMapping({"/list"})
/* */ @ResponseBody @ResponseBody
/* */ public TableDataInfo list(TJdTask tJdTask) { public TableDataInfo list(TJdTask tJdTask) {
/* 56 */ startPage(); startPage();
/* 57 */ List<TJdTask> list = this.tJdTaskService.selectTJdTaskList(tJdTask); List<TJdTask> list = this.tJdTaskService.selectTJdTaskList(tJdTask);
/* 58 */ return getDataTable(list); return getDataTable(list);
/* */ } }
/* */
/* */
/* */
/* */
/* */
/* */ @RequiresPermissions({"dazl:dajd:export"}) @RequiresPermissions({"dazl:dajd:export"})
/* */ @Log(title = "档案鉴定", businessType = BusinessType.EXPORT) @Log(title = "档案鉴定", businessType = BusinessType.EXPORT)
/* */ @PostMapping({"/export"}) @PostMapping({"/export"})
/* */ @ResponseBody @ResponseBody
/* */ public AjaxResult export(TJdTask tJdTask) { public AjaxResult export(TJdTask tJdTask) {
/* 70 */ List<TJdTask> list = this.tJdTaskService.selectTJdTaskList(tJdTask); List<TJdTask> list = this.tJdTaskService.selectTJdTaskList(tJdTask);
/* 71 */ ExcelUtil<TJdTask> util = new ExcelUtil(TJdTask.class); ExcelUtil<TJdTask> util = new ExcelUtil(TJdTask.class);
/* 72 */ return util.exportExcel(list, "dajd"); return util.exportExcel(list, "dajd");
/* */ } }
/* */
/* */
/* */
/* */
/* */
/* */
/* */ @GetMapping({"/add"}) @GetMapping({"/add"})
/* */ public String add(ModelMap mmap) { public String add(ModelMap mmap) {
/* 82 */ List<ArchiveType> archiveTypeList = TableUtil.getAllArchiveType(); List<ArchiveType> archiveTypeList = TableUtil.getAllArchiveType();
/* 83 */ mmap.put("archiveTypeList", archiveTypeList); mmap.put("archiveTypeList", archiveTypeList);
/* 84 */ return this.prefix + "/add"; return this.prefix + "/add";
/* */ } }
/* */
/* */
/* */
/* */
/* */
/* */ @RequiresPermissions({"dazl:dajd:add"}) @RequiresPermissions({"dazl:dajd:add"})
/* */ @Log(title = "档案鉴定", businessType = BusinessType.INSERT) @Log(title = "档案鉴定", businessType = BusinessType.INSERT)
/* */ @PostMapping({"/add"}) @PostMapping({"/add"})
/* */ @ResponseBody @ResponseBody
/* */ public AjaxResult addSave(TJdTask tJdTask) { public AjaxResult addSave(TJdTask tJdTask) {
/* 96 */ return toAjax(this.tJdTaskService.insertTJdTask(tJdTask)); return toAjax(this.tJdTaskService.insertTJdTask(tJdTask));
/* */ } }
/* */
/* */
/* */
/* */
/* */
/* */ @GetMapping({"/edit/{id}"}) @GetMapping({"/edit/{id}"})
/* */ public String edit(@PathVariable("id") Long id, ModelMap mmap) { public String edit(@PathVariable("id") Long id, ModelMap mmap) {
/* 105 */ TJdTask tJdTask = this.tJdTaskService.selectTJdTaskById(id); TJdTask tJdTask = this.tJdTaskService.selectTJdTaskById(id);
/* 106 */ mmap.put("tJdTask", tJdTask); mmap.put("tJdTask", tJdTask);
/* */
/* 108 */ List<ArchiveType> archiveTypeList = TableUtil.getAllArchiveType(); List<ArchiveType> archiveTypeList = TableUtil.getAllArchiveType();
/* 109 */ mmap.put("archiveTypeList", archiveTypeList); mmap.put("archiveTypeList", archiveTypeList);
/* 110 */ return this.prefix + "/edit"; return this.prefix + "/edit";
/* */ } }
/* */
/* */
/* */
/* */
/* */
/* */ @RequiresPermissions({"dazl:dajd:edit"}) @RequiresPermissions({"dazl:dajd:edit"})
/* */ @Log(title = "档案鉴定", businessType = BusinessType.UPDATE) @Log(title = "档案鉴定", businessType = BusinessType.UPDATE)
/* */ @PostMapping({"/edit"}) @PostMapping({"/edit"})
/* */ @ResponseBody @ResponseBody
/* */ public AjaxResult editSave(TJdTask tJdTask) { public AjaxResult editSave(TJdTask tJdTask) {
/* 122 */ return toAjax(this.tJdTaskService.updateTJdTask(tJdTask)); return toAjax(this.tJdTaskService.updateTJdTask(tJdTask));
/* */ } }
/* */
/* */
/* */
/* */
/* */
/* */ @RequiresPermissions({"dazl:dajd:remove"}) @RequiresPermissions({"dazl:dajd:remove"})
/* */ @Log(title = "档案鉴定", businessType = BusinessType.DELETE) @Log(title = "档案鉴定", businessType = BusinessType.DELETE)
/* */ @PostMapping({"/remove"}) @PostMapping({"/remove"})
/* */ @ResponseBody @ResponseBody
/* */ public AjaxResult remove(String ids) { public AjaxResult remove(String ids) {
/* 134 */ return toAjax(this.tJdTaskService.deleteTJdTaskByIds(ids)); return toAjax(this.tJdTaskService.deleteTJdTaskByIds(ids));
/* */ } }
/* */
/* */ @Log(title = "档案鉴定-鉴定生效", businessType = BusinessType.INSERT) @Log(title = "档案鉴定-鉴定生效", businessType = BusinessType.INSERT)
/* */ @PostMapping({"/jdsx"}) @PostMapping({"/jdsx"})
/* */ @ResponseBody @ResponseBody
/* */ public AjaxResult jdsx(@Validated String ids) { public AjaxResult jdsx(@Validated String ids) {
/* 141 */ int a = this.tJdTaskService.jdsx(ids); int a = this.tJdTaskService.jdsx(ids);
/* 142 */ return success(String.valueOf(a)); return success(String.valueOf(a));
/* */ } }
/* */ } }
/* Location: C:\Users\Administrator\Desktop\extracted.zip!\extracted\BOOT-INF\classes\com\archive\project\dazl\dajd\controller\TJdTaskController.class /* Location: C:\Users\Administrator\Desktop\extracted.zip!\extracted\BOOT-INF\classes\com\archive\project\dazl\dajd\controller\TJdTaskController.class

@ -1,168 +1,168 @@
/* */ package com.archive.project.dazl.dajd.domain package 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;
/* */ import org.apache.commons.lang3.builder.ToStringBuilder; import org.apache.commons.lang3.builder.ToStringBuilder;
/* */ import org.apache.commons.lang3.builder.ToStringStyle; import org.apache.commons.lang3.builder.ToStringStyle;
/* */
/* */
/* */
/* */
/* */
/* */
/* */
/* */
/* */
/* */
/* */
/* */
/* */
/* */
/* */
/* */
/* */
/* */
/* */
/* */
/* */
/* */
/* */
/* */
/* */
/* */
/* */
/* */ public class TJdTask public class TJdTask
/* */ extends BaseEntity extends BaseEntity
/* */ { {
/* */ private static final long serialVersionUID = 1L; private static final long serialVersionUID = 1L;
/* */ private Long id; private Long id;
/* */ @Excel(name = "鉴定任务名称") @Excel(name = "鉴定任务名称")
/* */ private String taskName; private String taskName;
/* */ @Excel(name = "任务创建时间") @Excel(name = "任务创建时间")
/* */ private String taskSj; private String taskSj;
/* */ @Excel(name = "鉴定类型") @Excel(name = "鉴定类型")
/* */ private String taskType; private String taskType;
/* */ @Excel(name = "鉴定档案类型id") @Excel(name = "鉴定档案类型id")
/* */ private String taskArchiveTypeId; private String taskArchiveTypeId;
/* */ @Excel(name = "鉴定档案类型名称") @Excel(name = "鉴定档案类型名称")
/* */ private String taskArchiveTypeName; private String taskArchiveTypeName;
/* */ @Excel(name = "鉴定主表id") @Excel(name = "鉴定主表id")
/* */ private String taskTableId; private String taskTableId;
/* */ @Excel(name = "鉴定任务状态") @Excel(name = "鉴定任务状态")
/* */ private String taskStatus; private String taskStatus;
/* */ @Excel(name = "鉴定人员") @Excel(name = "鉴定人员")
/* */ private String taskRy; private String taskRy;
/* */ @Excel(name = "任务备注") @Excel(name = "任务备注")
/* */ private String taskBz; private String taskBz;
/* */
/* */ public void setId(Long id) { public void setId(Long id) {
/* 59 */ this.id = id; this.id = id;
/* */ } }
/* */
/* */
/* */ public Long getId() { public Long getId() {
/* 64 */ return this.id; return this.id;
/* */ } }
/* */
/* */ public void setTaskName(String taskName) { public void setTaskName(String taskName) {
/* 68 */ this.taskName = taskName; this.taskName = taskName;
/* */ } }
/* */
/* */
/* */ public String getTaskName() { public String getTaskName() {
/* 73 */ return this.taskName; return this.taskName;
/* */ } }
/* */
/* */ public void setTaskSj(String taskSj) { public void setTaskSj(String taskSj) {
/* 77 */ this.taskSj = taskSj; this.taskSj = taskSj;
/* */ } }
/* */
/* */
/* */ public String getTaskSj() { public String getTaskSj() {
/* 82 */ return this.taskSj; return this.taskSj;
/* */ } }
/* */
/* */ public void setTaskType(String taskType) { public void setTaskType(String taskType) {
/* 86 */ this.taskType = taskType; this.taskType = taskType;
/* */ } }
/* */
/* */
/* */ public String getTaskType() { public String getTaskType() {
/* 91 */ return this.taskType; return this.taskType;
/* */ } }
/* */
/* */ public void setTaskArchiveTypeId(String taskArchiveTypeId) { public void setTaskArchiveTypeId(String taskArchiveTypeId) {
/* 95 */ this.taskArchiveTypeId = taskArchiveTypeId; this.taskArchiveTypeId = taskArchiveTypeId;
/* */ } }
/* */
/* */
/* */ public String getTaskArchiveTypeId() { public String getTaskArchiveTypeId() {
/* 100 */ return this.taskArchiveTypeId; return this.taskArchiveTypeId;
/* */ } }
/* */
/* */ public void setTaskArchiveTypeName(String taskArchiveTypeName) { public void setTaskArchiveTypeName(String taskArchiveTypeName) {
/* 104 */ this.taskArchiveTypeName = taskArchiveTypeName; this.taskArchiveTypeName = taskArchiveTypeName;
/* */ } }
/* */
/* */
/* */ public String getTaskArchiveTypeName() { public String getTaskArchiveTypeName() {
/* 109 */ return this.taskArchiveTypeName; return this.taskArchiveTypeName;
/* */ } }
/* */
/* */ public void setTaskTableId(String taskTableId) { public void setTaskTableId(String taskTableId) {
/* 113 */ this.taskTableId = taskTableId; this.taskTableId = taskTableId;
/* */ } }
/* */
/* */
/* */ public String getTaskTableId() { public String getTaskTableId() {
/* 118 */ return this.taskTableId; return this.taskTableId;
/* */ } }
/* */
/* */ public void setTaskStatus(String taskStatus) { public void setTaskStatus(String taskStatus) {
/* 122 */ this.taskStatus = taskStatus; this.taskStatus = taskStatus;
/* */ } }
/* */
/* */
/* */ public String getTaskStatus() { public String getTaskStatus() {
/* 127 */ return this.taskStatus; return this.taskStatus;
/* */ } }
/* */
/* */ public void setTaskRy(String taskRy) { public void setTaskRy(String taskRy) {
/* 131 */ this.taskRy = taskRy; this.taskRy = taskRy;
/* */ } }
/* */
/* */
/* */ public String getTaskRy() { public String getTaskRy() {
/* 136 */ return this.taskRy; return this.taskRy;
/* */ } }
/* */
/* */ public void setTaskBz(String taskBz) { public void setTaskBz(String taskBz) {
/* 140 */ this.taskBz = taskBz; this.taskBz = taskBz;
/* */ } }
/* */
/* */
/* */ public String getTaskBz() { public String getTaskBz() {
/* 145 */ return this.taskBz; return this.taskBz;
/* */ } }
/* */
/* */
/* */ public String toString() { public String toString() {
/* 150 */ return (new ToStringBuilder(this, ToStringStyle.MULTI_LINE_STYLE)) return (new ToStringBuilder(this, ToStringStyle.MULTI_LINE_STYLE))
/* 151 */ .append("id", getId()) .append("id", getId())
/* 152 */ .append("taskName", getTaskName()) .append("taskName", getTaskName())
/* 153 */ .append("taskSj", getTaskSj()) .append("taskSj", getTaskSj())
/* 154 */ .append("taskType", getTaskType()) .append("taskType", getTaskType())
/* 155 */ .append("taskArchiveTypeId", getTaskArchiveTypeId()) .append("taskArchiveTypeId", getTaskArchiveTypeId())
/* 156 */ .append("taskArchiveTypeName", getTaskArchiveTypeName()) .append("taskArchiveTypeName", getTaskArchiveTypeName())
/* 157 */ .append("taskTableId", getTaskTableId()) .append("taskTableId", getTaskTableId())
/* 158 */ .append("taskStatus", getTaskStatus()) .append("taskStatus", getTaskStatus())
/* 159 */ .append("taskRy", getTaskRy()) .append("taskRy", getTaskRy())
/* 160 */ .append("taskBz", getTaskBz()) .append("taskBz", getTaskBz())
/* 161 */ .toString(); .toString();
/* */ } }
/* */ } }
/* Location: C:\Users\Administrator\Desktop\extracted.zip!\extracted\BOOT-INF\classes\com\archive\project\dazl\dajd\domain\TJdTask.class /* Location: C:\Users\Administrator\Desktop\extracted.zip!\extracted\BOOT-INF\classes\com\archive\project\dazl\dajd\domain\TJdTask.class

@ -1,182 +1,182 @@
/* */ package com.archive.project.dazl.dajd.service.impl package com.archive.project.dazl.dajd.service.impl
; ;
/* */
/* */ import com.archive.common.archiveUtil.TableUtil; import com.archive.common.archiveUtil.TableUtil;
/* */ import com.archive.common.utils.text.Convert; import com.archive.common.utils.text.Convert;
/* */ import com.archive.project.common.service.IExecuteSqlService; import com.archive.project.common.service.IExecuteSqlService;
/* */ import com.archive.project.dasz.archivetype.domain.ArchiveType; import com.archive.project.dasz.archivetype.domain.ArchiveType;
/* */ import com.archive.project.dasz.archivetype.service.IArchiveTypeService; import com.archive.project.dasz.archivetype.service.IArchiveTypeService;
/* */ import com.archive.project.dazl.dajd.domain.TJdTask; import com.archive.project.dazl.dajd.domain.TJdTask;
/* */ import com.archive.project.dazl.dajd.mapper.TJdTaskMapper; import com.archive.project.dazl.dajd.mapper.TJdTaskMapper;
/* */ import com.archive.project.dazl.dajd.service.ITJdTaskService; import com.archive.project.dazl.dajd.service.ITJdTaskService;
/* */ import com.archive.project.dazl.jdmx.domain.TJdTaskDetail; import com.archive.project.dazl.jdmx.domain.TJdTaskDetail;
/* */ import com.archive.project.dazl.jdmx.service.ITJdTaskDetailService; import com.archive.project.dazl.jdmx.service.ITJdTaskDetailService;
/* */ import java.util.List; import java.util.List;
/* */ import org.springframework.beans.factory.annotation.Autowired; import org.springframework.beans.factory.annotation.Autowired;
/* */ import org.springframework.stereotype.Service; import org.springframework.stereotype.Service;
/* */
/* */
/* */
/* */
/* */
/* */
/* */
/* */
/* */
/* */
/* */
/* */
/* */
/* */
/* */
/* */
/* */
/* */ @Service @Service
/* */ public class TJdTaskServiceImpl public class TJdTaskServiceImpl
/* */ implements ITJdTaskService implements ITJdTaskService
/* */ { {
/* */ @Autowired @Autowired
/* */ private TJdTaskMapper tJdTaskMapper; private TJdTaskMapper tJdTaskMapper;
/* */ @Autowired @Autowired
/* */ private IArchiveTypeService archiveTypeService; private IArchiveTypeService archiveTypeService;
/* */ @Autowired @Autowired
/* */ private ITJdTaskDetailService jdTaskDetailService; private ITJdTaskDetailService jdTaskDetailService;
/* */ @Autowired @Autowired
/* */ private IExecuteSqlService executeSqlService; private IExecuteSqlService executeSqlService;
/* */
/* */ public TJdTask selectTJdTaskById(Long id) { public TJdTask selectTJdTaskById(Long id) {
/* 47 */ return this.tJdTaskMapper.selectTJdTaskById(id); return this.tJdTaskMapper.selectTJdTaskById(id);
/* */ } }
/* */
/* */
/* */
/* */
/* */
/* */
/* */
/* */
/* */
/* */ public List<TJdTask> selectTJdTaskList(TJdTask tJdTask) { public List<TJdTask> selectTJdTaskList(TJdTask tJdTask) {
/* 59 */ return this.tJdTaskMapper.selectTJdTaskList(tJdTask); return this.tJdTaskMapper.selectTJdTaskList(tJdTask);
/* */ } }
/* */
/* */
/* */
/* */
/* */
/* */
/* */
/* */
/* */
/* */
/* */
/* */ public int insertTJdTask(TJdTask tJdTask) { public int insertTJdTask(TJdTask tJdTask) {
/* 73 */ String archiveTypeId = tJdTask.getTaskArchiveTypeId(); String archiveTypeId = tJdTask.getTaskArchiveTypeId();
/* 74 */ ArchiveType archiveType = this.archiveTypeService.selectArchiveTypeById(Long.valueOf(Long.parseLong(archiveTypeId))); ArchiveType archiveType = this.archiveTypeService.selectArchiveTypeById(Long.valueOf(Long.parseLong(archiveTypeId)));
/* 75 */ String archiveTypeName = archiveType.getArchiveName(); String archiveTypeName = archiveType.getArchiveName();
/* 76 */ String taskStatus = "WSX"; String taskStatus = "WSX";
/* 77 */ long tableId = TableUtil.getTableIdByArchiveTypeId(archiveType.getId().longValue()); long tableId = TableUtil.getTableIdByArchiveTypeId(archiveType.getId().longValue());
/* */
/* 79 */ tJdTask.setTaskArchiveTypeName(archiveTypeName); tJdTask.setTaskArchiveTypeName(archiveTypeName);
/* 80 */ tJdTask.setTaskTableId(String.valueOf(tableId)); tJdTask.setTaskTableId(String.valueOf(tableId));
/* 81 */ tJdTask.setTaskStatus(taskStatus); tJdTask.setTaskStatus(taskStatus);
/* 82 */ return this.tJdTaskMapper.insertTJdTask(tJdTask); return this.tJdTaskMapper.insertTJdTask(tJdTask);
/* */ } }
/* */
/* */
/* */
/* */
/* */
/* */
/* */
/* */
/* */
/* */
/* */
/* */ public int updateTJdTask(TJdTask tJdTask) { public int updateTJdTask(TJdTask tJdTask) {
/* 96 */ String archiveTypeId = tJdTask.getTaskArchiveTypeId(); String archiveTypeId = tJdTask.getTaskArchiveTypeId();
/* 97 */ ArchiveType archiveType = this.archiveTypeService.selectArchiveTypeById(Long.valueOf(Long.parseLong(archiveTypeId))); ArchiveType archiveType = this.archiveTypeService.selectArchiveTypeById(Long.valueOf(Long.parseLong(archiveTypeId)));
/* 98 */ String archiveTypeName = archiveType.getArchiveName(); String archiveTypeName = archiveType.getArchiveName();
/* 99 */ String taskStatus = "WSX"; String taskStatus = "WSX";
/* 100 */ long tableId = TableUtil.getTableIdByArchiveTypeId(archiveType.getId().longValue()); long tableId = TableUtil.getTableIdByArchiveTypeId(archiveType.getId().longValue());
/* */
/* 102 */ tJdTask.setTaskArchiveTypeName(archiveTypeName); tJdTask.setTaskArchiveTypeName(archiveTypeName);
/* 103 */ tJdTask.setTaskTableId(String.valueOf(tableId)); tJdTask.setTaskTableId(String.valueOf(tableId));
/* 104 */ tJdTask.setTaskStatus(taskStatus); tJdTask.setTaskStatus(taskStatus);
/* 105 */ return this.tJdTaskMapper.updateTJdTask(tJdTask); return this.tJdTaskMapper.updateTJdTask(tJdTask);
/* */ } }
/* */
/* */
/* */
/* */
/* */
/* */
/* */
/* */
/* */
/* */ public int deleteTJdTaskByIds(String ids) { public int deleteTJdTaskByIds(String ids) {
/* 117 */ return this.tJdTaskMapper.deleteTJdTaskByIds(Convert.toStrArray(ids)); return this.tJdTaskMapper.deleteTJdTaskByIds(Convert.toStrArray(ids));
/* */ } }
/* */
/* */
/* */
/* */
/* */
/* */
/* */
/* */
/* */
/* */ public int deleteTJdTaskById(Long id) { public int deleteTJdTaskById(Long id) {
/* 129 */ return this.tJdTaskMapper.deleteTJdTaskById(id); return this.tJdTaskMapper.deleteTJdTaskById(id);
/* */ } }
/* */
/* */
/* */
/* */
/* */
/* */
/* */
/* */ public int jdsx(String ids) { public int jdsx(String ids) {
/* 139 */ int a = 0; int a = 0;
/* 140 */ String[] idsttr = ids.split(","); String[] idsttr = ids.split(",");
/* 141 */ for (int i = 0; i < idsttr.length && for (int i = 0; i < idsttr.length &&
/* 142 */ a == 0; i++) { a == 0; i++) {
/* 143 */ TJdTask tJdTask = this.tJdTaskMapper.selectTJdTaskById(Long.valueOf(Long.parseLong(idsttr[i]))); TJdTask tJdTask = this.tJdTaskMapper.selectTJdTaskById(Long.valueOf(Long.parseLong(idsttr[i])));
/* */
/* 145 */ TJdTaskDetail jdTaskDetail = new TJdTaskDetail(); TJdTaskDetail jdTaskDetail = new TJdTaskDetail();
/* 146 */ jdTaskDetail.setOwnerId(Long.valueOf(Long.parseLong(idsttr[i]))); jdTaskDetail.setOwnerId(Long.valueOf(Long.parseLong(idsttr[i])));
/* 147 */ List<TJdTaskDetail> list = this.jdTaskDetailService.selectTJdTaskDetailList(jdTaskDetail); List<TJdTaskDetail> list = this.jdTaskDetailService.selectTJdTaskDetailList(jdTaskDetail);
/* 148 */ for (int j = 0; j < list.size(); j++) { for (int j = 0; j < list.size(); j++) {
/* 149 */ jdTaskDetail = list.get(j); jdTaskDetail = list.get(j);
/* 150 */ String value = jdTaskDetail.getJdjg(); String value = jdTaskDetail.getJdjg();
/* 151 */ if (value == null || value.equals("")) { if (value == null || value.equals("")) {
/* 152 */ a = 2; a = 2;
/* */ break; break;
/* */ } }
/* 155 */ String columns = ""; String columns = "";
/* 156 */ if (tJdTask.getTaskType().equals("MJJD")) { if (tJdTask.getTaskType().equals("MJJD")) {
/* 157 */ columns = "mj"; columns = "mj";
/* 158 */ } else if (tJdTask.getTaskType().equals("KFJD")) { } else if (tJdTask.getTaskType().equals("KFJD")) {
/* 159 */ columns = "kfqk"; columns = "kfqk";
/* */ } }
/* 161 */ String tableName = TableUtil.getTableName(jdTaskDetail.getArchiveTableId()); String tableName = TableUtil.getTableName(jdTaskDetail.getArchiveTableId());
/* 162 */ String updatesql = "update " + tableName + " set " + columns + "='" + value + "' where id=" + jdTaskDetail.getArchiveId(); String updatesql = "update " + tableName + " set " + columns + "='" + value + "' where id=" + jdTaskDetail.getArchiveId();
/* 163 */ this.executeSqlService.update(updatesql); this.executeSqlService.update(updatesql);
/* */ } }
/* */
/* */
/* 167 */ if (a == 0) { if (a == 0) {
/* 168 */ tJdTask.setTaskStatus("YSX"); tJdTask.setTaskStatus("YSX");
/* 169 */ this.tJdTaskMapper.updateTJdTask(tJdTask); this.tJdTaskMapper.updateTJdTask(tJdTask);
/* */ } }
/* */ } }
/* */
/* */
/* */
/* 175 */ return a; return a;
/* */ } }
/* */ } }
/* Location: C:\Users\Administrator\Desktop\extracted.zip!\extracted\BOOT-INF\classes\com\archive\project\dazl\dajd\service\impl\TJdTaskServiceImpl.class /* Location: C:\Users\Administrator\Desktop\extracted.zip!\extracted\BOOT-INF\classes\com\archive\project\dazl\dajd\service\impl\TJdTaskServiceImpl.class

@ -1,131 +1,131 @@
/* */ package com.archive.project.dazl.ggfj.controller package com.archive.project.dazl.ggfj.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;
/* */ import com.archive.framework.aspectj.lang.enums.BusinessType; import com.archive.framework.aspectj.lang.enums.BusinessType;
/* */ 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;
/* */ import com.archive.framework.web.page.TableDataInfo; import com.archive.framework.web.page.TableDataInfo;
/* */ import com.archive.project.dazl.ggfj.domain.TGgfj; import com.archive.project.dazl.ggfj.domain.TGgfj;
/* */ import com.archive.project.dazl.ggfj.service.ITGgfjService; import com.archive.project.dazl.ggfj.service.ITGgfjService;
/* */ import java.util.List; import java.util.List;
/* */ import org.apache.shiro.authz.annotation.RequiresPermissions; import org.apache.shiro.authz.annotation.RequiresPermissions;
/* */ import org.springframework.beans.factory.annotation.Autowired; import org.springframework.beans.factory.annotation.Autowired;
/* */ import org.springframework.stereotype.Controller; import org.springframework.stereotype.Controller;
/* */ import org.springframework.ui.ModelMap; import org.springframework.ui.ModelMap;
/* */ import org.springframework.web.bind.annotation.GetMapping; import org.springframework.web.bind.annotation.GetMapping;
/* */ import org.springframework.web.bind.annotation.PathVariable; import org.springframework.web.bind.annotation.PathVariable;
/* */ import org.springframework.web.bind.annotation.PostMapping; import org.springframework.web.bind.annotation.PostMapping;
/* */ import org.springframework.web.bind.annotation.RequestMapping; import org.springframework.web.bind.annotation.RequestMapping;
/* */ import org.springframework.web.bind.annotation.ResponseBody; import org.springframework.web.bind.annotation.ResponseBody;
/* */
/* */
/* */
/* */
/* */
/* */
/* */ @Controller @Controller
/* */ @RequestMapping({"/fjgl/ggfj"}) @RequestMapping({"/fjgl/ggfj"})
/* */ public class TGgfjController public class TGgfjController
/* */ extends BaseController extends BaseController
/* */ { {
/* 32 */ private String prefix = "fjgl/ggfj"; private String prefix = "fjgl/ggfj";
/* */
/* */ @Autowired @Autowired
/* */ private ITGgfjService tGgfjService; private ITGgfjService tGgfjService;
/* */
/* */
/* */ @RequiresPermissions({"fjgl:ggfj:view"}) @RequiresPermissions({"fjgl:ggfj:view"})
/* */ @GetMapping @GetMapping
/* */ public String ggfj() { public String ggfj() {
/* 41 */ return this.prefix + "/ggfj"; return this.prefix + "/ggfj";
/* */ } }
/* */
/* */
/* */
/* */
/* */
/* */ @RequiresPermissions({"fjgl:ggfj:list"}) @RequiresPermissions({"fjgl:ggfj:list"})
/* */ @PostMapping({"/list"}) @PostMapping({"/list"})
/* */ @ResponseBody @ResponseBody
/* */ public TableDataInfo list(TGgfj tGgfj) { public TableDataInfo list(TGgfj tGgfj) {
/* 52 */ startPage(); startPage();
/* 53 */ List<TGgfj> list = this.tGgfjService.selectTGgfjList(tGgfj); List<TGgfj> list = this.tGgfjService.selectTGgfjList(tGgfj);
/* 54 */ return getDataTable(list); return getDataTable(list);
/* */ } }
/* */
/* */
/* */
/* */
/* */
/* */ @RequiresPermissions({"fjgl:ggfj:export"}) @RequiresPermissions({"fjgl:ggfj:export"})
/* */ @Log(title = "附件管理", businessType = BusinessType.EXPORT) @Log(title = "附件管理", businessType = BusinessType.EXPORT)
/* */ @PostMapping({"/export"}) @PostMapping({"/export"})
/* */ @ResponseBody @ResponseBody
/* */ public AjaxResult export(TGgfj tGgfj) { public AjaxResult export(TGgfj tGgfj) {
/* 66 */ List<TGgfj> list = this.tGgfjService.selectTGgfjList(tGgfj); List<TGgfj> list = this.tGgfjService.selectTGgfjList(tGgfj);
/* 67 */ ExcelUtil<TGgfj> util = new ExcelUtil(TGgfj.class); ExcelUtil<TGgfj> util = new ExcelUtil(TGgfj.class);
/* 68 */ return util.exportExcel(list, "ggfj"); return util.exportExcel(list, "ggfj");
/* */ } }
/* */
/* */
/* */
/* */
/* */
/* */ @GetMapping({"/add"}) @GetMapping({"/add"})
/* */ public String add() { public String add() {
/* 77 */ return this.prefix + "/add"; return this.prefix + "/add";
/* */ } }
/* */
/* */
/* */
/* */
/* */
/* */ @RequiresPermissions({"fjgl:ggfj:add"}) @RequiresPermissions({"fjgl:ggfj:add"})
/* */ @Log(title = "附件管理", businessType = BusinessType.INSERT) @Log(title = "附件管理", businessType = BusinessType.INSERT)
/* */ @PostMapping({"/add"}) @PostMapping({"/add"})
/* */ @ResponseBody @ResponseBody
/* */ public AjaxResult addSave(TGgfj tGgfj) { public AjaxResult addSave(TGgfj tGgfj) {
/* 89 */ return toAjax(this.tGgfjService.insertTGgfj(tGgfj)); return toAjax(this.tGgfjService.insertTGgfj(tGgfj));
/* */ } }
/* */
/* */
/* */
/* */
/* */
/* */ @GetMapping({"/edit/{id}"}) @GetMapping({"/edit/{id}"})
/* */ public String edit(@PathVariable("id") Long id, ModelMap mmap) { public String edit(@PathVariable("id") Long id, ModelMap mmap) {
/* 98 */ TGgfj tGgfj = this.tGgfjService.selectTGgfjById(id); TGgfj tGgfj = this.tGgfjService.selectTGgfjById(id);
/* 99 */ mmap.put("tGgfj", tGgfj); mmap.put("tGgfj", tGgfj);
/* 100 */ return this.prefix + "/edit"; return this.prefix + "/edit";
/* */ } }
/* */
/* */
/* */
/* */
/* */
/* */ @RequiresPermissions({"fjgl:ggfj:edit"}) @RequiresPermissions({"fjgl:ggfj:edit"})
/* */ @Log(title = "附件管理", businessType = BusinessType.UPDATE) @Log(title = "附件管理", businessType = BusinessType.UPDATE)
/* */ @PostMapping({"/edit"}) @PostMapping({"/edit"})
/* */ @ResponseBody @ResponseBody
/* */ public AjaxResult editSave(TGgfj tGgfj) { public AjaxResult editSave(TGgfj tGgfj) {
/* 112 */ return toAjax(this.tGgfjService.updateTGgfj(tGgfj)); return toAjax(this.tGgfjService.updateTGgfj(tGgfj));
/* */ } }
/* */
/* */
/* */
/* */
/* */
/* */ @RequiresPermissions({"fjgl:ggfj:remove"}) @RequiresPermissions({"fjgl:ggfj:remove"})
/* */ @Log(title = "附件管理", businessType = BusinessType.DELETE) @Log(title = "附件管理", businessType = BusinessType.DELETE)
/* */ @PostMapping({"/remove"}) @PostMapping({"/remove"})
/* */ @ResponseBody @ResponseBody
/* */ public AjaxResult remove(String ids) { public AjaxResult remove(String ids) {
/* 124 */ return toAjax(this.tGgfjService.deleteTGgfjByIds(ids)); return toAjax(this.tGgfjService.deleteTGgfjByIds(ids));
/* */ } }
/* */ } }
/* Location: C:\Users\Administrator\Desktop\extracted.zip!\extracted\BOOT-INF\classes\com\archive\project\dazl\ggfj\controller\TGgfjController.class /* Location: C:\Users\Administrator\Desktop\extracted.zip!\extracted\BOOT-INF\classes\com\archive\project\dazl\ggfj\controller\TGgfjController.class

@ -1,168 +1,168 @@
/* */ package com.archive.project.dazl.ggfj.domain package com.archive.project.dazl.ggfj.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;
/* */ import org.apache.commons.lang3.builder.ToStringBuilder; import org.apache.commons.lang3.builder.ToStringBuilder;
/* */ import org.apache.commons.lang3.builder.ToStringStyle; import org.apache.commons.lang3.builder.ToStringStyle;
/* */
/* */
/* */
/* */
/* */
/* */
/* */
/* */
/* */
/* */
/* */
/* */
/* */
/* */
/* */
/* */
/* */
/* */
/* */
/* */
/* */
/* */
/* */
/* */
/* */
/* */
/* */
/* */ public class TGgfj public class TGgfj
/* */ extends BaseEntity extends BaseEntity
/* */ { {
/* */ private static final long serialVersionUID = 1L; private static final long serialVersionUID = 1L;
/* */ private Long id; private Long id;
/* */ @Excel(name = "所属类型") @Excel(name = "所属类型")
/* */ private String ssType; private String ssType;
/* */ @Excel(name = "所属ID") @Excel(name = "所属ID")
/* */ private Long ssId; private Long ssId;
/* */ @Excel(name = "所属表名") @Excel(name = "所属表名")
/* */ private String ssTableName; private String ssTableName;
/* */ @Excel(name = "文件名称") @Excel(name = "文件名称")
/* */ private String fileName; private String fileName;
/* */ @Excel(name = "文件格式") @Excel(name = "文件格式")
/* */ private String fileFormat; private String fileFormat;
/* */ @Excel(name = "文件大小") @Excel(name = "文件大小")
/* */ private Long fileSize; private Long fileSize;
/* */ @Excel(name = "文件路径") @Excel(name = "文件路径")
/* */ private String filePath; private String filePath;
/* */ @Excel(name = "文件缩略图路径") @Excel(name = "文件缩略图路径")
/* */ private String fileMiniPath; private String fileMiniPath;
/* */ @Excel(name = "备注") @Excel(name = "备注")
/* */ private String bz; private String bz;
/* */
/* */ public void setId(Long id) { public void setId(Long id) {
/* 59 */ this.id = id; this.id = id;
/* */ } }
/* */
/* */
/* */ public Long getId() { public Long getId() {
/* 64 */ return this.id; return this.id;
/* */ } }
/* */
/* */ public void setSsType(String ssType) { public void setSsType(String ssType) {
/* 68 */ this.ssType = ssType; this.ssType = ssType;
/* */ } }
/* */
/* */
/* */ public String getSsType() { public String getSsType() {
/* 73 */ return this.ssType; return this.ssType;
/* */ } }
/* */
/* */ public void setSsId(Long ssId) { public void setSsId(Long ssId) {
/* 77 */ this.ssId = ssId; this.ssId = ssId;
/* */ } }
/* */
/* */
/* */ public Long getSsId() { public Long getSsId() {
/* 82 */ return this.ssId; return this.ssId;
/* */ } }
/* */
/* */ public void setSsTableName(String ssTableName) { public void setSsTableName(String ssTableName) {
/* 86 */ this.ssTableName = ssTableName; this.ssTableName = ssTableName;
/* */ } }
/* */
/* */
/* */ public String getSsTableName() { public String getSsTableName() {
/* 91 */ return this.ssTableName; return this.ssTableName;
/* */ } }
/* */
/* */ public void setFileName(String fileName) { public void setFileName(String fileName) {
/* 95 */ this.fileName = fileName; this.fileName = fileName;
/* */ } }
/* */
/* */
/* */ public String getFileName() { public String getFileName() {
/* 100 */ return this.fileName; return this.fileName;
/* */ } }
/* */
/* */ public void setFileFormat(String fileFormat) { public void setFileFormat(String fileFormat) {
/* 104 */ this.fileFormat = fileFormat; this.fileFormat = fileFormat;
/* */ } }
/* */
/* */
/* */ public String getFileFormat() { public String getFileFormat() {
/* 109 */ return this.fileFormat; return this.fileFormat;
/* */ } }
/* */
/* */ public void setFileSize(Long fileSize) { public void setFileSize(Long fileSize) {
/* 113 */ this.fileSize = fileSize; this.fileSize = fileSize;
/* */ } }
/* */
/* */
/* */ public Long getFileSize() { public Long getFileSize() {
/* 118 */ return this.fileSize; return this.fileSize;
/* */ } }
/* */
/* */ public void setFilePath(String filePath) { public void setFilePath(String filePath) {
/* 122 */ this.filePath = filePath; this.filePath = filePath;
/* */ } }
/* */
/* */
/* */ public String getFilePath() { public String getFilePath() {
/* 127 */ return this.filePath; return this.filePath;
/* */ } }
/* */
/* */ public void setFileMiniPath(String fileMiniPath) { public void setFileMiniPath(String fileMiniPath) {
/* 131 */ this.fileMiniPath = fileMiniPath; this.fileMiniPath = fileMiniPath;
/* */ } }
/* */
/* */
/* */ public String getFileMiniPath() { public String getFileMiniPath() {
/* 136 */ return this.fileMiniPath; return this.fileMiniPath;
/* */ } }
/* */
/* */ public void setBz(String bz) { public void setBz(String bz) {
/* 140 */ this.bz = bz; this.bz = bz;
/* */ } }
/* */
/* */
/* */ public String getBz() { public String getBz() {
/* 145 */ return this.bz; return this.bz;
/* */ } }
/* */
/* */
/* */ public String toString() { public String toString() {
/* 150 */ return (new ToStringBuilder(this, ToStringStyle.MULTI_LINE_STYLE)) return (new ToStringBuilder(this, ToStringStyle.MULTI_LINE_STYLE))
/* 151 */ .append("id", getId()) .append("id", getId())
/* 152 */ .append("ssType", getSsType()) .append("ssType", getSsType())
/* 153 */ .append("ssId", getSsId()) .append("ssId", getSsId())
/* 154 */ .append("ssTableName", getSsTableName()) .append("ssTableName", getSsTableName())
/* 155 */ .append("fileName", getFileName()) .append("fileName", getFileName())
/* 156 */ .append("fileFormat", getFileFormat()) .append("fileFormat", getFileFormat())
/* 157 */ .append("fileSize", getFileSize()) .append("fileSize", getFileSize())
/* 158 */ .append("filePath", getFilePath()) .append("filePath", getFilePath())
/* 159 */ .append("fileMiniPath", getFileMiniPath()) .append("fileMiniPath", getFileMiniPath())
/* 160 */ .append("bz", getBz()) .append("bz", getBz())
/* 161 */ .toString(); .toString();
/* */ } }
/* */ } }
/* Location: C:\Users\Administrator\Desktop\extracted.zip!\extracted\BOOT-INF\classes\com\archive\project\dazl\ggfj\domain\TGgfj.class /* Location: C:\Users\Administrator\Desktop\extracted.zip!\extracted\BOOT-INF\classes\com\archive\project\dazl\ggfj\domain\TGgfj.class

@ -1,99 +1,99 @@
/* */ package com.archive.project.dazl.ggfj.service.impl package 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;
/* */ import com.archive.project.dazl.ggfj.mapper.TGgfjMapper; import com.archive.project.dazl.ggfj.mapper.TGgfjMapper;
/* */ import com.archive.project.dazl.ggfj.service.ITGgfjService; import com.archive.project.dazl.ggfj.service.ITGgfjService;
/* */ import java.util.List; import java.util.List;
/* */ import org.springframework.beans.factory.annotation.Autowired; import org.springframework.beans.factory.annotation.Autowired;
/* */ import org.springframework.stereotype.Service; import org.springframework.stereotype.Service;
/* */
/* */
/* */
/* */
/* */
/* */
/* */
/* */
/* */
/* */
/* */
/* */
/* */
/* */
/* */ @Service @Service
/* */ public class TGgfjServiceImpl public class TGgfjServiceImpl
/* */ implements ITGgfjService implements ITGgfjService
/* */ { {
/* */ @Autowired @Autowired
/* */ private TGgfjMapper tGgfjMapper; private TGgfjMapper tGgfjMapper;
/* */
/* */ public TGgfj selectTGgfjById(Long id) { public TGgfj selectTGgfjById(Long id) {
/* 32 */ return this.tGgfjMapper.selectTGgfjById(id); return this.tGgfjMapper.selectTGgfjById(id);
/* */ } }
/* */
/* */
/* */
/* */
/* */
/* */
/* */
/* */
/* */
/* */ public List<TGgfj> selectTGgfjList(TGgfj tGgfj) { public List<TGgfj> selectTGgfjList(TGgfj tGgfj) {
/* 44 */ return this.tGgfjMapper.selectTGgfjList(tGgfj); return this.tGgfjMapper.selectTGgfjList(tGgfj);
/* */ } }
/* */
/* */
/* */
/* */
/* */
/* */
/* */
/* */
/* */
/* */ public int insertTGgfj(TGgfj tGgfj) { public int insertTGgfj(TGgfj tGgfj) {
/* 56 */ return this.tGgfjMapper.insertTGgfj(tGgfj); return this.tGgfjMapper.insertTGgfj(tGgfj);
/* */ } }
/* */
/* */
/* */
/* */
/* */
/* */
/* */
/* */
/* */
/* */ public int updateTGgfj(TGgfj tGgfj) { public int updateTGgfj(TGgfj tGgfj) {
/* 68 */ return this.tGgfjMapper.updateTGgfj(tGgfj); return this.tGgfjMapper.updateTGgfj(tGgfj);
/* */ } }
/* */
/* */
/* */
/* */
/* */
/* */
/* */
/* */
/* */
/* */ public int deleteTGgfjByIds(String ids) { public int deleteTGgfjByIds(String ids) {
/* 80 */ return this.tGgfjMapper.deleteTGgfjByIds(Convert.toStrArray(ids)); return this.tGgfjMapper.deleteTGgfjByIds(Convert.toStrArray(ids));
/* */ } }
/* */
/* */
/* */
/* */
/* */
/* */
/* */
/* */
/* */
/* */ public int deleteTGgfjById(Long id) { public int deleteTGgfjById(Long id) {
/* 92 */ return this.tGgfjMapper.deleteTGgfjById(id); return this.tGgfjMapper.deleteTGgfjById(id);
/* */ } }
/* */ } }
/* Location: C:\Users\Administrator\Desktop\extracted.zip!\extracted\BOOT-INF\classes\com\archive\project\dazl\ggfj\service\impl\TGgfjServiceImpl.class /* Location: C:\Users\Administrator\Desktop\extracted.zip!\extracted\BOOT-INF\classes\com\archive\project\dazl\ggfj\service\impl\TGgfjServiceImpl.class

@ -1,209 +1,209 @@
/* */ package com.archive.project.dazl.jdmx.controller; package 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;
/* */ import com.archive.framework.aspectj.lang.enums.BusinessType; import com.archive.framework.aspectj.lang.enums.BusinessType;
/* */ 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;
/* */ import com.archive.framework.web.page.TableDataInfo; import com.archive.framework.web.page.TableDataInfo;
/* */ import com.archive.project.dazl.dajd.domain.TJdTask; import com.archive.project.dazl.dajd.domain.TJdTask;
/* */ import com.archive.project.dazl.dajd.service.ITJdTaskService; import com.archive.project.dazl.dajd.service.ITJdTaskService;
/* */ import com.archive.project.dazl.jdmx.domain.TJdTaskDetail; import com.archive.project.dazl.jdmx.domain.TJdTaskDetail;
/* */ import com.archive.project.dazl.jdmx.service.ITJdTaskDetailService; import com.archive.project.dazl.jdmx.service.ITJdTaskDetailService;
/* */ import java.util.List; import java.util.List;
/* */ import org.apache.shiro.authz.annotation.RequiresPermissions; import org.apache.shiro.authz.annotation.RequiresPermissions;
/* */ import org.springframework.beans.factory.annotation.Autowired; import org.springframework.beans.factory.annotation.Autowired;
/* */ import org.springframework.stereotype.Controller; import org.springframework.stereotype.Controller;
/* */ import org.springframework.ui.ModelMap; import org.springframework.ui.ModelMap;
/* */ import org.springframework.validation.annotation.Validated; import org.springframework.validation.annotation.Validated;
/* */ import org.springframework.web.bind.annotation.GetMapping; import org.springframework.web.bind.annotation.GetMapping;
/* */ import org.springframework.web.bind.annotation.PathVariable; import org.springframework.web.bind.annotation.PathVariable;
/* */ import org.springframework.web.bind.annotation.PostMapping; import org.springframework.web.bind.annotation.PostMapping;
/* */ import org.springframework.web.bind.annotation.RequestMapping; import org.springframework.web.bind.annotation.RequestMapping;
/* */ import org.springframework.web.bind.annotation.ResponseBody; import org.springframework.web.bind.annotation.ResponseBody;
/* */
/* */
/* */
/* */
/* */
/* */
/* */
/* */ @Controller @Controller
/* */ @RequestMapping({"/dazl/jdmx"}) @RequestMapping({"/dazl/jdmx"})
/* */ public class TJdTaskDetailController public class TJdTaskDetailController
/* */ extends BaseController extends BaseController
/* */ { {
/* 36 */ private String prefix = "dazl/jdmx"; private String prefix = "dazl/jdmx";
/* */
/* */ @Autowired @Autowired
/* */ private ITJdTaskDetailService tJdTaskDetailService; private ITJdTaskDetailService tJdTaskDetailService;
/* */
/* */ @Autowired @Autowired
/* */ private ITJdTaskService jdTaskService; private ITJdTaskService jdTaskService;
/* */
/* */
/* */ @RequiresPermissions({"dazl:jdmx:view"}) @RequiresPermissions({"dazl:jdmx:view"})
/* */ @GetMapping({"/{id}"}) @GetMapping({"/{id}"})
/* */ public String jdmx(@PathVariable("id") Long id, ModelMap mmap) { public String jdmx(@PathVariable("id") Long id, ModelMap mmap) {
/* 48 */ mmap.put("ownerId", id); mmap.put("ownerId", id);
/* */
/* 50 */ TJdTask jdTask = this.jdTaskService.selectTJdTaskById(id); TJdTask jdTask = this.jdTaskService.selectTJdTaskById(id);
/* 51 */ mmap.put("jdType", jdTask.getTaskType()); mmap.put("jdType", jdTask.getTaskType());
/* 52 */ mmap.put("jdStatus", jdTask.getTaskStatus()); mmap.put("jdStatus", jdTask.getTaskStatus());
/* 53 */ return this.prefix + "/jdmx"; return this.prefix + "/jdmx";
/* */ } }
/* */
/* */
/* */
/* */
/* */
/* */ @RequiresPermissions({"dazl:jdmx:list"}) @RequiresPermissions({"dazl:jdmx:list"})
/* */ @PostMapping({"/list/{ownerId}"}) @PostMapping({"/list/{ownerId}"})
/* */ @ResponseBody @ResponseBody
/* */ public TableDataInfo list(@PathVariable("ownerId") Long ownerId, TJdTaskDetail tJdTaskDetail) { public TableDataInfo list(@PathVariable("ownerId") Long ownerId, TJdTaskDetail tJdTaskDetail) {
/* 64 */ startPage(); startPage();
/* 65 */ tJdTaskDetail.setOwnerId(ownerId); tJdTaskDetail.setOwnerId(ownerId);
/* 66 */ List<TJdTaskDetail> list = this.tJdTaskDetailService.selectTJdTaskDetailList(tJdTaskDetail); List<TJdTaskDetail> list = this.tJdTaskDetailService.selectTJdTaskDetailList(tJdTaskDetail);
/* 67 */ return getDataTable(list); return getDataTable(list);
/* */ } }
/* */
/* */
/* */
/* */
/* */
/* */ @RequiresPermissions({"dazl:jdmx:export"}) @RequiresPermissions({"dazl:jdmx:export"})
/* */ @Log(title = "鉴定明细", businessType = BusinessType.EXPORT) @Log(title = "鉴定明细", businessType = BusinessType.EXPORT)
/* */ @PostMapping({"/export"}) @PostMapping({"/export"})
/* */ @ResponseBody @ResponseBody
/* */ public AjaxResult export(TJdTaskDetail tJdTaskDetail) { public AjaxResult export(TJdTaskDetail tJdTaskDetail) {
/* 79 */ List<TJdTaskDetail> list = this.tJdTaskDetailService.selectTJdTaskDetailList(tJdTaskDetail); List<TJdTaskDetail> list = this.tJdTaskDetailService.selectTJdTaskDetailList(tJdTaskDetail);
/* 80 */ ExcelUtil<TJdTaskDetail> util = new ExcelUtil(TJdTaskDetail.class); ExcelUtil<TJdTaskDetail> util = new ExcelUtil(TJdTaskDetail.class);
/* 81 */ return util.exportExcel(list, "jdmx"); return util.exportExcel(list, "jdmx");
/* */ } }
/* */
/* */
/* */
/* */
/* */
/* */ @GetMapping({"/add"}) @GetMapping({"/add"})
/* */ public String add() { public String add() {
/* 90 */ return this.prefix + "/add"; return this.prefix + "/add";
/* */ } }
/* */
/* */
/* */
/* */
/* */
/* */ @RequiresPermissions({"dazl:jdmx:add"}) @RequiresPermissions({"dazl:jdmx:add"})
/* */ @Log(title = "鉴定明细", businessType = BusinessType.INSERT) @Log(title = "鉴定明细", businessType = BusinessType.INSERT)
/* */ @PostMapping({"/add"}) @PostMapping({"/add"})
/* */ @ResponseBody @ResponseBody
/* */ public AjaxResult addSave(TJdTaskDetail tJdTaskDetail) { public AjaxResult addSave(TJdTaskDetail tJdTaskDetail) {
/* 102 */ return toAjax(this.tJdTaskDetailService.insertTJdTaskDetail(tJdTaskDetail)); return toAjax(this.tJdTaskDetailService.insertTJdTaskDetail(tJdTaskDetail));
/* */ } }
/* */
/* */
/* */
/* */
/* */
/* */ @GetMapping({"/edit/{id}"}) @GetMapping({"/edit/{id}"})
/* */ public String edit(@PathVariable("id") Long id, ModelMap mmap) { public String edit(@PathVariable("id") Long id, ModelMap mmap) {
/* 111 */ TJdTaskDetail tJdTaskDetail = this.tJdTaskDetailService.selectTJdTaskDetailById(id); TJdTaskDetail tJdTaskDetail = this.tJdTaskDetailService.selectTJdTaskDetailById(id);
/* 112 */ mmap.put("tJdTaskDetail", tJdTaskDetail); mmap.put("tJdTaskDetail", tJdTaskDetail);
/* 113 */ return this.prefix + "/edit"; return this.prefix + "/edit";
/* */ } }
/* */
/* */
/* */
/* */
/* */
/* */ @RequiresPermissions({"dazl:jdmx:edit"}) @RequiresPermissions({"dazl:jdmx:edit"})
/* */ @Log(title = "鉴定明细", businessType = BusinessType.UPDATE) @Log(title = "鉴定明细", businessType = BusinessType.UPDATE)
/* */ @PostMapping({"/edit"}) @PostMapping({"/edit"})
/* */ @ResponseBody @ResponseBody
/* */ public AjaxResult editSave(TJdTaskDetail tJdTaskDetail) { public AjaxResult editSave(TJdTaskDetail tJdTaskDetail) {
/* 125 */ return toAjax(this.tJdTaskDetailService.updateTJdTaskDetail(tJdTaskDetail)); return toAjax(this.tJdTaskDetailService.updateTJdTaskDetail(tJdTaskDetail));
/* */ } }
/* */
/* */
/* */
/* */
/* */
/* */ @RequiresPermissions({"dazl:jdmx:remove"}) @RequiresPermissions({"dazl:jdmx:remove"})
/* */ @Log(title = "鉴定明细", businessType = BusinessType.DELETE) @Log(title = "鉴定明细", businessType = BusinessType.DELETE)
/* */ @PostMapping({"/remove"}) @PostMapping({"/remove"})
/* */ @ResponseBody @ResponseBody
/* */ public AjaxResult remove(String ids) { public AjaxResult remove(String ids) {
/* 137 */ return toAjax(this.tJdTaskDetailService.deleteTJdTaskDetailByIds(ids)); return toAjax(this.tJdTaskDetailService.deleteTJdTaskDetailByIds(ids));
/* */ } }
/* */
/* */
/* */
/* */
/* */
/* */
/* */ @GetMapping({"/jdsearch/{ownerId}"}) @GetMapping({"/jdsearch/{ownerId}"})
/* */ public String borrowsearch(@PathVariable("ownerId") Long ownerId, ModelMap mmap) { public String borrowsearch(@PathVariable("ownerId") Long ownerId, ModelMap mmap) {
/* 147 */ mmap.put("ownerId", ownerId); mmap.put("ownerId", ownerId);
/* 148 */ return this.prefix + "/jdsearch"; return this.prefix + "/jdsearch";
/* */ } }
/* */
/* */ @Log(title = "档案鉴定-明细调档保存", businessType = BusinessType.INSERT) @Log(title = "档案鉴定-明细调档保存", businessType = BusinessType.INSERT)
/* */ @PostMapping({"/saveJdDetail"}) @PostMapping({"/saveJdDetail"})
/* */ @ResponseBody @ResponseBody
/* */ public AjaxResult saveJdDetail(@Validated String ownerId, @Validated String ids) { public AjaxResult saveJdDetail(@Validated String ownerId, @Validated String ids) {
/* 155 */ boolean res = this.tJdTaskDetailService.saveJdDetail(ownerId, ids); boolean res = this.tJdTaskDetailService.saveJdDetail(ownerId, ids);
/* 156 */ if (res) { if (res) {
/* 157 */ return success(); return success();
/* */ } }
/* 159 */ return error(); return error();
/* */ } }
/* */
/* */
/* */
/* */
/* */
/* */
/* */
/* */ @Log(title = "档案整理-档案鉴定-单条鉴定", businessType = BusinessType.ZLRK) @Log(title = "档案整理-档案鉴定-单条鉴定", businessType = BusinessType.ZLRK)
/* */ @PostMapping({"/dtjd"}) @PostMapping({"/dtjd"})
/* */ @ResponseBody @ResponseBody
/* */ public AjaxResult dtjd(@Validated long id, @Validated String field, @Validated String value) { public AjaxResult dtjd(@Validated long id, @Validated String field, @Validated String value) {
/* 172 */ int flag = 0; int flag = 0;
/* */ try { try {
/* 174 */ TJdTaskDetail jdTaskDetail = this.tJdTaskDetailService.selectTJdTaskDetailById(Long.valueOf(id)); TJdTaskDetail jdTaskDetail = this.tJdTaskDetailService.selectTJdTaskDetailById(Long.valueOf(id));
/* 175 */ if (field.equals("jdjg")) { if (field.equals("jdjg")) {
/* 176 */ jdTaskDetail.setJdjg(value); jdTaskDetail.setJdjg(value);
/* */ } }
/* 178 */ if (field.equals("jdyj")) { if (field.equals("jdyj")) {
/* 179 */ jdTaskDetail.setJdyj(value); jdTaskDetail.setJdyj(value);
/* */ } }
/* 181 */ this.tJdTaskDetailService.updateTJdTaskDetail(jdTaskDetail); this.tJdTaskDetailService.updateTJdTaskDetail(jdTaskDetail);
/* 182 */ } catch (Exception ex) { } catch (Exception ex) {
/* 183 */ flag = 1; flag = 1;
/* 184 */ System.out.println("单条鉴定出现异常:" + ex.getMessage()); System.out.println("单条鉴定出现异常:" + ex.getMessage());
/* 185 */ return error("鉴定结果保存失败!"); return error("鉴定结果保存失败!");
/* */ } }
/* 187 */ if (flag == 0) { if (flag == 0) {
/* 188 */ return success("鉴定结果保存成功!"); return success("鉴定结果保存成功!");
/* */ } }
/* 190 */ return error("鉴定结果保存失败!"); return error("鉴定结果保存失败!");
/* */ } }
/* */
/* */
/* */
/* */ @Log(title = "档案鉴定-批量鉴定保存", businessType = BusinessType.INSERT) @Log(title = "档案鉴定-批量鉴定保存", businessType = BusinessType.INSERT)
/* */ @PostMapping({"/savePLJdDetail"}) @PostMapping({"/savePLJdDetail"})
/* */ @ResponseBody @ResponseBody
/* */ public AjaxResult savePLJdDetail(@Validated String value, @Validated String ids) { public AjaxResult savePLJdDetail(@Validated String value, @Validated String ids) {
/* 199 */ boolean res = this.tJdTaskDetailService.saveJdPljdDetail(value, ids); boolean res = this.tJdTaskDetailService.saveJdPljdDetail(value, ids);
/* 200 */ if (res) { if (res) {
/* 201 */ return success(); return success();
/* */ } }
/* 203 */ return error(); return error();
/* */ } }
/* */ } }
/* Location: C:\Users\Administrator\Desktop\extracted.zip!\extracted\BOOT-INF\classes\com\archive\project\dazl\jdmx\controller\TJdTaskDetailController.class /* Location: C:\Users\Administrator\Desktop\extracted.zip!\extracted\BOOT-INF\classes\com\archive\project\dazl\jdmx\controller\TJdTaskDetailController.class

@ -1,293 +1,293 @@
/* */ package com.archive.project.dazl.jdmx.domain package 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;
/* */ import org.apache.commons.lang3.builder.ToStringBuilder; import org.apache.commons.lang3.builder.ToStringBuilder;
/* */ import org.apache.commons.lang3.builder.ToStringStyle; import org.apache.commons.lang3.builder.ToStringStyle;
/* */
/* */
/* */
/* */
/* */
/* */
/* */
/* */
/* */
/* */
/* */
/* */
/* */
/* */
/* */
/* */
/* */
/* */
/* */
/* */
/* */
/* */
/* */
/* */
/* */
/* */
/* */
/* */
/* */
/* */
/* */
/* */
/* */
/* */
/* */
/* */
/* */
/* */
/* */
/* */
/* */
/* */
/* */
/* */
/* */
/* */ public class TJdTaskDetail public class TJdTaskDetail
/* */ extends BaseEntity extends BaseEntity
/* */ { {
/* */ private static final long serialVersionUID = 1L; private static final long serialVersionUID = 1L;
/* */ private Long id; private Long id;
/* */ @Excel(name = "任务单id") @Excel(name = "任务单id")
/* */ private Long ownerId; private Long ownerId;
/* */ @Excel(name = "鉴定类型") @Excel(name = "鉴定类型")
/* */ private String ownerType; private String ownerType;
/* */ @Excel(name = "档案类型id") @Excel(name = "档案类型id")
/* */ private Long archiveTypeId; private Long archiveTypeId;
/* */ @Excel(name = "档案类型名称") @Excel(name = "档案类型名称")
/* */ private String archiveTypeName; private String archiveTypeName;
/* */ @Excel(name = "表id") @Excel(name = "表id")
/* */ private Long archiveTableId; private Long archiveTableId;
/* */ @Excel(name = "条目id") @Excel(name = "条目id")
/* */ private Long archiveId; private Long archiveId;
/* */ @Excel(name = "档号") @Excel(name = "档号")
/* */ private String dh; private String dh;
/* */ @Excel(name = "题名") @Excel(name = "题名")
/* */ private String tm; private String tm;
/* */ @Excel(name = "责任者") @Excel(name = "责任者")
/* */ private String zrz; private String zrz;
/* */ @Excel(name = "年度") @Excel(name = "年度")
/* */ private String nd; private String nd;
/* */ @Excel(name = "全宗号") @Excel(name = "全宗号")
/* */ private String qzh; private String qzh;
/* */ @Excel(name = "保管期限") @Excel(name = "保管期限")
/* */ private String bgqx; private String bgqx;
/* */ @Excel(name = "密级") @Excel(name = "密级")
/* */ private String mj; private String mj;
/* */ @Excel(name = "开放情况") @Excel(name = "开放情况")
/* */ private String kfqk; private String kfqk;
/* */ @Excel(name = "鉴定结果") @Excel(name = "鉴定结果")
/* */ private String jdjg; private String jdjg;
/* */ @Excel(name = "鉴定意见") @Excel(name = "鉴定意见")
/* */ private String jdyj; private String jdyj;
/* */ @Excel(name = "备注") @Excel(name = "备注")
/* */ private String bz; private String bz;
/* */ @Excel(name = "日期") @Excel(name = "日期")
/* */ private String rq; private String rq;
/* */
/* */ public void setId(Long id) { public void setId(Long id) {
/* 95 */ this.id = id; this.id = id;
/* */ } }
/* */
/* */
/* */ public Long getId() { public Long getId() {
/* 100 */ return this.id; return this.id;
/* */ } }
/* */
/* */ public void setOwnerId(Long ownerId) { public void setOwnerId(Long ownerId) {
/* 104 */ this.ownerId = ownerId; this.ownerId = ownerId;
/* */ } }
/* */
/* */
/* */ public Long getOwnerId() { public Long getOwnerId() {
/* 109 */ return this.ownerId; return this.ownerId;
/* */ } }
/* */
/* */ public void setOwnerType(String ownerType) { public void setOwnerType(String ownerType) {
/* 113 */ this.ownerType = ownerType; this.ownerType = ownerType;
/* */ } }
/* */
/* */
/* */ public String getOwnerType() { public String getOwnerType() {
/* 118 */ return this.ownerType; return this.ownerType;
/* */ } }
/* */
/* */ public void setArchiveTypeId(Long archiveTypeId) { public void setArchiveTypeId(Long archiveTypeId) {
/* 122 */ this.archiveTypeId = archiveTypeId; this.archiveTypeId = archiveTypeId;
/* */ } }
/* */
/* */
/* */ public Long getArchiveTypeId() { public Long getArchiveTypeId() {
/* 127 */ return this.archiveTypeId; return this.archiveTypeId;
/* */ } }
/* */
/* */ public void setArchiveTypeName(String archiveTypeName) { public void setArchiveTypeName(String archiveTypeName) {
/* 131 */ this.archiveTypeName = archiveTypeName; this.archiveTypeName = archiveTypeName;
/* */ } }
/* */
/* */
/* */ public String getArchiveTypeName() { public String getArchiveTypeName() {
/* 136 */ return this.archiveTypeName; return this.archiveTypeName;
/* */ } }
/* */
/* */ public void setArchiveTableId(Long archiveTableId) { public void setArchiveTableId(Long archiveTableId) {
/* 140 */ this.archiveTableId = archiveTableId; this.archiveTableId = archiveTableId;
/* */ } }
/* */
/* */
/* */ public Long getArchiveTableId() { public Long getArchiveTableId() {
/* 145 */ return this.archiveTableId; return this.archiveTableId;
/* */ } }
/* */
/* */ public void setArchiveId(Long archiveId) { public void setArchiveId(Long archiveId) {
/* 149 */ this.archiveId = archiveId; this.archiveId = archiveId;
/* */ } }
/* */
/* */
/* */ public Long getArchiveId() { public Long getArchiveId() {
/* 154 */ return this.archiveId; return this.archiveId;
/* */ } }
/* */
/* */ public void setDh(String dh) { public void setDh(String dh) {
/* 158 */ this.dh = dh; this.dh = dh;
/* */ } }
/* */
/* */
/* */ public String getDh() { public String getDh() {
/* 163 */ return this.dh; return this.dh;
/* */ } }
/* */
/* */ public void setTm(String tm) { public void setTm(String tm) {
/* 167 */ this.tm = tm; this.tm = tm;
/* */ } }
/* */
/* */
/* */ public String getTm() { public String getTm() {
/* 172 */ return this.tm; return this.tm;
/* */ } }
/* */
/* */ public void setZrz(String zrz) { public void setZrz(String zrz) {
/* 176 */ this.zrz = zrz; this.zrz = zrz;
/* */ } }
/* */
/* */
/* */ public String getZrz() { public String getZrz() {
/* 181 */ return this.zrz; return this.zrz;
/* */ } }
/* */
/* */ public void setNd(String nd) { public void setNd(String nd) {
/* 185 */ this.nd = nd; this.nd = nd;
/* */ } }
/* */
/* */
/* */ public String getNd() { public String getNd() {
/* 190 */ return this.nd; return this.nd;
/* */ } }
/* */
/* */ public void setQzh(String qzh) { public void setQzh(String qzh) {
/* 194 */ this.qzh = qzh; this.qzh = qzh;
/* */ } }
/* */
/* */
/* */ public String getQzh() { public String getQzh() {
/* 199 */ return this.qzh; return this.qzh;
/* */ } }
/* */
/* */ public void setBgqx(String bgqx) { public void setBgqx(String bgqx) {
/* 203 */ this.bgqx = bgqx; this.bgqx = bgqx;
/* */ } }
/* */
/* */
/* */ public String getBgqx() { public String getBgqx() {
/* 208 */ return this.bgqx; return this.bgqx;
/* */ } }
/* */
/* */ public void setMj(String mj) { public void setMj(String mj) {
/* 212 */ this.mj = mj; this.mj = mj;
/* */ } }
/* */
/* */
/* */ public String getMj() { public String getMj() {
/* 217 */ return this.mj; return this.mj;
/* */ } }
/* */
/* */ public void setKfqk(String kfqk) { public void setKfqk(String kfqk) {
/* 221 */ this.kfqk = kfqk; this.kfqk = kfqk;
/* */ } }
/* */
/* */
/* */ public String getKfqk() { public String getKfqk() {
/* 226 */ return this.kfqk; return this.kfqk;
/* */ } }
/* */
/* */ public void setJdjg(String jdjg) { public void setJdjg(String jdjg) {
/* 230 */ this.jdjg = jdjg; this.jdjg = jdjg;
/* */ } }
/* */
/* */
/* */ public String getJdjg() { public String getJdjg() {
/* 235 */ return this.jdjg; return this.jdjg;
/* */ } }
/* */
/* */ public void setJdyj(String jdyj) { public void setJdyj(String jdyj) {
/* 239 */ this.jdyj = jdyj; this.jdyj = jdyj;
/* */ } }
/* */
/* */
/* */ public String getJdyj() { public String getJdyj() {
/* 244 */ return this.jdyj; return this.jdyj;
/* */ } }
/* */
/* */ public void setBz(String bz) { public void setBz(String bz) {
/* 248 */ this.bz = bz; this.bz = bz;
/* */ } }
/* */
/* */
/* */ public String getBz() { public String getBz() {
/* 253 */ return this.bz; return this.bz;
/* */ } }
/* */
/* */ public void setRq(String rq) { public void setRq(String rq) {
/* 257 */ this.rq = rq; this.rq = rq;
/* */ } }
/* */
/* */
/* */ public String getRq() { public String getRq() {
/* 262 */ return this.rq; return this.rq;
/* */ } }
/* */
/* */
/* */ public String toString() { public String toString() {
/* 267 */ return (new ToStringBuilder(this, ToStringStyle.MULTI_LINE_STYLE)) return (new ToStringBuilder(this, ToStringStyle.MULTI_LINE_STYLE))
/* 268 */ .append("id", getId()) .append("id", getId())
/* 269 */ .append("ownerId", getOwnerId()) .append("ownerId", getOwnerId())
/* 270 */ .append("ownerType", getOwnerType()) .append("ownerType", getOwnerType())
/* 271 */ .append("archiveTypeId", getArchiveTypeId()) .append("archiveTypeId", getArchiveTypeId())
/* 272 */ .append("archiveTypeName", getArchiveTypeName()) .append("archiveTypeName", getArchiveTypeName())
/* 273 */ .append("archiveTableId", getArchiveTableId()) .append("archiveTableId", getArchiveTableId())
/* 274 */ .append("archiveId", getArchiveId()) .append("archiveId", getArchiveId())
/* 275 */ .append("dh", getDh()) .append("dh", getDh())
/* 276 */ .append("tm", getTm()) .append("tm", getTm())
/* 277 */ .append("zrz", getZrz()) .append("zrz", getZrz())
/* 278 */ .append("nd", getNd()) .append("nd", getNd())
/* 279 */ .append("qzh", getQzh()) .append("qzh", getQzh())
/* 280 */ .append("bgqx", getBgqx()) .append("bgqx", getBgqx())
/* 281 */ .append("mj", getMj()) .append("mj", getMj())
/* 282 */ .append("kfqk", getKfqk()) .append("kfqk", getKfqk())
/* 283 */ .append("jdjg", getJdjg()) .append("jdjg", getJdjg())
/* 284 */ .append("jdyj", getJdyj()) .append("jdyj", getJdyj())
/* 285 */ .append("bz", getBz()) .append("bz", getBz())
/* 286 */ .append("rq", getRq()) .append("rq", getRq())
/* 287 */ .toString(); .toString();
/* */ } }
/* */ } }
/* Location: C:\Users\Administrator\Desktop\extracted.zip!\extracted\BOOT-INF\classes\com\archive\project\dazl\jdmx\domain\TJdTaskDetail.class /* Location: C:\Users\Administrator\Desktop\extracted.zip!\extracted\BOOT-INF\classes\com\archive\project\dazl\jdmx\domain\TJdTaskDetail.class

@ -1,186 +1,186 @@
/* */ package com.archive.project.dazl.jdmx.service.impl package com.archive.project.dazl.jdmx.service.impl
; ;
/* */
/* */ import com.archive.common.utils.text.Convert; import com.archive.common.utils.text.Convert;
/* */ import com.archive.project.common.service.IExecuteSqlService; import com.archive.project.common.service.IExecuteSqlService;
/* */ import com.archive.project.dazl.dajd.domain.TJdTask; import com.archive.project.dazl.dajd.domain.TJdTask;
/* */ import com.archive.project.dazl.dajd.service.ITJdTaskService; import com.archive.project.dazl.dajd.service.ITJdTaskService;
/* */ import com.archive.project.dazl.jdmx.domain.TJdTaskDetail; import com.archive.project.dazl.jdmx.domain.TJdTaskDetail;
/* */ import com.archive.project.dazl.jdmx.mapper.TJdTaskDetailMapper; import com.archive.project.dazl.jdmx.mapper.TJdTaskDetailMapper;
/* */ import com.archive.project.dazl.jdmx.service.ITJdTaskDetailService; import com.archive.project.dazl.jdmx.service.ITJdTaskDetailService;
/* */ import java.util.LinkedHashMap; import java.util.LinkedHashMap;
/* */ import java.util.List; import java.util.List;
/* */ import org.springframework.beans.factory.annotation.Autowired; import org.springframework.beans.factory.annotation.Autowired;
/* */ import org.springframework.stereotype.Service; import org.springframework.stereotype.Service;
/* */
/* */
/* */
/* */
/* */
/* */
/* */
/* */
/* */
/* */
/* */
/* */
/* */
/* */
/* */
/* */
/* */
/* */
/* */
/* */
/* */
/* */ @Service @Service
/* */ public class TJdTaskDetailServiceImpl public class TJdTaskDetailServiceImpl
/* */ implements ITJdTaskDetailService implements ITJdTaskDetailService
/* */ { {
/* */ @Autowired @Autowired
/* */ private TJdTaskDetailMapper tJdTaskDetailMapper; private TJdTaskDetailMapper tJdTaskDetailMapper;
/* */ @Autowired @Autowired
/* */ private IExecuteSqlService executeSqlService; private IExecuteSqlService executeSqlService;
/* */ @Autowired @Autowired
/* */ private ITJdTaskService jdTaskService; private ITJdTaskService jdTaskService;
/* */
/* */ public TJdTaskDetail selectTJdTaskDetailById(Long id) { public TJdTaskDetail selectTJdTaskDetailById(Long id) {
/* 47 */ return this.tJdTaskDetailMapper.selectTJdTaskDetailById(id); return this.tJdTaskDetailMapper.selectTJdTaskDetailById(id);
/* */ } }
/* */
/* */
/* */
/* */
/* */
/* */
/* */
/* */
/* */
/* */ public List<TJdTaskDetail> selectTJdTaskDetailList(TJdTaskDetail tJdTaskDetail) { public List<TJdTaskDetail> selectTJdTaskDetailList(TJdTaskDetail tJdTaskDetail) {
/* 59 */ return this.tJdTaskDetailMapper.selectTJdTaskDetailList(tJdTaskDetail); return this.tJdTaskDetailMapper.selectTJdTaskDetailList(tJdTaskDetail);
/* */ } }
/* */
/* */
/* */
/* */
/* */
/* */
/* */
/* */
/* */
/* */ public int insertTJdTaskDetail(TJdTaskDetail tJdTaskDetail) { public int insertTJdTaskDetail(TJdTaskDetail tJdTaskDetail) {
/* 71 */ return this.tJdTaskDetailMapper.insertTJdTaskDetail(tJdTaskDetail); return this.tJdTaskDetailMapper.insertTJdTaskDetail(tJdTaskDetail);
/* */ } }
/* */
/* */
/* */
/* */
/* */
/* */
/* */
/* */
/* */
/* */ public int updateTJdTaskDetail(TJdTaskDetail tJdTaskDetail) { public int updateTJdTaskDetail(TJdTaskDetail tJdTaskDetail) {
/* 83 */ return this.tJdTaskDetailMapper.updateTJdTaskDetail(tJdTaskDetail); return this.tJdTaskDetailMapper.updateTJdTaskDetail(tJdTaskDetail);
/* */ } }
/* */
/* */
/* */
/* */
/* */
/* */
/* */
/* */
/* */
/* */ public int deleteTJdTaskDetailByIds(String ids) { public int deleteTJdTaskDetailByIds(String ids) {
/* 95 */ return this.tJdTaskDetailMapper.deleteTJdTaskDetailByIds(Convert.toStrArray(ids)); return this.tJdTaskDetailMapper.deleteTJdTaskDetailByIds(Convert.toStrArray(ids));
/* */ } }
/* */
/* */
/* */
/* */
/* */
/* */
/* */
/* */
/* */
/* */ public int deleteTJdTaskDetailById(Long id) { public int deleteTJdTaskDetailById(Long id) {
/* 107 */ return this.tJdTaskDetailMapper.deleteTJdTaskDetailById(id); return this.tJdTaskDetailMapper.deleteTJdTaskDetailById(id);
/* */ } }
/* */
/* */
/* */
/* */
/* */
/* */
/* */
/* */
/* */ public boolean saveJdDetail(String ownerId, String ids) { public boolean saveJdDetail(String ownerId, String ids) {
/* 118 */ boolean res = false; boolean res = false;
/* */ try { try {
/* 120 */ String[] sttr = ids.split(","); String[] sttr = ids.split(",");
/* 121 */ for (int i = 0; i < sttr.length; i++) { for (int i = 0; i < sttr.length; i++) {
/* 122 */ String[] idcode = sttr[i].split("-"); String[] idcode = sttr[i].split("-");
/* 123 */ String archiveId = idcode[0]; String archiveId = idcode[0];
/* 124 */ String tableId = idcode[1]; String tableId = idcode[1];
/* 125 */ String sql = "select qzh,dh,tm,ys,bgqx,zrz,archiveTypeId,archiveTypeName,kfkz,mj,rq,yearCode from t_ar_total where archiveId='" + archiveId + "' and tableId='" + tableId + "'"; String sql = "select qzh,dh,tm,ys,bgqx,zrz,archiveTypeId,archiveTypeName,kfkz,mj,rq,yearCode from t_ar_total where archiveId='" + archiveId + "' and tableId='" + tableId + "'";
/* */
/* 127 */ List<LinkedHashMap<String, Object>> datalist = this.executeSqlService.queryList(sql); List<LinkedHashMap<String, Object>> datalist = this.executeSqlService.queryList(sql);
/* 128 */ if (datalist.size() > 0 && datalist.get(0) != null) { if (datalist.size() > 0 && datalist.get(0) != null) {
/* 129 */ TJdTaskDetail jdTaskDetail = new TJdTaskDetail(); TJdTaskDetail jdTaskDetail = new TJdTaskDetail();
/* 130 */ jdTaskDetail.setOwnerId(Long.valueOf(Long.parseLong(ownerId))); jdTaskDetail.setOwnerId(Long.valueOf(Long.parseLong(ownerId)));
/* 131 */ jdTaskDetail.setArchiveId(Long.valueOf(Long.parseLong(archiveId))); jdTaskDetail.setArchiveId(Long.valueOf(Long.parseLong(archiveId)));
/* 132 */ jdTaskDetail.setArchiveTableId(Long.valueOf(Long.parseLong(tableId))); jdTaskDetail.setArchiveTableId(Long.valueOf(Long.parseLong(tableId)));
/* */
/* 134 */ TJdTask jdTask = new TJdTask(); TJdTask jdTask = new TJdTask();
/* 135 */ jdTask.setId(Long.valueOf(Long.parseLong(ownerId))); jdTask.setId(Long.valueOf(Long.parseLong(ownerId)));
/* 136 */ List<TJdTask> jdTaskList = this.jdTaskService.selectTJdTaskList(jdTask); List<TJdTask> jdTaskList = this.jdTaskService.selectTJdTaskList(jdTask);
/* 137 */ if (jdTaskList != null && jdTaskList.size() > 0 && jdTaskList.get(0) != null) { if (jdTaskList != null && jdTaskList.size() > 0 && jdTaskList.get(0) != null) {
/* 138 */ jdTaskDetail.setOwnerType(((TJdTask)jdTaskList.get(0)).getTaskType()); jdTaskDetail.setOwnerType(((TJdTask)jdTaskList.get(0)).getTaskType());
/* */ } }
/* 140 */ String archiveTypeId = (((LinkedHashMap)datalist.get(0)).get("archiveTypeId") == null) ? "0" : ((LinkedHashMap)datalist.get(0)).get("archiveTypeId").toString(); String archiveTypeId = (((LinkedHashMap)datalist.get(0)).get("archiveTypeId") == null) ? "0" : ((LinkedHashMap)datalist.get(0)).get("archiveTypeId").toString();
/* 141 */ jdTaskDetail.setArchiveTypeId(Long.valueOf(Long.parseLong(archiveTypeId))); jdTaskDetail.setArchiveTypeId(Long.valueOf(Long.parseLong(archiveTypeId)));
/* 142 */ jdTaskDetail.setArchiveTypeName((((LinkedHashMap)datalist.get(0)).get("archiveTypeName") == null) ? "" : ((LinkedHashMap)datalist.get(0)).get("archiveTypeName").toString()); jdTaskDetail.setArchiveTypeName((((LinkedHashMap)datalist.get(0)).get("archiveTypeName") == null) ? "" : ((LinkedHashMap)datalist.get(0)).get("archiveTypeName").toString());
/* 143 */ jdTaskDetail.setZrz((((LinkedHashMap)datalist.get(0)).get("zrz") == null) ? "" : ((LinkedHashMap)datalist.get(0)).get("zrz").toString()); jdTaskDetail.setZrz((((LinkedHashMap)datalist.get(0)).get("zrz") == null) ? "" : ((LinkedHashMap)datalist.get(0)).get("zrz").toString());
/* 144 */ jdTaskDetail.setBgqx((((LinkedHashMap)datalist.get(0)).get("bgqx") == null) ? "" : ((LinkedHashMap)datalist.get(0)).get("bgqx").toString()); jdTaskDetail.setBgqx((((LinkedHashMap)datalist.get(0)).get("bgqx") == null) ? "" : ((LinkedHashMap)datalist.get(0)).get("bgqx").toString());
/* 145 */ jdTaskDetail.setDh((((LinkedHashMap)datalist.get(0)).get("dh") == null) ? "" : ((LinkedHashMap)datalist.get(0)).get("dh").toString()); jdTaskDetail.setDh((((LinkedHashMap)datalist.get(0)).get("dh") == null) ? "" : ((LinkedHashMap)datalist.get(0)).get("dh").toString());
/* 146 */ jdTaskDetail.setQzh((((LinkedHashMap)datalist.get(0)).get("qzh") == null) ? "" : ((LinkedHashMap)datalist.get(0)).get("qzh").toString()); jdTaskDetail.setQzh((((LinkedHashMap)datalist.get(0)).get("qzh") == null) ? "" : ((LinkedHashMap)datalist.get(0)).get("qzh").toString());
/* 147 */ jdTaskDetail.setKfqk((((LinkedHashMap)datalist.get(0)).get("kfkz") == null) ? "" : ((LinkedHashMap)datalist.get(0)).get("kfkz").toString()); jdTaskDetail.setKfqk((((LinkedHashMap)datalist.get(0)).get("kfkz") == null) ? "" : ((LinkedHashMap)datalist.get(0)).get("kfkz").toString());
/* 148 */ jdTaskDetail.setTm((((LinkedHashMap)datalist.get(0)).get("tm") == null) ? "" : ((LinkedHashMap)datalist.get(0)).get("tm").toString()); jdTaskDetail.setTm((((LinkedHashMap)datalist.get(0)).get("tm") == null) ? "" : ((LinkedHashMap)datalist.get(0)).get("tm").toString());
/* 149 */ jdTaskDetail.setMj((((LinkedHashMap)datalist.get(0)).get("mj") == null) ? "" : ((LinkedHashMap)datalist.get(0)).get("mj").toString()); jdTaskDetail.setMj((((LinkedHashMap)datalist.get(0)).get("mj") == null) ? "" : ((LinkedHashMap)datalist.get(0)).get("mj").toString());
/* 150 */ jdTaskDetail.setNd((((LinkedHashMap)datalist.get(0)).get("yearCode") == null) ? "" : ((LinkedHashMap)datalist.get(0)).get("yearCode").toString()); jdTaskDetail.setNd((((LinkedHashMap)datalist.get(0)).get("yearCode") == null) ? "" : ((LinkedHashMap)datalist.get(0)).get("yearCode").toString());
/* 151 */ jdTaskDetail.setRq((((LinkedHashMap)datalist.get(0)).get("rq") == null) ? "" : ((LinkedHashMap)datalist.get(0)).get("rq").toString()); jdTaskDetail.setRq((((LinkedHashMap)datalist.get(0)).get("rq") == null) ? "" : ((LinkedHashMap)datalist.get(0)).get("rq").toString());
/* 152 */ this.tJdTaskDetailMapper.insertTJdTaskDetail(jdTaskDetail); this.tJdTaskDetailMapper.insertTJdTaskDetail(jdTaskDetail);
/* */ } else { } else {
/* 154 */ System.out.println("没有查询到数据"); System.out.println("没有查询到数据");
/* */ } }
/* */ } }
/* 157 */ res = true; res = true;
/* 158 */ } catch (Exception ex) { } catch (Exception ex) {
/* 159 */ System.out.println("ERROR出现异常:" + ex.getMessage()); System.out.println("ERROR出现异常:" + ex.getMessage());
/* */ } }
/* 161 */ return res; return res;
/* */ } }
/* */
/* */
/* */
/* */
/* */
/* */
/* */
/* */
/* */ public boolean saveJdPljdDetail(String value, String ids) { public boolean saveJdPljdDetail(String value, String ids) {
/* 172 */ boolean res = false; boolean res = false;
/* 173 */ String[] idsttr = ids.split(","); String[] idsttr = ids.split(",");
/* 174 */ for (int i = 0; i < idsttr.length; i++) { for (int i = 0; i < idsttr.length; i++) {
/* 175 */ TJdTaskDetail jdTaskDetail = this.tJdTaskDetailMapper.selectTJdTaskDetailById(Long.valueOf(Long.parseLong(idsttr[i]))); TJdTaskDetail jdTaskDetail = this.tJdTaskDetailMapper.selectTJdTaskDetailById(Long.valueOf(Long.parseLong(idsttr[i])));
/* 176 */ jdTaskDetail.setJdjg(value); jdTaskDetail.setJdjg(value);
/* 177 */ this.tJdTaskDetailMapper.updateTJdTaskDetail(jdTaskDetail); this.tJdTaskDetailMapper.updateTJdTaskDetail(jdTaskDetail);
/* */ } }
/* 179 */ return res; return res;
/* */ } }
/* */ } }
/* Location: C:\Users\Administrator\Desktop\extracted.zip!\extracted\BOOT-INF\classes\com\archive\project\dazl\jdmx\service\impl\TJdTaskDetailServiceImpl.class /* Location: C:\Users\Administrator\Desktop\extracted.zip!\extracted\BOOT-INF\classes\com\archive\project\dazl\jdmx\service\impl\TJdTaskDetailServiceImpl.class

@ -1,132 +1,132 @@
/* */ package com.archive.project.dazl.wsnj.controller package 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;
/* */ import com.archive.framework.aspectj.lang.enums.BusinessType; import com.archive.framework.aspectj.lang.enums.BusinessType;
/* */ 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;
/* */ import com.archive.framework.web.page.TableDataInfo; import com.archive.framework.web.page.TableDataInfo;
/* */ import com.archive.project.dazl.wsnj.domain.TWsnj; import com.archive.project.dazl.wsnj.domain.TWsnj;
/* */ import com.archive.project.dazl.wsnj.service.ITWsnjService; import com.archive.project.dazl.wsnj.service.ITWsnjService;
/* */ import java.util.List; import java.util.List;
/* */ import org.apache.shiro.authz.annotation.RequiresPermissions; import org.apache.shiro.authz.annotation.RequiresPermissions;
/* */ import org.springframework.beans.factory.annotation.Autowired; import org.springframework.beans.factory.annotation.Autowired;
/* */ import org.springframework.stereotype.Controller; import org.springframework.stereotype.Controller;
/* */ import org.springframework.ui.ModelMap; import org.springframework.ui.ModelMap;
/* */ import org.springframework.web.bind.annotation.GetMapping; import org.springframework.web.bind.annotation.GetMapping;
/* */ import org.springframework.web.bind.annotation.PathVariable; import org.springframework.web.bind.annotation.PathVariable;
/* */ import org.springframework.web.bind.annotation.PostMapping; import org.springframework.web.bind.annotation.PostMapping;
/* */ import org.springframework.web.bind.annotation.RequestMapping; import org.springframework.web.bind.annotation.RequestMapping;
/* */ import org.springframework.web.bind.annotation.ResponseBody; import org.springframework.web.bind.annotation.ResponseBody;
/* */
/* */
/* */
/* */
/* */
/* */
/* */ @Controller @Controller
/* */ @RequestMapping({"/dazl/wsnj"}) @RequestMapping({"/dazl/wsnj"})
/* */ public class TWsnjController public class TWsnjController
/* */ extends BaseController extends BaseController
/* */ { {
/* 32 */ private String prefix = "dazl/wsnj"; private String prefix = "dazl/wsnj";
/* */
/* */ @Autowired @Autowired
/* */ private ITWsnjService tWsnjService; private ITWsnjService tWsnjService;
/* */
/* */
/* */ @RequiresPermissions({"dazl:wsnj:view"}) @RequiresPermissions({"dazl:wsnj:view"})
/* */ @GetMapping @GetMapping
/* */ public String wsnj() { public String wsnj() {
/* 41 */ return this.prefix + "/wsnj"; return this.prefix + "/wsnj";
/* */ } }
/* */
/* */
/* */
/* */
/* */
/* */ @RequiresPermissions({"dazl:wsnj:list"}) @RequiresPermissions({"dazl:wsnj:list"})
/* */ @PostMapping({"/list"}) @PostMapping({"/list"})
/* */ @ResponseBody @ResponseBody
/* */ public TableDataInfo list(TWsnj tWsnj) { public TableDataInfo list(TWsnj tWsnj) {
/* 52 */ startPage(); startPage();
/* 53 */ List<TWsnj> list = this.tWsnjService.selectTWsnjList(tWsnj); List<TWsnj> list = this.tWsnjService.selectTWsnjList(tWsnj);
/* 54 */ return getDataTable(list); return getDataTable(list);
/* */ } }
/* */
/* */
/* */
/* */
/* */
/* */ @RequiresPermissions({"dazl:wsnj:export"}) @RequiresPermissions({"dazl:wsnj:export"})
/* */ @Log(title = "年检通知", businessType = BusinessType.EXPORT) @Log(title = "年检通知", businessType = BusinessType.EXPORT)
/* */ @PostMapping({"/export"}) @PostMapping({"/export"})
/* */ @ResponseBody @ResponseBody
/* */ public AjaxResult export(TWsnj tWsnj) { public AjaxResult export(TWsnj tWsnj) {
/* 66 */ List<TWsnj> list = this.tWsnjService.selectTWsnjList(tWsnj); List<TWsnj> list = this.tWsnjService.selectTWsnjList(tWsnj);
/* 67 */ ExcelUtil<TWsnj> util = new ExcelUtil(TWsnj.class); ExcelUtil<TWsnj> util = new ExcelUtil(TWsnj.class);
/* 68 */ return util.exportExcel(list, "wsnj"); return util.exportExcel(list, "wsnj");
/* */ } }
/* */
/* */
/* */
/* */
/* */
/* */ @GetMapping({"/add"}) @GetMapping({"/add"})
/* */ public String add() { public String add() {
/* 77 */ return this.prefix + "/add"; return this.prefix + "/add";
/* */ } }
/* */
/* */
/* */
/* */
/* */
/* */ @RequiresPermissions({"dazl:wsnj:add"}) @RequiresPermissions({"dazl:wsnj:add"})
/* */ @Log(title = "年检通知", businessType = BusinessType.INSERT) @Log(title = "年检通知", businessType = BusinessType.INSERT)
/* */ @PostMapping({"/add"}) @PostMapping({"/add"})
/* */ @ResponseBody @ResponseBody
/* */ public AjaxResult addSave(TWsnj tWsnj) { public AjaxResult addSave(TWsnj tWsnj) {
/* 89 */ tWsnj.setXfzt("0"); tWsnj.setXfzt("0");
/* 90 */ return toAjax(this.tWsnjService.insertTWsnj(tWsnj)); return toAjax(this.tWsnjService.insertTWsnj(tWsnj));
/* */ } }
/* */
/* */
/* */
/* */
/* */
/* */ @GetMapping({"/edit/{id}"}) @GetMapping({"/edit/{id}"})
/* */ public String edit(@PathVariable("id") Long id, ModelMap mmap) { public String edit(@PathVariable("id") Long id, ModelMap mmap) {
/* 99 */ TWsnj tWsnj = this.tWsnjService.selectTWsnjById(id); TWsnj tWsnj = this.tWsnjService.selectTWsnjById(id);
/* 100 */ mmap.put("tWsnj", tWsnj); mmap.put("tWsnj", tWsnj);
/* 101 */ return this.prefix + "/edit"; return this.prefix + "/edit";
/* */ } }
/* */
/* */
/* */
/* */
/* */
/* */ @RequiresPermissions({"dazl:wsnj:edit"}) @RequiresPermissions({"dazl:wsnj:edit"})
/* */ @Log(title = "年检通知", businessType = BusinessType.UPDATE) @Log(title = "年检通知", businessType = BusinessType.UPDATE)
/* */ @PostMapping({"/edit"}) @PostMapping({"/edit"})
/* */ @ResponseBody @ResponseBody
/* */ public AjaxResult editSave(TWsnj tWsnj) { public AjaxResult editSave(TWsnj tWsnj) {
/* 113 */ return toAjax(this.tWsnjService.updateTWsnj(tWsnj)); return toAjax(this.tWsnjService.updateTWsnj(tWsnj));
/* */ } }
/* */
/* */
/* */
/* */
/* */
/* */ @RequiresPermissions({"dazl:wsnj:remove"}) @RequiresPermissions({"dazl:wsnj:remove"})
/* */ @Log(title = "年检通知", businessType = BusinessType.DELETE) @Log(title = "年检通知", businessType = BusinessType.DELETE)
/* */ @PostMapping({"/remove"}) @PostMapping({"/remove"})
/* */ @ResponseBody @ResponseBody
/* */ public AjaxResult remove(String ids) { public AjaxResult remove(String ids) {
/* 125 */ return toAjax(this.tWsnjService.deleteTWsnjByIds(ids)); return toAjax(this.tWsnjService.deleteTWsnjByIds(ids));
/* */ } }
/* */ } }
/* Location: C:\Users\Administrator\Desktop\extracted.zip!\extracted\BOOT-INF\classes\com\archive\project\dazl\wsnj\controller\TWsnjController.class /* Location: C:\Users\Administrator\Desktop\extracted.zip!\extracted\BOOT-INF\classes\com\archive\project\dazl\wsnj\controller\TWsnjController.class

@ -1,140 +1,140 @@
/* */ package com.archive.project.dazl.wsnj.domain package 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;
/* */ import org.apache.commons.lang3.builder.ToStringBuilder; import org.apache.commons.lang3.builder.ToStringBuilder;
/* */ import org.apache.commons.lang3.builder.ToStringStyle; import org.apache.commons.lang3.builder.ToStringStyle;
/* */
/* */
/* */
/* */
/* */
/* */
/* */
/* */
/* */
/* */
/* */
/* */
/* */
/* */
/* */
/* */
/* */
/* */
/* */
/* */
/* */
/* */
/* */
/* */ public class TWsnj public class TWsnj
/* */ extends BaseEntity extends BaseEntity
/* */ { {
/* */ private static final long serialVersionUID = 1L; private static final long serialVersionUID = 1L;
/* */ private Long id; private Long id;
/* */ @Excel(name = "年检名称") @Excel(name = "年检名称")
/* */ private String njmc; private String njmc;
/* */ @Excel(name = "通知内容") @Excel(name = "通知内容")
/* */ private String tznr; private String tznr;
/* */ @Excel(name = "年检时间") @Excel(name = "年检时间")
/* */ private String njsj; private String njsj;
/* */ @Excel(name = "下发单位") @Excel(name = "下发单位")
/* */ private String xfdw; private String xfdw;
/* */ @Excel(name = "创建单位") @Excel(name = "创建单位")
/* */ private String cjdw; private String cjdw;
/* */ @Excel(name = "下发状态") @Excel(name = "下发状态")
/* */ private String xfzt; private String xfzt;
/* */ @Excel(name = "备注") @Excel(name = "备注")
/* */ private String bz; private String bz;
/* */
/* */ public void setId(Long id) { public void setId(Long id) {
/* 51 */ this.id = id; this.id = id;
/* */ } }
/* */
/* */
/* */ public Long getId() { public Long getId() {
/* 56 */ return this.id; return this.id;
/* */ } }
/* */
/* */ public void setNjmc(String njmc) { public void setNjmc(String njmc) {
/* 60 */ this.njmc = njmc; this.njmc = njmc;
/* */ } }
/* */
/* */
/* */ public String getNjmc() { public String getNjmc() {
/* 65 */ return this.njmc; return this.njmc;
/* */ } }
/* */
/* */ public void setTznr(String tznr) { public void setTznr(String tznr) {
/* 69 */ this.tznr = tznr; this.tznr = tznr;
/* */ } }
/* */
/* */
/* */ public String getTznr() { public String getTznr() {
/* 74 */ return this.tznr; return this.tznr;
/* */ } }
/* */
/* */ public void setNjsj(String njsj) { public void setNjsj(String njsj) {
/* 78 */ this.njsj = njsj; this.njsj = njsj;
/* */ } }
/* */
/* */
/* */ public String getNjsj() { public String getNjsj() {
/* 83 */ return this.njsj; return this.njsj;
/* */ } }
/* */
/* */ public void setXfdw(String xfdw) { public void setXfdw(String xfdw) {
/* 87 */ this.xfdw = xfdw; this.xfdw = xfdw;
/* */ } }
/* */
/* */
/* */ public String getXfdw() { public String getXfdw() {
/* 92 */ return this.xfdw; return this.xfdw;
/* */ } }
/* */
/* */ public void setCjdw(String cjdw) { public void setCjdw(String cjdw) {
/* 96 */ this.cjdw = cjdw; this.cjdw = cjdw;
/* */ } }
/* */
/* */
/* */ public String getCjdw() { public String getCjdw() {
/* 101 */ return this.cjdw; return this.cjdw;
/* */ } }
/* */
/* */ public void setXfzt(String xfzt) { public void setXfzt(String xfzt) {
/* 105 */ this.xfzt = xfzt; this.xfzt = xfzt;
/* */ } }
/* */
/* */
/* */ public String getXfzt() { public String getXfzt() {
/* 110 */ return this.xfzt; return this.xfzt;
/* */ } }
/* */
/* */ public void setBz(String bz) { public void setBz(String bz) {
/* 114 */ this.bz = bz; this.bz = bz;
/* */ } }
/* */
/* */
/* */ public String getBz() { public String getBz() {
/* 119 */ return this.bz; return this.bz;
/* */ } }
/* */
/* */
/* */ public String toString() { public String toString() {
/* 124 */ return (new ToStringBuilder(this, ToStringStyle.MULTI_LINE_STYLE)) return (new ToStringBuilder(this, ToStringStyle.MULTI_LINE_STYLE))
/* 125 */ .append("id", getId()) .append("id", getId())
/* 126 */ .append("njmc", getNjmc()) .append("njmc", getNjmc())
/* 127 */ .append("tznr", getTznr()) .append("tznr", getTznr())
/* 128 */ .append("njsj", getNjsj()) .append("njsj", getNjsj())
/* 129 */ .append("xfdw", getXfdw()) .append("xfdw", getXfdw())
/* 130 */ .append("cjdw", getCjdw()) .append("cjdw", getCjdw())
/* 131 */ .append("xfzt", getXfzt()) .append("xfzt", getXfzt())
/* 132 */ .append("bz", getBz()) .append("bz", getBz())
/* 133 */ .toString(); .toString();
/* */ } }
/* */ } }
/* Location: C:\Users\Administrator\Desktop\extracted.zip!\extracted\BOOT-INF\classes\com\archive\project\dazl\wsnj\domain\TWsnj.class /* Location: C:\Users\Administrator\Desktop\extracted.zip!\extracted\BOOT-INF\classes\com\archive\project\dazl\wsnj\domain\TWsnj.class

@ -1,99 +1,99 @@
/* */ package com.archive.project.dazl.wsnj.service.impl package com.archive.project.dazl.wsnj.service.impl
; ;
/* */
/* */ import com.archive.common.utils.text.Convert; import com.archive.common.utils.text.Convert;
/* */ import com.archive.project.dazl.wsnj.domain.TWsnj; import com.archive.project.dazl.wsnj.domain.TWsnj;
/* */ import com.archive.project.dazl.wsnj.mapper.TWsnjMapper; import com.archive.project.dazl.wsnj.mapper.TWsnjMapper;
/* */ import com.archive.project.dazl.wsnj.service.ITWsnjService; import com.archive.project.dazl.wsnj.service.ITWsnjService;
/* */ import java.util.List; import java.util.List;
/* */ import org.springframework.beans.factory.annotation.Autowired; import org.springframework.beans.factory.annotation.Autowired;
/* */ import org.springframework.stereotype.Service; import org.springframework.stereotype.Service;
/* */
/* */
/* */
/* */
/* */
/* */
/* */
/* */
/* */
/* */
/* */
/* */
/* */
/* */
/* */ @Service @Service
/* */ public class TWsnjServiceImpl public class TWsnjServiceImpl
/* */ implements ITWsnjService implements ITWsnjService
/* */ { {
/* */ @Autowired @Autowired
/* */ private TWsnjMapper tWsnjMapper; private TWsnjMapper tWsnjMapper;
/* */
/* */ public TWsnj selectTWsnjById(Long id) { public TWsnj selectTWsnjById(Long id) {
/* 32 */ return this.tWsnjMapper.selectTWsnjById(id); return this.tWsnjMapper.selectTWsnjById(id);
/* */ } }
/* */
/* */
/* */
/* */
/* */
/* */
/* */
/* */
/* */
/* */ public List<TWsnj> selectTWsnjList(TWsnj tWsnj) { public List<TWsnj> selectTWsnjList(TWsnj tWsnj) {
/* 44 */ return this.tWsnjMapper.selectTWsnjList(tWsnj); return this.tWsnjMapper.selectTWsnjList(tWsnj);
/* */ } }
/* */
/* */
/* */
/* */
/* */
/* */
/* */
/* */
/* */
/* */ public int insertTWsnj(TWsnj tWsnj) { public int insertTWsnj(TWsnj tWsnj) {
/* 56 */ return this.tWsnjMapper.insertTWsnj(tWsnj); return this.tWsnjMapper.insertTWsnj(tWsnj);
/* */ } }
/* */
/* */
/* */
/* */
/* */
/* */
/* */
/* */
/* */
/* */ public int updateTWsnj(TWsnj tWsnj) { public int updateTWsnj(TWsnj tWsnj) {
/* 68 */ return this.tWsnjMapper.updateTWsnj(tWsnj); return this.tWsnjMapper.updateTWsnj(tWsnj);
/* */ } }
/* */
/* */
/* */
/* */
/* */
/* */
/* */
/* */
/* */
/* */ public int deleteTWsnjByIds(String ids) { public int deleteTWsnjByIds(String ids) {
/* 80 */ return this.tWsnjMapper.deleteTWsnjByIds(Convert.toStrArray(ids)); return this.tWsnjMapper.deleteTWsnjByIds(Convert.toStrArray(ids));
/* */ } }
/* */
/* */
/* */
/* */
/* */
/* */
/* */
/* */
/* */
/* */ public int deleteTWsnjById(Long id) { public int deleteTWsnjById(Long id) {
/* 92 */ return this.tWsnjMapper.deleteTWsnjById(id); return this.tWsnjMapper.deleteTWsnjById(id);
/* */ } }
/* */ } }
/* Location: C:\Users\Administrator\Desktop\extracted.zip!\extracted\BOOT-INF\classes\com\archive\project\dazl\wsnj\service\impl\TWsnjServiceImpl.class /* Location: C:\Users\Administrator\Desktop\extracted.zip!\extracted\BOOT-INF\classes\com\archive\project\dazl\wsnj\service\impl\TWsnjServiceImpl.class

@ -1,169 +1,169 @@
/* */ package com.archive.project.jyly.borrow.controller package com.archive.project.jyly.borrow.controller
; ;
/* */
/* */ import com.archive.common.utils.poi.ExcelUtil; import com.archive.common.utils.poi.ExcelUtil;
/* */ import com.archive.common.utils.security.ShiroUtils; import com.archive.common.utils.security.ShiroUtils;
/* */ 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;
/* */ 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;
/* */ import com.archive.framework.web.page.TableDataInfo; import com.archive.framework.web.page.TableDataInfo;
/* */ import com.archive.project.jyly.borrow.domain.TArchiveBorrow; import com.archive.project.jyly.borrow.domain.TArchiveBorrow;
/* */ import com.archive.project.jyly.borrow.service.ITArchiveBorrowService; import com.archive.project.jyly.borrow.service.ITArchiveBorrowService;
/* */ import com.archive.project.system.user.domain.User; import com.archive.project.system.user.domain.User;
/* */ import java.text.SimpleDateFormat; import java.text.SimpleDateFormat;
/* */ import java.util.Date; import java.util.Date;
/* */ import java.util.List; import java.util.List;
/* */ import org.apache.shiro.authz.annotation.RequiresPermissions; import org.apache.shiro.authz.annotation.RequiresPermissions;
/* */ import org.springframework.beans.factory.annotation.Autowired; import org.springframework.beans.factory.annotation.Autowired;
/* */ import org.springframework.stereotype.Controller; import org.springframework.stereotype.Controller;
/* */ import org.springframework.ui.ModelMap; import org.springframework.ui.ModelMap;
/* */ import org.springframework.web.bind.annotation.GetMapping; import org.springframework.web.bind.annotation.GetMapping;
/* */ import org.springframework.web.bind.annotation.PathVariable; import org.springframework.web.bind.annotation.PathVariable;
/* */ import org.springframework.web.bind.annotation.PostMapping; import org.springframework.web.bind.annotation.PostMapping;
/* */ import org.springframework.web.bind.annotation.RequestMapping; import org.springframework.web.bind.annotation.RequestMapping;
/* */ import org.springframework.web.bind.annotation.ResponseBody; import org.springframework.web.bind.annotation.ResponseBody;
/* */
/* */
/* */
/* */
/* */
/* */
/* */
/* */
/* */
/* */
/* */
/* */
/* */
/* */
/* */ @Controller @Controller
/* */ @RequestMapping({"/jyly/borrow"}) @RequestMapping({"/jyly/borrow"})
/* */ public class TArchiveBorrowController public class TArchiveBorrowController
/* */ extends BaseController extends BaseController
/* */ { {
/* 44 */ private String prefix = "jyly/borrow"; private String prefix = "jyly/borrow";
/* */
/* */ @Autowired @Autowired
/* */ private ITArchiveBorrowService tArchiveBorrowService; private ITArchiveBorrowService tArchiveBorrowService;
/* */
/* */
/* */ @RequiresPermissions({"jyly:borrow:view"}) @RequiresPermissions({"jyly:borrow:view"})
/* */ @GetMapping @GetMapping
/* */ public String borrow() { public String borrow() {
/* 53 */ return this.prefix + "/borrow"; return this.prefix + "/borrow";
/* */ } }
/* */
/* */
/* */
/* */
/* */
/* */ @RequiresPermissions({"jyly:borrow:list"}) @RequiresPermissions({"jyly:borrow:list"})
/* */ @PostMapping({"/list"}) @PostMapping({"/list"})
/* */ @ResponseBody @ResponseBody
/* */ public TableDataInfo list(TArchiveBorrow tArchiveBorrow) { public TableDataInfo list(TArchiveBorrow tArchiveBorrow) {
/* 64 */ startPage(); startPage();
/* 65 */ List<TArchiveBorrow> list = this.tArchiveBorrowService.selectTArchiveBorrowList(tArchiveBorrow); List<TArchiveBorrow> list = this.tArchiveBorrowService.selectTArchiveBorrowList(tArchiveBorrow);
/* 66 */ return getDataTable(list); return getDataTable(list);
/* */ } }
/* */
/* */
/* */
/* */
/* */
/* */ @RequiresPermissions({"jyly:borrow:export"}) @RequiresPermissions({"jyly:borrow:export"})
/* */ @Log(title = "档案借阅登记", businessType = BusinessType.EXPORT) @Log(title = "档案借阅登记", businessType = BusinessType.EXPORT)
/* */ @PostMapping({"/export"}) @PostMapping({"/export"})
/* */ @ResponseBody @ResponseBody
/* */ public AjaxResult export(TArchiveBorrow tArchiveBorrow) { public AjaxResult export(TArchiveBorrow tArchiveBorrow) {
/* 78 */ List<TArchiveBorrow> list = this.tArchiveBorrowService.selectTArchiveBorrowList(tArchiveBorrow); List<TArchiveBorrow> list = this.tArchiveBorrowService.selectTArchiveBorrowList(tArchiveBorrow);
/* 79 */ ExcelUtil<TArchiveBorrow> util = new ExcelUtil(TArchiveBorrow.class); ExcelUtil<TArchiveBorrow> util = new ExcelUtil(TArchiveBorrow.class);
/* 80 */ return util.exportExcel(list, "borrow"); return util.exportExcel(list, "borrow");
/* */ } }
/* */
/* */
/* */
/* */
/* */
/* */ @GetMapping({"/add"}) @GetMapping({"/add"})
/* */ public String add(ModelMap mmap) { public String add(ModelMap mmap) {
/* 89 */ Date date = new Date(); Date date = new Date();
/* 90 */ SimpleDateFormat formatter = new SimpleDateFormat("yyyyMMdd"); SimpleDateFormat formatter = new SimpleDateFormat("yyyyMMdd");
/* 91 */ String data = formatter.format(date); String data = formatter.format(date);
/* 92 */ int in = (int)(Math.random() * 900.0D) + 100; int in = (int)(Math.random() * 900.0D) + 100;
/* 93 */ String borrowId = "JY" + data + in; String borrowId = "JY" + data + in;
/* */
/* 95 */ mmap.put("batchNo", borrowId); mmap.put("batchNo", borrowId);
/* 96 */ return this.prefix + "/add"; return this.prefix + "/add";
/* */ } }
/* */
/* */
/* */
/* */
/* */
/* */
/* */ @RequiresPermissions({"jyly:borrow:add"}) @RequiresPermissions({"jyly:borrow:add"})
/* */ @Log(title = "档案借阅登记", businessType = BusinessType.INSERT) @Log(title = "档案借阅登记", businessType = BusinessType.INSERT)
/* */ @PostMapping({"/add"}) @PostMapping({"/add"})
/* */ @ResponseBody @ResponseBody
/* */ public AjaxResult addSave(TArchiveBorrow tArchiveBorrow) { public AjaxResult addSave(TArchiveBorrow tArchiveBorrow) {
/* 109 */ User currentUser = ShiroUtils.getSysUser(); User currentUser = ShiroUtils.getSysUser();
/* 110 */ tArchiveBorrow.setRecordperson(currentUser.getUserName()); tArchiveBorrow.setRecordperson(currentUser.getUserName());
/* 111 */ return toAjax(this.tArchiveBorrowService.insertTArchiveBorrow(tArchiveBorrow)); return toAjax(this.tArchiveBorrowService.insertTArchiveBorrow(tArchiveBorrow));
/* */ } }
/* */
/* */
/* */
/* */
/* */
/* */ @GetMapping({"/edit/{id}"}) @GetMapping({"/edit/{id}"})
/* */ public String edit(@PathVariable("id") Long id, ModelMap mmap) { public String edit(@PathVariable("id") Long id, ModelMap mmap) {
/* 120 */ TArchiveBorrow tArchiveBorrow = this.tArchiveBorrowService.selectTArchiveBorrowById(id); TArchiveBorrow tArchiveBorrow = this.tArchiveBorrowService.selectTArchiveBorrowById(id);
/* 121 */ mmap.put("tArchiveBorrow", tArchiveBorrow); mmap.put("tArchiveBorrow", tArchiveBorrow);
/* 122 */ return this.prefix + "/edit"; return this.prefix + "/edit";
/* */ } }
/* */
/* */
/* */
/* */
/* */
/* */
/* */ @RequiresPermissions({"jyly:borrow:edit"}) @RequiresPermissions({"jyly:borrow:edit"})
/* */ @Log(title = "档案借阅登记", businessType = BusinessType.UPDATE) @Log(title = "档案借阅登记", businessType = BusinessType.UPDATE)
/* */ @PostMapping({"/edit"}) @PostMapping({"/edit"})
/* */ @ResponseBody @ResponseBody
/* */ public AjaxResult editSave(TArchiveBorrow tArchiveBorrow) { public AjaxResult editSave(TArchiveBorrow tArchiveBorrow) {
/* 135 */ if (tArchiveBorrow.getUsingEffect() != null) { if (tArchiveBorrow.getUsingEffect() != null) {
/* 136 */ tArchiveBorrow.setExborrowState("1"); tArchiveBorrow.setExborrowState("1");
/* */ } }
/* 138 */ return toAjax(this.tArchiveBorrowService.updateTArchiveBorrow(tArchiveBorrow)); return toAjax(this.tArchiveBorrowService.updateTArchiveBorrow(tArchiveBorrow));
/* */ } }
/* */
/* */
/* */
/* */
/* */
/* */ @RequiresPermissions({"jyly:borrow:remove"}) @RequiresPermissions({"jyly:borrow:remove"})
/* */ @Log(title = "档案借阅登记", businessType = BusinessType.DELETE) @Log(title = "档案借阅登记", businessType = BusinessType.DELETE)
/* */ @PostMapping({"/remove"}) @PostMapping({"/remove"})
/* */ @ResponseBody @ResponseBody
/* */ public AjaxResult remove(String ids) { public AjaxResult remove(String ids) {
/* 150 */ return toAjax(this.tArchiveBorrowService.deleteTArchiveBorrowByIds(ids)); return toAjax(this.tArchiveBorrowService.deleteTArchiveBorrowByIds(ids));
/* */ } }
/* */
/* */
/* */
/* */
/* */
/* */
/* */ @GetMapping({"/lywb/{id}"}) @GetMapping({"/lywb/{id}"})
/* */ public String lywb(@PathVariable("id") Long id, ModelMap mmap) { public String lywb(@PathVariable("id") Long id, ModelMap mmap) {
/* 160 */ TArchiveBorrow tArchiveBorrow = this.tArchiveBorrowService.selectTArchiveBorrowById(id); TArchiveBorrow tArchiveBorrow = this.tArchiveBorrowService.selectTArchiveBorrowById(id);
/* 161 */ mmap.put("tArchiveBorrow", tArchiveBorrow); mmap.put("tArchiveBorrow", tArchiveBorrow);
/* 162 */ return this.prefix + "/lywb"; return this.prefix + "/lywb";
/* */ } }
/* */ } }
/* Location: C:\Users\Administrator\Desktop\extracted.zip!\extracted\BOOT-INF\classes\com\archive\project\jyly\borrow\controller\TArchiveBorrowController.class /* Location: C:\Users\Administrator\Desktop\extracted.zip!\extracted\BOOT-INF\classes\com\archive\project\jyly\borrow\controller\TArchiveBorrowController.class

@ -1,114 +1,114 @@
/* */ package com.archive.project.jyly.borrow.service.impl package 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;
/* */ import com.archive.project.jyly.borrow.domain.TArchiveBorrow; import com.archive.project.jyly.borrow.domain.TArchiveBorrow;
/* */ import com.archive.project.jyly.borrow.mapper.TArchiveBorrowMapper; import com.archive.project.jyly.borrow.mapper.TArchiveBorrowMapper;
/* */ import com.archive.project.jyly.borrow.service.ITArchiveBorrowService; import com.archive.project.jyly.borrow.service.ITArchiveBorrowService;
/* */ import java.util.List; import java.util.List;
/* */ import org.springframework.beans.factory.annotation.Autowired; import org.springframework.beans.factory.annotation.Autowired;
/* */ import org.springframework.stereotype.Service; import org.springframework.stereotype.Service;
/* */
/* */
/* */
/* */
/* */
/* */
/* */
/* */
/* */
/* */
/* */
/* */
/* */
/* */
/* */
/* */
/* */
/* */
/* */ @Service @Service
/* */ public class TArchiveBorrowServiceImpl public class TArchiveBorrowServiceImpl
/* */ implements ITArchiveBorrowService implements ITArchiveBorrowService
/* */ { {
/* */ @Autowired @Autowired
/* */ private TArchiveBorrowMapper tArchiveBorrowMapper; private TArchiveBorrowMapper tArchiveBorrowMapper;
/* */ @Autowired @Autowired
/* */ private ArchiveConfig archiveConfig; private ArchiveConfig archiveConfig;
/* */
/* */ public TArchiveBorrow selectTArchiveBorrowById(Long id) { public TArchiveBorrow selectTArchiveBorrowById(Long id) {
/* 39 */ return this.tArchiveBorrowMapper.selectTArchiveBorrowById(id); return this.tArchiveBorrowMapper.selectTArchiveBorrowById(id);
/* */ } }
/* */
/* */
/* */
/* */
/* */
/* */
/* */
/* */
/* */
/* */ public List<TArchiveBorrow> selectTArchiveBorrowList(TArchiveBorrow tArchiveBorrow) { public List<TArchiveBorrow> selectTArchiveBorrowList(TArchiveBorrow tArchiveBorrow) {
/* 51 */ if ("mysql".equals(this.archiveConfig.getDatabaseType())) { if ("mysql".equals(this.archiveConfig.getDatabaseType())) {
/* 52 */ return this.tArchiveBorrowMapper.selectTArchiveBorrowList(tArchiveBorrow); return this.tArchiveBorrowMapper.selectTArchiveBorrowList(tArchiveBorrow);
/* */ } }
/* 54 */ if ("sqlite".equals(this.archiveConfig.getDatabaseType())) { if ("sqlite".equals(this.archiveConfig.getDatabaseType())) {
/* 55 */ return this.tArchiveBorrowMapper.selectTArchiveBorrowListSqlite(tArchiveBorrow); return this.tArchiveBorrowMapper.selectTArchiveBorrowListSqlite(tArchiveBorrow);
/* */ } }
/* 57 */ return this.tArchiveBorrowMapper.selectTArchiveBorrowList(tArchiveBorrow); return this.tArchiveBorrowMapper.selectTArchiveBorrowList(tArchiveBorrow);
/* */ } }
/* */
/* */
/* */
/* */
/* */
/* */
/* */
/* */
/* */
/* */
/* */
/* */ public int insertTArchiveBorrow(TArchiveBorrow tArchiveBorrow) { public int insertTArchiveBorrow(TArchiveBorrow tArchiveBorrow) {
/* 71 */ return this.tArchiveBorrowMapper.insertTArchiveBorrow(tArchiveBorrow); return this.tArchiveBorrowMapper.insertTArchiveBorrow(tArchiveBorrow);
/* */ } }
/* */
/* */
/* */
/* */
/* */
/* */
/* */
/* */
/* */
/* */ public int updateTArchiveBorrow(TArchiveBorrow tArchiveBorrow) { public int updateTArchiveBorrow(TArchiveBorrow tArchiveBorrow) {
/* 83 */ return this.tArchiveBorrowMapper.updateTArchiveBorrow(tArchiveBorrow); return this.tArchiveBorrowMapper.updateTArchiveBorrow(tArchiveBorrow);
/* */ } }
/* */
/* */
/* */
/* */
/* */
/* */
/* */
/* */
/* */
/* */ public int deleteTArchiveBorrowByIds(String ids) { public int deleteTArchiveBorrowByIds(String ids) {
/* 95 */ return this.tArchiveBorrowMapper.deleteTArchiveBorrowByIds(Convert.toStrArray(ids)); return this.tArchiveBorrowMapper.deleteTArchiveBorrowByIds(Convert.toStrArray(ids));
/* */ } }
/* */
/* */
/* */
/* */
/* */
/* */
/* */
/* */
/* */
/* */ public int deleteTArchiveBorrowById(Long id) { public int deleteTArchiveBorrowById(Long id) {
/* 107 */ return this.tArchiveBorrowMapper.deleteTArchiveBorrowById(id); return this.tArchiveBorrowMapper.deleteTArchiveBorrowById(id);
/* */ } }
/* */ } }
/* Location: C:\Users\Administrator\Desktop\extracted.zip!\extracted\BOOT-INF\classes\com\archive\project\jyly\borrow\service\impl\TArchiveBorrowServiceImpl.class /* Location: C:\Users\Administrator\Desktop\extracted.zip!\extracted\BOOT-INF\classes\com\archive\project\jyly\borrow\service\impl\TArchiveBorrowServiceImpl.class

@ -1,163 +1,163 @@
/* */ package com.archive.project.jyly.detail.controller; package com.archive.project.jyly.detail.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;
/* */ import com.archive.framework.aspectj.lang.enums.BusinessType; import com.archive.framework.aspectj.lang.enums.BusinessType;
/* */ 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;
/* */ import com.archive.framework.web.page.TableDataInfo; import com.archive.framework.web.page.TableDataInfo;
/* */ import com.archive.project.jyly.borrow.domain.TArchiveBorrow; import com.archive.project.jyly.borrow.domain.TArchiveBorrow;
/* */ import com.archive.project.jyly.borrow.service.ITArchiveBorrowService; import com.archive.project.jyly.borrow.service.ITArchiveBorrowService;
/* */ import com.archive.project.jyly.detail.domain.TArchiveBorrowDetail; import com.archive.project.jyly.detail.domain.TArchiveBorrowDetail;
/* */ import com.archive.project.jyly.detail.service.ITArchiveBorrowDetailService; import com.archive.project.jyly.detail.service.ITArchiveBorrowDetailService;
/* */ import java.util.List; import java.util.List;
/* */ import org.apache.shiro.authz.annotation.RequiresPermissions; import org.apache.shiro.authz.annotation.RequiresPermissions;
/* */ import org.springframework.beans.factory.annotation.Autowired; import org.springframework.beans.factory.annotation.Autowired;
/* */ import org.springframework.stereotype.Controller; import org.springframework.stereotype.Controller;
/* */ import org.springframework.ui.ModelMap; import org.springframework.ui.ModelMap;
/* */ import org.springframework.validation.annotation.Validated; import org.springframework.validation.annotation.Validated;
/* */ import org.springframework.web.bind.annotation.GetMapping; import org.springframework.web.bind.annotation.GetMapping;
/* */ import org.springframework.web.bind.annotation.PathVariable; import org.springframework.web.bind.annotation.PathVariable;
/* */ import org.springframework.web.bind.annotation.PostMapping; import org.springframework.web.bind.annotation.PostMapping;
/* */ import org.springframework.web.bind.annotation.RequestMapping; import org.springframework.web.bind.annotation.RequestMapping;
/* */ import org.springframework.web.bind.annotation.ResponseBody; import org.springframework.web.bind.annotation.ResponseBody;
/* */
/* */
/* */
/* */
/* */
/* */
/* */
/* */ @Controller @Controller
/* */ @RequestMapping({"/jyly/detail"}) @RequestMapping({"/jyly/detail"})
/* */ public class TArchiveBorrowDetailController public class TArchiveBorrowDetailController
/* */ extends BaseController extends BaseController
/* */ { {
/* 36 */ private String prefix = "jyly/detail"; private String prefix = "jyly/detail";
/* */
/* */ @Autowired @Autowired
/* */ private ITArchiveBorrowDetailService tArchiveBorrowDetailService; private ITArchiveBorrowDetailService tArchiveBorrowDetailService;
/* */
/* */ @Autowired @Autowired
/* */ private ITArchiveBorrowService archiveBorrowService; private ITArchiveBorrowService archiveBorrowService;
/* */
/* */
/* */ @RequiresPermissions({"jyly:detail:view"}) @RequiresPermissions({"jyly:detail:view"})
/* */ @GetMapping({"/{ownerid}"}) @GetMapping({"/{ownerid}"})
/* */ public String detail(@PathVariable("ownerid") Long ownerid, ModelMap mmap) { public String detail(@PathVariable("ownerid") Long ownerid, ModelMap mmap) {
/* 48 */ TArchiveBorrow archiveBorrow = this.archiveBorrowService.selectTArchiveBorrowById(ownerid); TArchiveBorrow archiveBorrow = this.archiveBorrowService.selectTArchiveBorrowById(ownerid);
/* 49 */ mmap.put("ownerId", String.valueOf(ownerid)); mmap.put("ownerId", String.valueOf(ownerid));
/* 50 */ mmap.put("exborrowState", archiveBorrow.getExborrowState()); mmap.put("exborrowState", archiveBorrow.getExborrowState());
/* 51 */ return this.prefix + "/detail"; return this.prefix + "/detail";
/* */ } }
/* */
/* */
/* */
/* */
/* */
/* */ @RequiresPermissions({"jyly:detail:list"}) @RequiresPermissions({"jyly:detail:list"})
/* */ @PostMapping({"/list/{ownerId}"}) @PostMapping({"/list/{ownerId}"})
/* */ @ResponseBody @ResponseBody
/* */ public TableDataInfo list(@PathVariable("ownerId") Long ownerId, TArchiveBorrowDetail tArchiveBorrowDetail) { public TableDataInfo list(@PathVariable("ownerId") Long ownerId, TArchiveBorrowDetail tArchiveBorrowDetail) {
/* 62 */ startPage(); startPage();
/* 63 */ tArchiveBorrowDetail.setOwnerId(ownerId); tArchiveBorrowDetail.setOwnerId(ownerId);
/* 64 */ List<TArchiveBorrowDetail> list = this.tArchiveBorrowDetailService.selectTArchiveBorrowDetailList(tArchiveBorrowDetail); List<TArchiveBorrowDetail> list = this.tArchiveBorrowDetailService.selectTArchiveBorrowDetailList(tArchiveBorrowDetail);
/* 65 */ return getDataTable(list); return getDataTable(list);
/* */ } }
/* */
/* */
/* */
/* */
/* */
/* */ @RequiresPermissions({"jyly:detail:export"}) @RequiresPermissions({"jyly:detail:export"})
/* */ @Log(title = "档案借阅登记明细导出", businessType = BusinessType.EXPORT) @Log(title = "档案借阅登记明细导出", businessType = BusinessType.EXPORT)
/* */ @PostMapping({"/export"}) @PostMapping({"/export"})
/* */ @ResponseBody @ResponseBody
/* */ public AjaxResult export(TArchiveBorrowDetail tArchiveBorrowDetail) { public AjaxResult export(TArchiveBorrowDetail tArchiveBorrowDetail) {
/* 77 */ List<TArchiveBorrowDetail> list = this.tArchiveBorrowDetailService.selectTArchiveBorrowDetailList(tArchiveBorrowDetail); List<TArchiveBorrowDetail> list = this.tArchiveBorrowDetailService.selectTArchiveBorrowDetailList(tArchiveBorrowDetail);
/* 78 */ ExcelUtil<TArchiveBorrowDetail> util = new ExcelUtil(TArchiveBorrowDetail.class); ExcelUtil<TArchiveBorrowDetail> util = new ExcelUtil(TArchiveBorrowDetail.class);
/* 79 */ return util.exportExcel(list, "detail"); return util.exportExcel(list, "detail");
/* */ } }
/* */
/* */
/* */
/* */
/* */
/* */ @GetMapping({"/add/{ownerId}"}) @GetMapping({"/add/{ownerId}"})
/* */ public String add(@PathVariable("ownerId") Long ownerId, ModelMap mmap) { public String add(@PathVariable("ownerId") Long ownerId, ModelMap mmap) {
/* 88 */ mmap.put("ownerId", ownerId); mmap.put("ownerId", ownerId);
/* 89 */ return this.prefix + "/add"; return this.prefix + "/add";
/* */ } }
/* */
/* */
/* */
/* */
/* */
/* */ @RequiresPermissions({"jyly:detail:add"}) @RequiresPermissions({"jyly:detail:add"})
/* */ @Log(title = "档案借阅登记实体登记", businessType = BusinessType.INSERT) @Log(title = "档案借阅登记实体登记", businessType = BusinessType.INSERT)
/* */ @PostMapping({"/add"}) @PostMapping({"/add"})
/* */ @ResponseBody @ResponseBody
/* */ public AjaxResult addSave(TArchiveBorrowDetail tArchiveBorrowDetail) { public AjaxResult addSave(TArchiveBorrowDetail tArchiveBorrowDetail) {
/* 101 */ return toAjax(this.tArchiveBorrowDetailService.insertTArchiveBorrowDetail(tArchiveBorrowDetail)); return toAjax(this.tArchiveBorrowDetailService.insertTArchiveBorrowDetail(tArchiveBorrowDetail));
/* */ } }
/* */
/* */
/* */
/* */
/* */
/* */ @GetMapping({"/edit/{id}"}) @GetMapping({"/edit/{id}"})
/* */ public String edit(@PathVariable("id") Long id, ModelMap mmap) { public String edit(@PathVariable("id") Long id, ModelMap mmap) {
/* 110 */ TArchiveBorrowDetail tArchiveBorrowDetail = this.tArchiveBorrowDetailService.selectTArchiveBorrowDetailById(id); TArchiveBorrowDetail tArchiveBorrowDetail = this.tArchiveBorrowDetailService.selectTArchiveBorrowDetailById(id);
/* 111 */ mmap.put("tArchiveBorrowDetail", tArchiveBorrowDetail); mmap.put("tArchiveBorrowDetail", tArchiveBorrowDetail);
/* 112 */ return this.prefix + "/edit"; return this.prefix + "/edit";
/* */ } }
/* */
/* */
/* */
/* */
/* */
/* */ @RequiresPermissions({"jyly:detail:edit"}) @RequiresPermissions({"jyly:detail:edit"})
/* */ @Log(title = "档案借阅登记明细修改", businessType = BusinessType.UPDATE) @Log(title = "档案借阅登记明细修改", businessType = BusinessType.UPDATE)
/* */ @PostMapping({"/edit"}) @PostMapping({"/edit"})
/* */ @ResponseBody @ResponseBody
/* */ public AjaxResult editSave(TArchiveBorrowDetail tArchiveBorrowDetail) { public AjaxResult editSave(TArchiveBorrowDetail tArchiveBorrowDetail) {
/* 124 */ return toAjax(this.tArchiveBorrowDetailService.updateTArchiveBorrowDetail(tArchiveBorrowDetail)); return toAjax(this.tArchiveBorrowDetailService.updateTArchiveBorrowDetail(tArchiveBorrowDetail));
/* */ } }
/* */
/* */
/* */
/* */
/* */
/* */ @RequiresPermissions({"jyly:detail:remove"}) @RequiresPermissions({"jyly:detail:remove"})
/* */ @Log(title = "档案借阅登记明细删除", businessType = BusinessType.DELETE) @Log(title = "档案借阅登记明细删除", businessType = BusinessType.DELETE)
/* */ @PostMapping({"/remove"}) @PostMapping({"/remove"})
/* */ @ResponseBody @ResponseBody
/* */ public AjaxResult remove(String ids) { public AjaxResult remove(String ids) {
/* 136 */ return toAjax(this.tArchiveBorrowDetailService.deleteTArchiveBorrowDetailByIds(ids)); return toAjax(this.tArchiveBorrowDetailService.deleteTArchiveBorrowDetailByIds(ids));
/* */ } }
/* */
/* */
/* */
/* */
/* */
/* */
/* */ @GetMapping({"/borrowsearch/{ownerId}"}) @GetMapping({"/borrowsearch/{ownerId}"})
/* */ public String borrowsearch(@PathVariable("ownerId") Long ownerId, ModelMap mmap) { public String borrowsearch(@PathVariable("ownerId") Long ownerId, ModelMap mmap) {
/* 146 */ mmap.put("ownerId", ownerId); mmap.put("ownerId", ownerId);
/* 147 */ return this.prefix + "/borrowsearch"; return this.prefix + "/borrowsearch";
/* */ } }
/* */
/* */ @Log(title = "档案利用-明细调档保存", businessType = BusinessType.INSERT) @Log(title = "档案利用-明细调档保存", businessType = BusinessType.INSERT)
/* */ @PostMapping({"/saveBorrowDetail"}) @PostMapping({"/saveBorrowDetail"})
/* */ @ResponseBody @ResponseBody
/* */ public AjaxResult saveBorrowDetail(@Validated String ownerId, @Validated String ids) { public AjaxResult saveBorrowDetail(@Validated String ownerId, @Validated String ids) {
/* 154 */ boolean res = this.tArchiveBorrowDetailService.saveBorrowDetail(ownerId, ids); boolean res = this.tArchiveBorrowDetailService.saveBorrowDetail(ownerId, ids);
/* 155 */ if (res) { if (res) {
/* 156 */ return success(); return success();
/* */ } }
/* 158 */ return error(); return error();
/* */ } }
/* */ } }
/* Location: C:\Users\Administrator\Desktop\extracted.zip!\extracted\BOOT-INF\classes\com\archive\project\jyly\detail\controller\TArchiveBorrowDetailController.class /* Location: C:\Users\Administrator\Desktop\extracted.zip!\extracted\BOOT-INF\classes\com\archive\project\jyly\detail\controller\TArchiveBorrowDetailController.class

@ -1,366 +1,366 @@
/* */ package com.archive.project.jyly.detail.domain package 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;
/* */ import org.apache.commons.lang3.builder.ToStringBuilder; import org.apache.commons.lang3.builder.ToStringBuilder;
/* */ import org.apache.commons.lang3.builder.ToStringStyle; import org.apache.commons.lang3.builder.ToStringStyle;
/* */
/* */
/* */
/* */
/* */
/* */
/* */
/* */
/* */
/* */
/* */
/* */
/* */
/* */
/* */
/* */
/* */
/* */
/* */
/* */
/* */
/* */
/* */
/* */
/* */
/* */
/* */
/* */
/* */
/* */
/* */
/* */
/* */
/* */
/* */
/* */
/* */
/* */
/* */
/* */
/* */
/* */
/* */
/* */
/* */
/* */
/* */
/* */
/* */
/* */
/* */
/* */
/* */
/* */
/* */
/* */
/* */
/* */ public class TArchiveBorrowDetail public class TArchiveBorrowDetail
/* */ extends BaseEntity extends BaseEntity
/* */ { {
/* */ private static final long serialVersionUID = 1L; private static final long serialVersionUID = 1L;
/* */ private Long id; private Long id;
/* */ @Excel(name = "借阅单ID") @Excel(name = "借阅单ID")
/* */ private Long ownerId; private Long ownerId;
/* */ @Excel(name = "创建人") @Excel(name = "创建人")
/* */ private String createUser; private String createUser;
/* */ @Excel(name = "借阅状态") @Excel(name = "借阅状态")
/* */ private String status; private String status;
/* */ @Excel(name = "档号") @Excel(name = "档号")
/* */ private String dh; private String dh;
/* */ private String tableId; private String tableId;
/* */ private String tableName; private String tableName;
/* */ private Long archiveId; private Long archiveId;
/* */ @Excel(name = "全宗") @Excel(name = "全宗")
/* */ private String fondsCode; private String fondsCode;
/* */ @Excel(name = "题名") @Excel(name = "题名")
/* */ private String titleProper; private String titleProper;
/* */ @Excel(name = "页数") @Excel(name = "页数")
/* */ private Integer pageNumber; private Integer pageNumber;
/* */ @Excel(name = "保管期限") @Excel(name = "保管期限")
/* */ private String bgqx; private String bgqx;
/* */ @Excel(name = "电子全文数") @Excel(name = "电子全文数")
/* */ private Integer documentNumber; private Integer documentNumber;
/* */ private String isOpen; private String isOpen;
/* */ private String borrowType; private String borrowType;
/* */ private String showOrder; private String showOrder;
/* */ private String isOut; private String isOut;
/* */ @Excel(name = "责任者") @Excel(name = "责任者")
/* */ private String author; private String author;
/* */ private String copy; private String copy;
/* */ private String excerpt; private String excerpt;
/* */ private String shot; private String shot;
/* */ private String scan; private String scan;
/* */ private String printTime; private String printTime;
/* */ private String uploadTime; private String uploadTime;
/* */ private String flag1; private String flag1;
/* */
/* */ public void setId(Long id) { public void setId(Long id) {
/* 105 */ this.id = id; this.id = id;
/* */ } }
/* */
/* */
/* */ public Long getId() { public Long getId() {
/* 110 */ return this.id; return this.id;
/* */ } }
/* */
/* */ public void setOwnerId(Long ownerId) { public void setOwnerId(Long ownerId) {
/* 114 */ this.ownerId = ownerId; this.ownerId = ownerId;
/* */ } }
/* */
/* */
/* */ public Long getOwnerId() { public Long getOwnerId() {
/* 119 */ return this.ownerId; return this.ownerId;
/* */ } }
/* */
/* */ public void setCreateUser(String createUser) { public void setCreateUser(String createUser) {
/* 123 */ this.createUser = createUser; this.createUser = createUser;
/* */ } }
/* */
/* */
/* */ public String getCreateUser() { public String getCreateUser() {
/* 128 */ return this.createUser; return this.createUser;
/* */ } }
/* */
/* */ public void setStatus(String status) { public void setStatus(String status) {
/* 132 */ this.status = status; this.status = status;
/* */ } }
/* */
/* */
/* */ public String getStatus() { public String getStatus() {
/* 137 */ return this.status; return this.status;
/* */ } }
/* */
/* */ public void setDh(String dh) { public void setDh(String dh) {
/* 141 */ this.dh = dh; this.dh = dh;
/* */ } }
/* */
/* */
/* */ public String getDh() { public String getDh() {
/* 146 */ return this.dh; return this.dh;
/* */ } }
/* */
/* */ public void setTableId(String tableId) { public void setTableId(String tableId) {
/* 150 */ this.tableId = tableId; this.tableId = tableId;
/* */ } }
/* */
/* */
/* */ public String getTableId() { public String getTableId() {
/* 155 */ return this.tableId; return this.tableId;
/* */ } }
/* */
/* */ public void setTableName(String tableName) { public void setTableName(String tableName) {
/* 159 */ this.tableName = tableName; this.tableName = tableName;
/* */ } }
/* */
/* */
/* */ public String getTableName() { public String getTableName() {
/* 164 */ return this.tableName; return this.tableName;
/* */ } }
/* */
/* */ public void setArchiveId(Long archiveId) { public void setArchiveId(Long archiveId) {
/* 168 */ this.archiveId = archiveId; this.archiveId = archiveId;
/* */ } }
/* */
/* */
/* */ public Long getArchiveId() { public Long getArchiveId() {
/* 173 */ return this.archiveId; return this.archiveId;
/* */ } }
/* */
/* */ public void setFondsCode(String fondsCode) { public void setFondsCode(String fondsCode) {
/* 177 */ this.fondsCode = fondsCode; this.fondsCode = fondsCode;
/* */ } }
/* */
/* */
/* */ public String getFondsCode() { public String getFondsCode() {
/* 182 */ return this.fondsCode; return this.fondsCode;
/* */ } }
/* */
/* */ public void setTitleProper(String titleProper) { public void setTitleProper(String titleProper) {
/* 186 */ this.titleProper = titleProper; this.titleProper = titleProper;
/* */ } }
/* */
/* */
/* */ public String getTitleProper() { public String getTitleProper() {
/* 191 */ return this.titleProper; return this.titleProper;
/* */ } }
/* */
/* */ public void setPageNumber(Integer pageNumber) { public void setPageNumber(Integer pageNumber) {
/* 195 */ this.pageNumber = pageNumber; this.pageNumber = pageNumber;
/* */ } }
/* */
/* */
/* */ public Integer getPageNumber() { public Integer getPageNumber() {
/* 200 */ return this.pageNumber; return this.pageNumber;
/* */ } }
/* */
/* */ public void setBgqx(String bgqx) { public void setBgqx(String bgqx) {
/* 204 */ this.bgqx = bgqx; this.bgqx = bgqx;
/* */ } }
/* */
/* */
/* */ public String getBgqx() { public String getBgqx() {
/* 209 */ return this.bgqx; return this.bgqx;
/* */ } }
/* */
/* */ public void setDocumentNumber(Integer documentNumber) { public void setDocumentNumber(Integer documentNumber) {
/* 213 */ this.documentNumber = documentNumber; this.documentNumber = documentNumber;
/* */ } }
/* */
/* */
/* */ public Integer getDocumentNumber() { public Integer getDocumentNumber() {
/* 218 */ return this.documentNumber; return this.documentNumber;
/* */ } }
/* */
/* */ public void setIsOpen(String isOpen) { public void setIsOpen(String isOpen) {
/* 222 */ this.isOpen = isOpen; this.isOpen = isOpen;
/* */ } }
/* */
/* */
/* */ public String getIsOpen() { public String getIsOpen() {
/* 227 */ return this.isOpen; return this.isOpen;
/* */ } }
/* */
/* */ public void setBorrowType(String borrowType) { public void setBorrowType(String borrowType) {
/* 231 */ this.borrowType = borrowType; this.borrowType = borrowType;
/* */ } }
/* */
/* */
/* */ public String getBorrowType() { public String getBorrowType() {
/* 236 */ return this.borrowType; return this.borrowType;
/* */ } }
/* */
/* */ public void setShowOrder(String showOrder) { public void setShowOrder(String showOrder) {
/* 240 */ this.showOrder = showOrder; this.showOrder = showOrder;
/* */ } }
/* */
/* */
/* */ public String getShowOrder() { public String getShowOrder() {
/* 245 */ return this.showOrder; return this.showOrder;
/* */ } }
/* */
/* */ public void setIsOut(String isOut) { public void setIsOut(String isOut) {
/* 249 */ this.isOut = isOut; this.isOut = isOut;
/* */ } }
/* */
/* */
/* */ public String getIsOut() { public String getIsOut() {
/* 254 */ return this.isOut; return this.isOut;
/* */ } }
/* */
/* */ public void setAuthor(String author) { public void setAuthor(String author) {
/* 258 */ this.author = author; this.author = author;
/* */ } }
/* */
/* */
/* */ public String getAuthor() { public String getAuthor() {
/* 263 */ return this.author; return this.author;
/* */ } }
/* */
/* */ public void setCopy(String copy) { public void setCopy(String copy) {
/* 267 */ this.copy = copy; this.copy = copy;
/* */ } }
/* */
/* */
/* */ public String getCopy() { public String getCopy() {
/* 272 */ return this.copy; return this.copy;
/* */ } }
/* */
/* */ public void setExcerpt(String excerpt) { public void setExcerpt(String excerpt) {
/* 276 */ this.excerpt = excerpt; this.excerpt = excerpt;
/* */ } }
/* */
/* */
/* */ public String getExcerpt() { public String getExcerpt() {
/* 281 */ return this.excerpt; return this.excerpt;
/* */ } }
/* */
/* */ public void setShot(String shot) { public void setShot(String shot) {
/* 285 */ this.shot = shot; this.shot = shot;
/* */ } }
/* */
/* */
/* */ public String getShot() { public String getShot() {
/* 290 */ return this.shot; return this.shot;
/* */ } }
/* */
/* */ public void setScan(String scan) { public void setScan(String scan) {
/* 294 */ this.scan = scan; this.scan = scan;
/* */ } }
/* */
/* */
/* */ public String getScan() { public String getScan() {
/* 299 */ return this.scan; return this.scan;
/* */ } }
/* */
/* */ public void setPrintTime(String printTime) { public void setPrintTime(String printTime) {
/* 303 */ this.printTime = printTime; this.printTime = printTime;
/* */ } }
/* */
/* */
/* */ public String getPrintTime() { public String getPrintTime() {
/* 308 */ return this.printTime; return this.printTime;
/* */ } }
/* */
/* */ public void setUploadTime(String uploadTime) { public void setUploadTime(String uploadTime) {
/* 312 */ this.uploadTime = uploadTime; this.uploadTime = uploadTime;
/* */ } }
/* */
/* */
/* */ public String getUploadTime() { public String getUploadTime() {
/* 317 */ return this.uploadTime; return this.uploadTime;
/* */ } }
/* */
/* */ public void setFlag1(String flag1) { public void setFlag1(String flag1) {
/* 321 */ this.flag1 = flag1; this.flag1 = flag1;
/* */ } }
/* */
/* */
/* */ public String getFlag1() { public String getFlag1() {
/* 326 */ return this.flag1; return this.flag1;
/* */ } }
/* */
/* */
/* */ public String toString() { public String toString() {
/* 331 */ return (new ToStringBuilder(this, ToStringStyle.MULTI_LINE_STYLE)) return (new ToStringBuilder(this, ToStringStyle.MULTI_LINE_STYLE))
/* 332 */ .append("id", getId()) .append("id", getId())
/* 333 */ .append("ownerId", getOwnerId()) .append("ownerId", getOwnerId())
/* 334 */ .append("createUser", getCreateUser()) .append("createUser", getCreateUser())
/* 335 */ .append("createTime", getCreateTime()) .append("createTime", getCreateTime())
/* 336 */ .append("status", getStatus()) .append("status", getStatus())
/* 337 */ .append("dh", getDh()) .append("dh", getDh())
/* 338 */ .append("tableId", getTableId()) .append("tableId", getTableId())
/* 339 */ .append("tableName", getTableName()) .append("tableName", getTableName())
/* 340 */ .append("archiveId", getArchiveId()) .append("archiveId", getArchiveId())
/* 341 */ .append("fondsCode", getFondsCode()) .append("fondsCode", getFondsCode())
/* 342 */ .append("titleProper", getTitleProper()) .append("titleProper", getTitleProper())
/* 343 */ .append("pageNumber", getPageNumber()) .append("pageNumber", getPageNumber())
/* 344 */ .append("bgqx", getBgqx()) .append("bgqx", getBgqx())
/* 345 */ .append("documentNumber", getDocumentNumber()) .append("documentNumber", getDocumentNumber())
/* 346 */ .append("remark", getRemark()) .append("remark", getRemark())
/* 347 */ .append("isOpen", getIsOpen()) .append("isOpen", getIsOpen())
/* 348 */ .append("borrowType", getBorrowType()) .append("borrowType", getBorrowType())
/* 349 */ .append("showOrder", getShowOrder()) .append("showOrder", getShowOrder())
/* 350 */ .append("isOut", getIsOut()) .append("isOut", getIsOut())
/* 351 */ .append("author", getAuthor()) .append("author", getAuthor())
/* 352 */ .append("copy", getCopy()) .append("copy", getCopy())
/* 353 */ .append("excerpt", getExcerpt()) .append("excerpt", getExcerpt())
/* 354 */ .append("shot", getShot()) .append("shot", getShot())
/* 355 */ .append("scan", getScan()) .append("scan", getScan())
/* 356 */ .append("printTime", getPrintTime()) .append("printTime", getPrintTime())
/* 357 */ .append("uploadTime", getUploadTime()) .append("uploadTime", getUploadTime())
/* 358 */ .append("flag1", getFlag1()) .append("flag1", getFlag1())
/* 359 */ .toString(); .toString();
/* */ } }
/* */ } }
/* Location: C:\Users\Administrator\Desktop\extracted.zip!\extracted\BOOT-INF\classes\com\archive\project\jyly\detail\domain\TArchiveBorrowDetail.class /* Location: C:\Users\Administrator\Desktop\extracted.zip!\extracted\BOOT-INF\classes\com\archive\project\jyly\detail\domain\TArchiveBorrowDetail.class

@ -1,159 +1,159 @@
/* */ package com.archive.project.jyly.detail.service.impl package 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;
/* */ import com.archive.common.utils.text.Convert; import com.archive.common.utils.text.Convert;
/* */ import com.archive.project.common.service.IExecuteSqlService; import com.archive.project.common.service.IExecuteSqlService;
/* */ import com.archive.project.jyly.detail.domain.TArchiveBorrowDetail; import com.archive.project.jyly.detail.domain.TArchiveBorrowDetail;
/* */ import com.archive.project.jyly.detail.mapper.TArchiveBorrowDetailMapper; import com.archive.project.jyly.detail.mapper.TArchiveBorrowDetailMapper;
/* */ import com.archive.project.jyly.detail.service.ITArchiveBorrowDetailService; import com.archive.project.jyly.detail.service.ITArchiveBorrowDetailService;
/* */ import com.archive.project.system.user.domain.User; import com.archive.project.system.user.domain.User;
/* */ import java.util.LinkedHashMap; import java.util.LinkedHashMap;
/* */ import java.util.List; import java.util.List;
/* */ import org.springframework.beans.factory.annotation.Autowired; import org.springframework.beans.factory.annotation.Autowired;
/* */ import org.springframework.stereotype.Service; import org.springframework.stereotype.Service;
/* */
/* */
/* */
/* */
/* */
/* */
/* */
/* */
/* */
/* */
/* */
/* */
/* */
/* */
/* */
/* */
/* */
/* */ @Service @Service
/* */ public class TArchiveBorrowDetailServiceImpl public class TArchiveBorrowDetailServiceImpl
/* */ implements ITArchiveBorrowDetailService implements ITArchiveBorrowDetailService
/* */ { {
/* */ @Autowired @Autowired
/* */ private TArchiveBorrowDetailMapper tArchiveBorrowDetailMapper; private TArchiveBorrowDetailMapper tArchiveBorrowDetailMapper;
/* */ @Autowired @Autowired
/* */ private IExecuteSqlService executeSqlService; private IExecuteSqlService executeSqlService;
/* */
/* */ public TArchiveBorrowDetail selectTArchiveBorrowDetailById(Long id) { public TArchiveBorrowDetail selectTArchiveBorrowDetailById(Long id) {
/* 42 */ return this.tArchiveBorrowDetailMapper.selectTArchiveBorrowDetailById(id); return this.tArchiveBorrowDetailMapper.selectTArchiveBorrowDetailById(id);
/* */ } }
/* */
/* */
/* */
/* */
/* */
/* */
/* */
/* */
/* */
/* */ public List<TArchiveBorrowDetail> selectTArchiveBorrowDetailList(TArchiveBorrowDetail tArchiveBorrowDetail) { public List<TArchiveBorrowDetail> selectTArchiveBorrowDetailList(TArchiveBorrowDetail tArchiveBorrowDetail) {
/* 54 */ return this.tArchiveBorrowDetailMapper.selectTArchiveBorrowDetailList(tArchiveBorrowDetail); return this.tArchiveBorrowDetailMapper.selectTArchiveBorrowDetailList(tArchiveBorrowDetail);
/* */ } }
/* */
/* */
/* */
/* */
/* */
/* */
/* */
/* */
/* */
/* */ public int insertTArchiveBorrowDetail(TArchiveBorrowDetail tArchiveBorrowDetail) { public int insertTArchiveBorrowDetail(TArchiveBorrowDetail tArchiveBorrowDetail) {
/* 66 */ tArchiveBorrowDetail.setCreateTime(DateUtils.getNowDate()); tArchiveBorrowDetail.setCreateTime(DateUtils.getNowDate());
/* 67 */ return this.tArchiveBorrowDetailMapper.insertTArchiveBorrowDetail(tArchiveBorrowDetail); return this.tArchiveBorrowDetailMapper.insertTArchiveBorrowDetail(tArchiveBorrowDetail);
/* */ } }
/* */
/* */
/* */
/* */
/* */
/* */
/* */
/* */
/* */
/* */ public int updateTArchiveBorrowDetail(TArchiveBorrowDetail tArchiveBorrowDetail) { public int updateTArchiveBorrowDetail(TArchiveBorrowDetail tArchiveBorrowDetail) {
/* 79 */ return this.tArchiveBorrowDetailMapper.updateTArchiveBorrowDetail(tArchiveBorrowDetail); return this.tArchiveBorrowDetailMapper.updateTArchiveBorrowDetail(tArchiveBorrowDetail);
/* */ } }
/* */
/* */
/* */
/* */
/* */
/* */
/* */
/* */
/* */
/* */ public int deleteTArchiveBorrowDetailByIds(String ids) { public int deleteTArchiveBorrowDetailByIds(String ids) {
/* 91 */ return this.tArchiveBorrowDetailMapper.deleteTArchiveBorrowDetailByIds(Convert.toStrArray(ids)); return this.tArchiveBorrowDetailMapper.deleteTArchiveBorrowDetailByIds(Convert.toStrArray(ids));
/* */ } }
/* */
/* */
/* */
/* */
/* */
/* */
/* */
/* */
/* */
/* */ public int deleteTArchiveBorrowDetailById(Long id) { public int deleteTArchiveBorrowDetailById(Long id) {
/* 103 */ return this.tArchiveBorrowDetailMapper.deleteTArchiveBorrowDetailById(id); return this.tArchiveBorrowDetailMapper.deleteTArchiveBorrowDetailById(id);
/* */ } }
/* */
/* */
/* */
/* */
/* */
/* */
/* */
/* */
/* */
/* */ public boolean saveBorrowDetail(String ownerId, String ids) { public boolean saveBorrowDetail(String ownerId, String ids) {
/* 115 */ boolean res = false; boolean res = false;
/* */ try { try {
/* 117 */ String[] sttr = ids.split(","); String[] sttr = ids.split(",");
/* 118 */ for (int i = 0; i < sttr.length; i++) { for (int i = 0; i < sttr.length; i++) {
/* 119 */ String[] idcode = sttr[i].split("-"); String[] idcode = sttr[i].split("-");
/* 120 */ String archiveId = idcode[0]; String archiveId = idcode[0];
/* 121 */ String tableId = idcode[1]; String tableId = idcode[1];
/* 122 */ String sql = "select qzh,dh,tm,ys,bgqx,zrz,archiveTypeName,kfkz from t_ar_total where archiveId='" + archiveId + "' and tableId='" + tableId + "'"; String sql = "select qzh,dh,tm,ys,bgqx,zrz,archiveTypeName,kfkz from t_ar_total where archiveId='" + archiveId + "' and tableId='" + tableId + "'";
/* */
/* 124 */ List<LinkedHashMap<String, Object>> datalist = this.executeSqlService.queryList(sql); List<LinkedHashMap<String, Object>> datalist = this.executeSqlService.queryList(sql);
/* 125 */ if (datalist.size() > 0 && datalist.get(0) != null) { if (datalist.size() > 0 && datalist.get(0) != null) {
/* 126 */ TArchiveBorrowDetail tArchiveBorrowDetail = new TArchiveBorrowDetail(); TArchiveBorrowDetail tArchiveBorrowDetail = new TArchiveBorrowDetail();
/* 127 */ tArchiveBorrowDetail.setOwnerId(Long.valueOf(Long.parseLong(ownerId))); tArchiveBorrowDetail.setOwnerId(Long.valueOf(Long.parseLong(ownerId)));
/* 128 */ tArchiveBorrowDetail.setArchiveId(Long.valueOf(Long.parseLong(archiveId))); tArchiveBorrowDetail.setArchiveId(Long.valueOf(Long.parseLong(archiveId)));
/* 129 */ tArchiveBorrowDetail.setTableId(tableId); tArchiveBorrowDetail.setTableId(tableId);
/* 130 */ tArchiveBorrowDetail.setTableName((((LinkedHashMap)datalist.get(0)).get("archiveTypeName") == null) ? "" : ((LinkedHashMap)datalist.get(0)).get("archiveTypeName").toString()); tArchiveBorrowDetail.setTableName((((LinkedHashMap)datalist.get(0)).get("archiveTypeName") == null) ? "" : ((LinkedHashMap)datalist.get(0)).get("archiveTypeName").toString());
/* 131 */ tArchiveBorrowDetail.setAuthor((((LinkedHashMap)datalist.get(0)).get("zrz") == null) ? "" : ((LinkedHashMap)datalist.get(0)).get("zrz").toString()); tArchiveBorrowDetail.setAuthor((((LinkedHashMap)datalist.get(0)).get("zrz") == null) ? "" : ((LinkedHashMap)datalist.get(0)).get("zrz").toString());
/* 132 */ tArchiveBorrowDetail.setBgqx((((LinkedHashMap)datalist.get(0)).get("bgqx") == null) ? "" : ((LinkedHashMap)datalist.get(0)).get("bgqx").toString()); tArchiveBorrowDetail.setBgqx((((LinkedHashMap)datalist.get(0)).get("bgqx") == null) ? "" : ((LinkedHashMap)datalist.get(0)).get("bgqx").toString());
/* 133 */ tArchiveBorrowDetail.setDh((((LinkedHashMap)datalist.get(0)).get("dh") == null) ? "" : ((LinkedHashMap)datalist.get(0)).get("dh").toString()); tArchiveBorrowDetail.setDh((((LinkedHashMap)datalist.get(0)).get("dh") == null) ? "" : ((LinkedHashMap)datalist.get(0)).get("dh").toString());
/* 134 */ tArchiveBorrowDetail.setFondsCode((((LinkedHashMap)datalist.get(0)).get("qzh") == null) ? "" : ((LinkedHashMap)datalist.get(0)).get("qzh").toString()); tArchiveBorrowDetail.setFondsCode((((LinkedHashMap)datalist.get(0)).get("qzh") == null) ? "" : ((LinkedHashMap)datalist.get(0)).get("qzh").toString());
/* 135 */ tArchiveBorrowDetail.setIsOpen((((LinkedHashMap)datalist.get(0)).get("kfkz") == null) ? "" : ((LinkedHashMap)datalist.get(0)).get("kfkz").toString()); tArchiveBorrowDetail.setIsOpen((((LinkedHashMap)datalist.get(0)).get("kfkz") == null) ? "" : ((LinkedHashMap)datalist.get(0)).get("kfkz").toString());
/* 136 */ tArchiveBorrowDetail.setTitleProper((((LinkedHashMap)datalist.get(0)).get("tm") == null) ? "" : ((LinkedHashMap)datalist.get(0)).get("tm").toString()); tArchiveBorrowDetail.setTitleProper((((LinkedHashMap)datalist.get(0)).get("tm") == null) ? "" : ((LinkedHashMap)datalist.get(0)).get("tm").toString());
/* 137 */ tArchiveBorrowDetail.setPageNumber(Integer.valueOf((((LinkedHashMap)datalist.get(0)).get("ys") == null) ? 0 : Integer.parseInt(((LinkedHashMap)datalist.get(0)).get("ys").toString().equals("") ? "0" : ((LinkedHashMap)datalist.get(0)).get("ys").toString()))); tArchiveBorrowDetail.setPageNumber(Integer.valueOf((((LinkedHashMap)datalist.get(0)).get("ys") == null) ? 0 : Integer.parseInt(((LinkedHashMap)datalist.get(0)).get("ys").toString().equals("") ? "0" : ((LinkedHashMap)datalist.get(0)).get("ys").toString())));
/* 138 */ tArchiveBorrowDetail.setCreateTime(DateUtils.getNowDate()); tArchiveBorrowDetail.setCreateTime(DateUtils.getNowDate());
/* 139 */ User currentUser = ShiroUtils.getSysUser(); User currentUser = ShiroUtils.getSysUser();
/* 140 */ if (currentUser != null) { if (currentUser != null) {
/* 141 */ tArchiveBorrowDetail.setCreateUser(currentUser.getUserName()); tArchiveBorrowDetail.setCreateUser(currentUser.getUserName());
/* */ } }
/* 143 */ this.tArchiveBorrowDetailMapper.insertTArchiveBorrowDetail(tArchiveBorrowDetail); this.tArchiveBorrowDetailMapper.insertTArchiveBorrowDetail(tArchiveBorrowDetail);
/* */ } else { } else {
/* 145 */ System.out.println("没有查询到数据"); System.out.println("没有查询到数据");
/* */ } }
/* */ } }
/* 148 */ res = true; res = true;
/* 149 */ } catch (Exception ex) { } catch (Exception ex) {
/* 150 */ System.out.println("ERROR出现异常:" + ex.getMessage()); System.out.println("ERROR出现异常:" + ex.getMessage());
/* */ } }
/* 152 */ return res; return res;
/* */ } }
/* */ } }
/* Location: C:\Users\Administrator\Desktop\extracted.zip!\extracted\BOOT-INF\classes\com\archive\project\jyly\detail\service\impl\TArchiveBorrowDetailServiceImpl.class /* Location: C:\Users\Administrator\Desktop\extracted.zip!\extracted\BOOT-INF\classes\com\archive\project\jyly\detail\service\impl\TArchiveBorrowDetailServiceImpl.class

@ -1,131 +1,131 @@
/* */ package com.archive.project.jyly.person.controller package 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;
/* */ import com.archive.framework.aspectj.lang.enums.BusinessType; import com.archive.framework.aspectj.lang.enums.BusinessType;
/* */ 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;
/* */ import com.archive.framework.web.page.TableDataInfo; import com.archive.framework.web.page.TableDataInfo;
/* */ import com.archive.project.jyly.person.domain.TArchivePerson; import com.archive.project.jyly.person.domain.TArchivePerson;
/* */ import com.archive.project.jyly.person.service.ITArchivePersonService; import com.archive.project.jyly.person.service.ITArchivePersonService;
/* */ import java.util.List; import java.util.List;
/* */ import org.apache.shiro.authz.annotation.RequiresPermissions; import org.apache.shiro.authz.annotation.RequiresPermissions;
/* */ import org.springframework.beans.factory.annotation.Autowired; import org.springframework.beans.factory.annotation.Autowired;
/* */ import org.springframework.stereotype.Controller; import org.springframework.stereotype.Controller;
/* */ import org.springframework.ui.ModelMap; import org.springframework.ui.ModelMap;
/* */ import org.springframework.web.bind.annotation.GetMapping; import org.springframework.web.bind.annotation.GetMapping;
/* */ import org.springframework.web.bind.annotation.PathVariable; import org.springframework.web.bind.annotation.PathVariable;
/* */ import org.springframework.web.bind.annotation.PostMapping; import org.springframework.web.bind.annotation.PostMapping;
/* */ import org.springframework.web.bind.annotation.RequestMapping; import org.springframework.web.bind.annotation.RequestMapping;
/* */ import org.springframework.web.bind.annotation.ResponseBody; import org.springframework.web.bind.annotation.ResponseBody;
/* */
/* */
/* */
/* */
/* */
/* */
/* */ @Controller @Controller
/* */ @RequestMapping({"/jyly/person"}) @RequestMapping({"/jyly/person"})
/* */ public class TArchivePersonController public class TArchivePersonController
/* */ extends BaseController extends BaseController
/* */ { {
/* 32 */ private String prefix = "jyly/person"; private String prefix = "jyly/person";
/* */
/* */ @Autowired @Autowired
/* */ private ITArchivePersonService tArchivePersonService; private ITArchivePersonService tArchivePersonService;
/* */
/* */
/* */ @RequiresPermissions({"jyly:person:view"}) @RequiresPermissions({"jyly:person:view"})
/* */ @GetMapping @GetMapping
/* */ public String person() { public String person() {
/* 41 */ return this.prefix + "/person"; return this.prefix + "/person";
/* */ } }
/* */
/* */
/* */
/* */
/* */
/* */ @RequiresPermissions({"jyly:person:list"}) @RequiresPermissions({"jyly:person:list"})
/* */ @PostMapping({"/list"}) @PostMapping({"/list"})
/* */ @ResponseBody @ResponseBody
/* */ public TableDataInfo list(TArchivePerson tArchivePerson) { public TableDataInfo list(TArchivePerson tArchivePerson) {
/* 52 */ startPage(); startPage();
/* 53 */ List<TArchivePerson> list = this.tArchivePersonService.selectTArchivePersonList(tArchivePerson); List<TArchivePerson> list = this.tArchivePersonService.selectTArchivePersonList(tArchivePerson);
/* 54 */ return getDataTable(list); return getDataTable(list);
/* */ } }
/* */
/* */
/* */
/* */
/* */
/* */ @RequiresPermissions({"jyly:person:export"}) @RequiresPermissions({"jyly:person:export"})
/* */ @Log(title = "查档者管理", businessType = BusinessType.EXPORT) @Log(title = "查档者管理", businessType = BusinessType.EXPORT)
/* */ @PostMapping({"/export"}) @PostMapping({"/export"})
/* */ @ResponseBody @ResponseBody
/* */ public AjaxResult export(TArchivePerson tArchivePerson) { public AjaxResult export(TArchivePerson tArchivePerson) {
/* 66 */ List<TArchivePerson> list = this.tArchivePersonService.selectTArchivePersonList(tArchivePerson); List<TArchivePerson> list = this.tArchivePersonService.selectTArchivePersonList(tArchivePerson);
/* 67 */ ExcelUtil<TArchivePerson> util = new ExcelUtil(TArchivePerson.class); ExcelUtil<TArchivePerson> util = new ExcelUtil(TArchivePerson.class);
/* 68 */ return util.exportExcel(list, "person"); return util.exportExcel(list, "person");
/* */ } }
/* */
/* */
/* */
/* */
/* */
/* */ @GetMapping({"/add"}) @GetMapping({"/add"})
/* */ public String add() { public String add() {
/* 77 */ return this.prefix + "/add"; return this.prefix + "/add";
/* */ } }
/* */
/* */
/* */
/* */
/* */
/* */ @RequiresPermissions({"jyly:person:add"}) @RequiresPermissions({"jyly:person:add"})
/* */ @Log(title = "查档者管理", businessType = BusinessType.INSERT) @Log(title = "查档者管理", businessType = BusinessType.INSERT)
/* */ @PostMapping({"/add"}) @PostMapping({"/add"})
/* */ @ResponseBody @ResponseBody
/* */ public AjaxResult addSave(TArchivePerson tArchivePerson) { public AjaxResult addSave(TArchivePerson tArchivePerson) {
/* 89 */ return toAjax(this.tArchivePersonService.insertTArchivePerson(tArchivePerson)); return toAjax(this.tArchivePersonService.insertTArchivePerson(tArchivePerson));
/* */ } }
/* */
/* */
/* */
/* */
/* */
/* */ @GetMapping({"/edit/{id}"}) @GetMapping({"/edit/{id}"})
/* */ public String edit(@PathVariable("id") Long id, ModelMap mmap) { public String edit(@PathVariable("id") Long id, ModelMap mmap) {
/* 98 */ TArchivePerson tArchivePerson = this.tArchivePersonService.selectTArchivePersonById(id); TArchivePerson tArchivePerson = this.tArchivePersonService.selectTArchivePersonById(id);
/* 99 */ mmap.put("tArchivePerson", tArchivePerson); mmap.put("tArchivePerson", tArchivePerson);
/* 100 */ return this.prefix + "/edit"; return this.prefix + "/edit";
/* */ } }
/* */
/* */
/* */
/* */
/* */
/* */ @RequiresPermissions({"jyly:person:edit"}) @RequiresPermissions({"jyly:person:edit"})
/* */ @Log(title = "查档者管理", businessType = BusinessType.UPDATE) @Log(title = "查档者管理", businessType = BusinessType.UPDATE)
/* */ @PostMapping({"/edit"}) @PostMapping({"/edit"})
/* */ @ResponseBody @ResponseBody
/* */ public AjaxResult editSave(TArchivePerson tArchivePerson) { public AjaxResult editSave(TArchivePerson tArchivePerson) {
/* 112 */ return toAjax(this.tArchivePersonService.updateTArchivePerson(tArchivePerson)); return toAjax(this.tArchivePersonService.updateTArchivePerson(tArchivePerson));
/* */ } }
/* */
/* */
/* */
/* */
/* */
/* */ @RequiresPermissions({"jyly:person:remove"}) @RequiresPermissions({"jyly:person:remove"})
/* */ @Log(title = "查档者管理", businessType = BusinessType.DELETE) @Log(title = "查档者管理", businessType = BusinessType.DELETE)
/* */ @PostMapping({"/remove"}) @PostMapping({"/remove"})
/* */ @ResponseBody @ResponseBody
/* */ public AjaxResult remove(String ids) { public AjaxResult remove(String ids) {
/* 124 */ return toAjax(this.tArchivePersonService.deleteTArchivePersonByIds(ids)); return toAjax(this.tArchivePersonService.deleteTArchivePersonByIds(ids));
/* */ } }
/* */ } }
/* Location: C:\Users\Administrator\Desktop\extracted.zip!\extracted\BOOT-INF\classes\com\archive\project\jyly\person\controller\TArchivePersonController.class /* Location: C:\Users\Administrator\Desktop\extracted.zip!\extracted\BOOT-INF\classes\com\archive\project\jyly\person\controller\TArchivePersonController.class

@ -1,269 +1,269 @@
/* */ package com.archive.project.jyly.person.domain package 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;
/* */ import com.fasterxml.jackson.annotation.JsonFormat; import com.fasterxml.jackson.annotation.JsonFormat;
/* */ import java.util.Date; import java.util.Date;
/* */ import org.apache.commons.lang3.builder.ToStringBuilder; import org.apache.commons.lang3.builder.ToStringBuilder;
/* */ import org.apache.commons.lang3.builder.ToStringStyle; import org.apache.commons.lang3.builder.ToStringStyle;
/* */
/* */
/* */
/* */
/* */
/* */
/* */
/* */
/* */
/* */
/* */
/* */
/* */
/* */
/* */
/* */
/* */
/* */
/* */
/* */
/* */
/* */
/* */
/* */
/* */
/* */
/* */
/* */
/* */
/* */
/* */
/* */
/* */
/* */
/* */
/* */
/* */
/* */
/* */
/* */
/* */
/* */ public class TArchivePerson public class TArchivePerson
/* */ extends BaseEntity extends BaseEntity
/* */ { {
/* */ private static final long serialVersionUID = 1L; private static final long serialVersionUID = 1L;
/* */ private Long id; private Long id;
/* */ @Excel(name = "状态") @Excel(name = "状态")
/* */ private String status; private String status;
/* */ @Excel(name = "姓名") @Excel(name = "姓名")
/* */ private String name; private String name;
/* */ @Excel(name = "电话") @Excel(name = "电话")
/* */ private String phone; private String phone;
/* */ @Excel(name = "证件类型") @Excel(name = "证件类型")
/* */ private String cardName; private String cardName;
/* */ @Excel(name = "证件号码") @Excel(name = "证件号码")
/* */ private String cardNo; private String cardNo;
/* */ @Excel(name = "性别") @Excel(name = "性别")
/* */ private String gender; private String gender;
/* */ @Excel(name = "住址") @Excel(name = "住址")
/* */ private String address; private String address;
/* */ @Excel(name = "民族") @Excel(name = "民族")
/* */ private String nation; private String nation;
/* */ @JsonFormat(pattern = "yyyy-MM-dd") @JsonFormat(pattern = "yyyy-MM-dd")
/* */ @Excel(name = "生日", width = 30.0D, dateFormat = "yyyy-MM-dd") @Excel(name = "生日", width = 30.0D, dateFormat = "yyyy-MM-dd")
/* */ private Date birthday; private Date birthday;
/* */ @Excel(name = "最后访问日期") @Excel(name = "最后访问日期")
/* */ private String lastDate; private String lastDate;
/* */ @Excel(name = "所属数据ID") @Excel(name = "所属数据ID")
/* */ private Long ownerId; private Long ownerId;
/* */ @Excel(name = "公司名称") @Excel(name = "公司名称")
/* */ private String compantname; private String compantname;
/* */ @Excel(name = "登陆密码") @Excel(name = "登陆密码")
/* */ private String password; private String password;
/* */ @Excel(name = "授权状态") @Excel(name = "授权状态")
/* */ private String enablestatus; private String enablestatus;
/* */ @Excel(name = "照片路径") @Excel(name = "照片路径")
/* */ private String photo; private String photo;
/* */ @Excel(name = "BASE64照片") @Excel(name = "BASE64照片")
/* */ private String photobase64; private String photobase64;
/* */
/* */ public void setId(Long id) { public void setId(Long id) {
/* 90 */ this.id = id; this.id = id;
/* */ } }
/* */
/* */
/* */ public Long getId() { public Long getId() {
/* 95 */ return this.id; return this.id;
/* */ } }
/* */
/* */ public void setStatus(String status) { public void setStatus(String status) {
/* 99 */ this.status = status; this.status = status;
/* */ } }
/* */
/* */
/* */ public String getStatus() { public String getStatus() {
/* 104 */ return this.status; return this.status;
/* */ } }
/* */
/* */ public void setName(String name) { public void setName(String name) {
/* 108 */ this.name = name; this.name = name;
/* */ } }
/* */
/* */
/* */ public String getName() { public String getName() {
/* 113 */ return this.name; return this.name;
/* */ } }
/* */
/* */ public void setPhone(String phone) { public void setPhone(String phone) {
/* 117 */ this.phone = phone; this.phone = phone;
/* */ } }
/* */
/* */
/* */ public String getPhone() { public String getPhone() {
/* 122 */ return this.phone; return this.phone;
/* */ } }
/* */
/* */ public void setCardName(String cardName) { public void setCardName(String cardName) {
/* 126 */ this.cardName = cardName; this.cardName = cardName;
/* */ } }
/* */
/* */
/* */ public String getCardName() { public String getCardName() {
/* 131 */ return this.cardName; return this.cardName;
/* */ } }
/* */
/* */ public void setCardNo(String cardNo) { public void setCardNo(String cardNo) {
/* 135 */ this.cardNo = cardNo; this.cardNo = cardNo;
/* */ } }
/* */
/* */
/* */ public String getCardNo() { public String getCardNo() {
/* 140 */ return this.cardNo; return this.cardNo;
/* */ } }
/* */
/* */ public void setGender(String gender) { public void setGender(String gender) {
/* 144 */ this.gender = gender; this.gender = gender;
/* */ } }
/* */
/* */
/* */ public String getGender() { public String getGender() {
/* 149 */ return this.gender; return this.gender;
/* */ } }
/* */
/* */ public void setAddress(String address) { public void setAddress(String address) {
/* 153 */ this.address = address; this.address = address;
/* */ } }
/* */
/* */
/* */ public String getAddress() { public String getAddress() {
/* 158 */ return this.address; return this.address;
/* */ } }
/* */
/* */ public void setNation(String nation) { public void setNation(String nation) {
/* 162 */ this.nation = nation; this.nation = nation;
/* */ } }
/* */
/* */
/* */ public String getNation() { public String getNation() {
/* 167 */ return this.nation; return this.nation;
/* */ } }
/* */
/* */ public void setBirthday(Date birthday) { public void setBirthday(Date birthday) {
/* 171 */ this.birthday = birthday; this.birthday = birthday;
/* */ } }
/* */
/* */
/* */ public Date getBirthday() { public Date getBirthday() {
/* 176 */ return this.birthday; return this.birthday;
/* */ } }
/* */
/* */ public void setLastDate(String lastDate) { public void setLastDate(String lastDate) {
/* 180 */ this.lastDate = lastDate; this.lastDate = lastDate;
/* */ } }
/* */
/* */
/* */ public String getLastDate() { public String getLastDate() {
/* 185 */ return this.lastDate; return this.lastDate;
/* */ } }
/* */
/* */ public void setOwnerId(Long ownerId) { public void setOwnerId(Long ownerId) {
/* 189 */ this.ownerId = ownerId; this.ownerId = ownerId;
/* */ } }
/* */
/* */
/* */ public Long getOwnerId() { public Long getOwnerId() {
/* 194 */ return this.ownerId; return this.ownerId;
/* */ } }
/* */
/* */ public void setCompantname(String compantname) { public void setCompantname(String compantname) {
/* 198 */ this.compantname = compantname; this.compantname = compantname;
/* */ } }
/* */
/* */
/* */ public String getCompantname() { public String getCompantname() {
/* 203 */ return this.compantname; return this.compantname;
/* */ } }
/* */
/* */ public void setPassword(String password) { public void setPassword(String password) {
/* 207 */ this.password = password; this.password = password;
/* */ } }
/* */
/* */
/* */ public String getPassword() { public String getPassword() {
/* 212 */ return this.password; return this.password;
/* */ } }
/* */
/* */ public void setEnablestatus(String enablestatus) { public void setEnablestatus(String enablestatus) {
/* 216 */ this.enablestatus = enablestatus; this.enablestatus = enablestatus;
/* */ } }
/* */
/* */
/* */ public String getEnablestatus() { public String getEnablestatus() {
/* 221 */ return this.enablestatus; return this.enablestatus;
/* */ } }
/* */
/* */ public void setPhoto(String photo) { public void setPhoto(String photo) {
/* 225 */ this.photo = photo; this.photo = photo;
/* */ } }
/* */
/* */
/* */ public String getPhoto() { public String getPhoto() {
/* 230 */ return this.photo; return this.photo;
/* */ } }
/* */
/* */ public void setPhotobase64(String photobase64) { public void setPhotobase64(String photobase64) {
/* 234 */ this.photobase64 = photobase64; this.photobase64 = photobase64;
/* */ } }
/* */
/* */
/* */ public String getPhotobase64() { public String getPhotobase64() {
/* 239 */ return this.photobase64; return this.photobase64;
/* */ } }
/* */
/* */
/* */ public String toString() { public String toString() {
/* 244 */ return (new ToStringBuilder(this, ToStringStyle.MULTI_LINE_STYLE)) return (new ToStringBuilder(this, ToStringStyle.MULTI_LINE_STYLE))
/* 245 */ .append("id", getId()) .append("id", getId())
/* 246 */ .append("status", getStatus()) .append("status", getStatus())
/* 247 */ .append("name", getName()) .append("name", getName())
/* 248 */ .append("phone", getPhone()) .append("phone", getPhone())
/* 249 */ .append("cardName", getCardName()) .append("cardName", getCardName())
/* 250 */ .append("cardNo", getCardNo()) .append("cardNo", getCardNo())
/* 251 */ .append("gender", getGender()) .append("gender", getGender())
/* 252 */ .append("address", getAddress()) .append("address", getAddress())
/* 253 */ .append("nation", getNation()) .append("nation", getNation())
/* 254 */ .append("birthday", getBirthday()) .append("birthday", getBirthday())
/* 255 */ .append("lastDate", getLastDate()) .append("lastDate", getLastDate())
/* 256 */ .append("ownerId", getOwnerId()) .append("ownerId", getOwnerId())
/* 257 */ .append("compantname", getCompantname()) .append("compantname", getCompantname())
/* 258 */ .append("password", getPassword()) .append("password", getPassword())
/* 259 */ .append("enablestatus", getEnablestatus()) .append("enablestatus", getEnablestatus())
/* 260 */ .append("photo", getPhoto()) .append("photo", getPhoto())
/* 261 */ .append("photobase64", getPhotobase64()) .append("photobase64", getPhotobase64())
/* 262 */ .toString(); .toString();
/* */ } }
/* */ } }
/* Location: C:\Users\Administrator\Desktop\extracted.zip!\extracted\BOOT-INF\classes\com\archive\project\jyly\person\domain\TArchivePerson.class /* Location: C:\Users\Administrator\Desktop\extracted.zip!\extracted\BOOT-INF\classes\com\archive\project\jyly\person\domain\TArchivePerson.class

@ -1,98 +1,98 @@
/* */ package com.archive.project.jyly.person.service.impl package 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;
/* */ import com.archive.project.jyly.person.mapper.TArchivePersonMapper; import com.archive.project.jyly.person.mapper.TArchivePersonMapper;
/* */ import com.archive.project.jyly.person.service.ITArchivePersonService; import com.archive.project.jyly.person.service.ITArchivePersonService;
/* */ import java.util.List; import java.util.List;
/* */ import org.springframework.beans.factory.annotation.Autowired; import org.springframework.beans.factory.annotation.Autowired;
/* */ import org.springframework.stereotype.Service; import org.springframework.stereotype.Service;
/* */
/* */
/* */
/* */
/* */
/* */
/* */
/* */
/* */
/* */
/* */
/* */
/* */
/* */
/* */ @Service @Service
/* */ public class TArchivePersonServiceImpl public class TArchivePersonServiceImpl
/* */ implements ITArchivePersonService implements ITArchivePersonService
/* */ { {
/* */ @Autowired @Autowired
/* */ private TArchivePersonMapper tArchivePersonMapper; private TArchivePersonMapper tArchivePersonMapper;
/* */
/* */ public TArchivePerson selectTArchivePersonById(Long id) { public TArchivePerson selectTArchivePersonById(Long id) {
/* 32 */ return this.tArchivePersonMapper.selectTArchivePersonById(id); return this.tArchivePersonMapper.selectTArchivePersonById(id);
/* */ } }
/* */
/* */
/* */
/* */
/* */
/* */
/* */
/* */
/* */
/* */ public List<TArchivePerson> selectTArchivePersonList(TArchivePerson tArchivePerson) { public List<TArchivePerson> selectTArchivePersonList(TArchivePerson tArchivePerson) {
/* 44 */ return this.tArchivePersonMapper.selectTArchivePersonList(tArchivePerson); return this.tArchivePersonMapper.selectTArchivePersonList(tArchivePerson);
/* */ } }
/* */
/* */
/* */
/* */
/* */
/* */
/* */
/* */
/* */
/* */ public int insertTArchivePerson(TArchivePerson tArchivePerson) { public int insertTArchivePerson(TArchivePerson tArchivePerson) {
/* 56 */ return this.tArchivePersonMapper.insertTArchivePerson(tArchivePerson); return this.tArchivePersonMapper.insertTArchivePerson(tArchivePerson);
/* */ } }
/* */
/* */
/* */
/* */
/* */
/* */
/* */
/* */
/* */
/* */ public int updateTArchivePerson(TArchivePerson tArchivePerson) { public int updateTArchivePerson(TArchivePerson tArchivePerson) {
/* 68 */ return this.tArchivePersonMapper.updateTArchivePerson(tArchivePerson); return this.tArchivePersonMapper.updateTArchivePerson(tArchivePerson);
/* */ } }
/* */
/* */
/* */
/* */
/* */
/* */
/* */
/* */
/* */
/* */ public int deleteTArchivePersonByIds(String ids) { public int deleteTArchivePersonByIds(String ids) {
/* 80 */ return this.tArchivePersonMapper.deleteTArchivePersonByIds(Convert.toStrArray(ids)); return this.tArchivePersonMapper.deleteTArchivePersonByIds(Convert.toStrArray(ids));
/* */ } }
/* */
/* */
/* */
/* */
/* */
/* */
/* */
/* */
/* */
/* */ public int deleteTArchivePersonById(Long id) { public int deleteTArchivePersonById(Long id) {
/* 92 */ return this.tArchivePersonMapper.deleteTArchivePersonById(id); return this.tArchivePersonMapper.deleteTArchivePersonById(id);
/* */ } }
/* */ } }
/* Location: C:\Users\Administrator\Desktop\extracted.zip!\extracted\BOOT-INF\classes\com\archive\project\jyly\person\service\impl\TArchivePersonServiceImpl.class /* Location: C:\Users\Administrator\Desktop\extracted.zip!\extracted\BOOT-INF\classes\com\archive\project\jyly\person\service\impl\TArchivePersonServiceImpl.class

@ -1,87 +1,87 @@
/* */ package com.archive.project.monitor.server.domain; package com.archive.project.monitor.server.domain;
/* */
/* */
/* */
/* */
/* */
/* */
/* */
/* */
/* */
/* */
/* */
/* */
/* */
/* */
/* */
/* */
/* */
/* */
/* */
/* */
/* */
/* */
/* */
/* */
/* */
/* */
/* */ public class Sys public class Sys
/* */ { {
/* */ private String computerName; private String computerName;
/* */ private String computerIp; private String computerIp;
/* */ private String userDir; private String userDir;
/* */ private String osName; private String osName;
/* */ private String osArch; private String osArch;
/* */
/* */ public String getComputerName() { public String getComputerName() {
/* 37 */ return this.computerName; return this.computerName;
/* */ } }
/* */
/* */
/* */ public void setComputerName(String computerName) { public void setComputerName(String computerName) {
/* 42 */ this.computerName = computerName; this.computerName = computerName;
/* */ } }
/* */
/* */
/* */ public String getComputerIp() { public String getComputerIp() {
/* 47 */ return this.computerIp; return this.computerIp;
/* */ } }
/* */
/* */
/* */ public void setComputerIp(String computerIp) { public void setComputerIp(String computerIp) {
/* 52 */ this.computerIp = computerIp; this.computerIp = computerIp;
/* */ } }
/* */
/* */
/* */ public String getUserDir() { public String getUserDir() {
/* 57 */ return this.userDir; return this.userDir;
/* */ } }
/* */
/* */
/* */ public void setUserDir(String userDir) { public void setUserDir(String userDir) {
/* 62 */ this.userDir = userDir; this.userDir = userDir;
/* */ } }
/* */
/* */
/* */ public String getOsName() { public String getOsName() {
/* 67 */ return this.osName; return this.osName;
/* */ } }
/* */
/* */
/* */ public void setOsName(String osName) { public void setOsName(String osName) {
/* 72 */ this.osName = osName; this.osName = osName;
/* */ } }
/* */
/* */
/* */ public String getOsArch() { public String getOsArch() {
/* 77 */ return this.osArch; return this.osArch;
/* */ } }
/* */
/* */
/* */ public void setOsArch(String osArch) { public void setOsArch(String osArch) {
/* 82 */ this.osArch = osArch; this.osArch = osArch;
/* */ } }
/* */ } }
/* Location: C:\Users\Administrator\Desktop\extracted.zip!\extracted\BOOT-INF\classes\com\archive\project\monitor\server\domain\Sys.class /* Location: C:\Users\Administrator\Desktop\extracted.zip!\extracted\BOOT-INF\classes\com\archive\project\monitor\server\domain\Sys.class

@ -1,117 +1,117 @@
/* */ package com.archive.project.monitor.server.domain; package com.archive.project.monitor.server.domain;
/* */
/* */
/* */
/* */
/* */
/* */
/* */
/* */
/* */
/* */
/* */
/* */
/* */
/* */
/* */
/* */
/* */
/* */
/* */
/* */
/* */
/* */
/* */
/* */
/* */
/* */
/* */
/* */
/* */
/* */
/* */
/* */
/* */
/* */
/* */ public class SysFile public class SysFile
/* */ { {
/* */ private String dirName; private String dirName;
/* */ private String sysTypeName; private String sysTypeName;
/* */ private String typeName; private String typeName;
/* */ private String total; private String total;
/* */ private String free; private String free;
/* */ private String used; private String used;
/* */ private double usage; private double usage;
/* */
/* */ public String getDirName() { public String getDirName() {
/* 47 */ return this.dirName; return this.dirName;
/* */ } }
/* */
/* */
/* */ public void setDirName(String dirName) { public void setDirName(String dirName) {
/* 52 */ this.dirName = dirName; this.dirName = dirName;
/* */ } }
/* */
/* */
/* */ public String getSysTypeName() { public String getSysTypeName() {
/* 57 */ return this.sysTypeName; return this.sysTypeName;
/* */ } }
/* */
/* */
/* */ public void setSysTypeName(String sysTypeName) { public void setSysTypeName(String sysTypeName) {
/* 62 */ this.sysTypeName = sysTypeName; this.sysTypeName = sysTypeName;
/* */ } }
/* */
/* */
/* */ public String getTypeName() { public String getTypeName() {
/* 67 */ return this.typeName; return this.typeName;
/* */ } }
/* */
/* */
/* */ public void setTypeName(String typeName) { public void setTypeName(String typeName) {
/* 72 */ this.typeName = typeName; this.typeName = typeName;
/* */ } }
/* */
/* */
/* */ public String getTotal() { public String getTotal() {
/* 77 */ return this.total; return this.total;
/* */ } }
/* */
/* */
/* */ public void setTotal(String total) { public void setTotal(String total) {
/* 82 */ this.total = total; this.total = total;
/* */ } }
/* */
/* */
/* */ public String getFree() { public String getFree() {
/* 87 */ return this.free; return this.free;
/* */ } }
/* */
/* */
/* */ public void setFree(String free) { public void setFree(String free) {
/* 92 */ this.free = free; this.free = free;
/* */ } }
/* */
/* */
/* */ public String getUsed() { public String getUsed() {
/* 97 */ return this.used; return this.used;
/* */ } }
/* */
/* */
/* */ public void setUsed(String used) { public void setUsed(String used) {
/* 102 */ this.used = used; this.used = used;
/* */ } }
/* */
/* */
/* */ public double getUsage() { public double getUsage() {
/* 107 */ return this.usage; return this.usage;
/* */ } }
/* */
/* */
/* */ public void setUsage(double usage) { public void setUsage(double usage) {
/* 112 */ this.usage = usage; this.usage = usage;
/* */ } }
/* */ } }
/* Location: C:\Users\Administrator\Desktop\extracted.zip!\extracted\BOOT-INF\classes\com\archive\project\monitor\server\domain\SysFile.class /* Location: C:\Users\Administrator\Desktop\extracted.zip!\extracted\BOOT-INF\classes\com\archive\project\monitor\server\domain\SysFile.class

@ -1,282 +1,282 @@
/* */ package com.archive.project.system.user.controller package com.archive.project.system.user.controller
; ;
/* */
/* */ import com.archive.common.utils.StringUtils; import com.archive.common.utils.StringUtils;
/* */ import com.archive.common.utils.poi.ExcelUtil; import com.archive.common.utils.poi.ExcelUtil;
/* */ import com.archive.common.utils.security.ShiroUtils; import com.archive.common.utils.security.ShiroUtils;
/* */ 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;
/* */ 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;
/* */ import com.archive.framework.web.page.TableDataInfo; import com.archive.framework.web.page.TableDataInfo;
/* */ import com.archive.project.system.post.service.IPostService; import com.archive.project.system.post.service.IPostService;
/* */ import com.archive.project.system.role.domain.Role; import com.archive.project.system.role.domain.Role;
/* */ import com.archive.project.system.role.service.IRoleService; import com.archive.project.system.role.service.IRoleService;
/* */ import com.archive.project.system.user.domain.User; import com.archive.project.system.user.domain.User;
/* */ import com.archive.project.system.user.service.IUserService; import com.archive.project.system.user.service.IUserService;
/* */ import java.util.List; import java.util.List;
/* */ import java.util.stream.Collectors; import java.util.stream.Collectors;
/* */ import org.apache.shiro.authz.annotation.RequiresPermissions; import org.apache.shiro.authz.annotation.RequiresPermissions;
/* */ import org.springframework.beans.factory.annotation.Autowired; import org.springframework.beans.factory.annotation.Autowired;
/* */ import org.springframework.stereotype.Controller; import org.springframework.stereotype.Controller;
/* */ import org.springframework.ui.ModelMap; import org.springframework.ui.ModelMap;
/* */ import org.springframework.validation.annotation.Validated; import org.springframework.validation.annotation.Validated;
/* */ import org.springframework.web.bind.annotation.GetMapping; import org.springframework.web.bind.annotation.GetMapping;
/* */ import org.springframework.web.bind.annotation.PathVariable; import org.springframework.web.bind.annotation.PathVariable;
/* */ import org.springframework.web.bind.annotation.PostMapping; import org.springframework.web.bind.annotation.PostMapping;
/* */ import org.springframework.web.bind.annotation.RequestMapping; import org.springframework.web.bind.annotation.RequestMapping;
/* */ import org.springframework.web.bind.annotation.ResponseBody; import org.springframework.web.bind.annotation.ResponseBody;
/* */ import org.springframework.web.multipart.MultipartFile; import org.springframework.web.multipart.MultipartFile;
/* */
/* */
/* */
/* */
/* */
/* */
/* */ @Controller @Controller
/* */ @RequestMapping({"/system/user"}) @RequestMapping({"/system/user"})
/* */ public class UserController public class UserController
/* */ extends BaseController extends BaseController
/* */ { {
/* 40 */ private String prefix = "system/user"; private String prefix = "system/user";
/* */
/* */ @Autowired @Autowired
/* */ private IUserService userService; private IUserService userService;
/* */
/* */ @Autowired @Autowired
/* */ private IRoleService roleService; private IRoleService roleService;
/* */
/* */ @Autowired @Autowired
/* */ private IPostService postService; private IPostService postService;
/* */
/* */
/* */ @RequiresPermissions({"system:user:view"}) @RequiresPermissions({"system:user:view"})
/* */ @GetMapping @GetMapping
/* */ public String user() { public String user() {
/* 55 */ return this.prefix + "/user"; return this.prefix + "/user";
/* */ } }
/* */
/* */
/* */ @RequiresPermissions({"system:user:list"}) @RequiresPermissions({"system:user:list"})
/* */ @PostMapping({"/list"}) @PostMapping({"/list"})
/* */ @ResponseBody @ResponseBody
/* */ public TableDataInfo list(User user) { public TableDataInfo list(User user) {
/* 63 */ startPage(); startPage();
/* 64 */ List<User> list = this.userService.selectUserList(user); List<User> list = this.userService.selectUserList(user);
/* 65 */ return getDataTable(list); return getDataTable(list);
/* */ } }
/* */
/* */
/* */ @Log(title = "用户管理", businessType = BusinessType.EXPORT) @Log(title = "用户管理", businessType = BusinessType.EXPORT)
/* */ @RequiresPermissions({"system:user:export"}) @RequiresPermissions({"system:user:export"})
/* */ @PostMapping({"/export"}) @PostMapping({"/export"})
/* */ @ResponseBody @ResponseBody
/* */ public AjaxResult export(User user) { public AjaxResult export(User user) {
/* 74 */ List<User> list = this.userService.selectUserList(user); List<User> list = this.userService.selectUserList(user);
/* 75 */ ExcelUtil<User> util = new ExcelUtil(User.class); ExcelUtil<User> util = new ExcelUtil(User.class);
/* 76 */ return util.exportExcel(list, "用户数据"); return util.exportExcel(list, "用户数据");
/* */ } }
/* */
/* */
/* */ @Log(title = "用户管理", businessType = BusinessType.IMPORT) @Log(title = "用户管理", businessType = BusinessType.IMPORT)
/* */ @RequiresPermissions({"system:user:import"}) @RequiresPermissions({"system:user:import"})
/* */ @PostMapping({"/importData"}) @PostMapping({"/importData"})
/* */ @ResponseBody @ResponseBody
/* */ public AjaxResult importData(MultipartFile file, boolean updateSupport) throws Exception { public AjaxResult importData(MultipartFile file, boolean updateSupport) throws Exception {
/* 85 */ ExcelUtil<User> util = new ExcelUtil(User.class); ExcelUtil<User> util = new ExcelUtil(User.class);
/* 86 */ List<User> userList = util.importExcel(file.getInputStream()); List<User> userList = util.importExcel(file.getInputStream());
/* 87 */ String message = this.userService.importUser(userList, Boolean.valueOf(updateSupport)); String message = this.userService.importUser(userList, Boolean.valueOf(updateSupport));
/* 88 */ return AjaxResult.success(message); return AjaxResult.success(message);
/* */ } }
/* */
/* */
/* */ @RequiresPermissions({"system:user:view"}) @RequiresPermissions({"system:user:view"})
/* */ @GetMapping({"/importTemplate"}) @GetMapping({"/importTemplate"})
/* */ @ResponseBody @ResponseBody
/* */ public AjaxResult importTemplate() { public AjaxResult importTemplate() {
/* 96 */ ExcelUtil<User> util = new ExcelUtil(User.class); ExcelUtil<User> util = new ExcelUtil(User.class);
/* 97 */ return util.importTemplateExcel("用户数据"); return util.importTemplateExcel("用户数据");
/* */ } }
/* */
/* */
/* */
/* */
/* */
/* */ @GetMapping({"/add"}) @GetMapping({"/add"})
/* */ public String add(ModelMap mmap) { public String add(ModelMap mmap) {
/* 106 */ mmap.put("roles", this.roleService.selectRoleAll().stream().filter(r -> !r.isAdmin()).collect(Collectors.toList())); mmap.put("roles", this.roleService.selectRoleAll().stream().filter(r -> !r.isAdmin()).collect(Collectors.toList()));
/* 107 */ mmap.put("posts", this.postService.selectPostAll()); mmap.put("posts", this.postService.selectPostAll());
/* 108 */ return this.prefix + "/add"; return this.prefix + "/add";
/* */ } }
/* */
/* */
/* */
/* */
/* */
/* */ @RequiresPermissions({"system:user:add"}) @RequiresPermissions({"system:user:add"})
/* */ @Log(title = "用户管理", businessType = BusinessType.INSERT) @Log(title = "用户管理", businessType = BusinessType.INSERT)
/* */ @PostMapping({"/add"}) @PostMapping({"/add"})
/* */ @ResponseBody @ResponseBody
/* */ public AjaxResult addSave(@Validated User user) { public AjaxResult addSave(@Validated User user) {
/* 120 */ if ("1".equals(this.userService.checkLoginNameUnique(user.getLoginName()))) if ("1".equals(this.userService.checkLoginNameUnique(user.getLoginName())))
/* */ { {
/* 122 */ return error("新增用户'" + user.getLoginName() + "'失败,登录账号已存在"); return error("新增用户'" + user.getLoginName() + "'失败,登录账号已存在");
/* */ } }
/* 124 */ if (StringUtils.isNotEmpty(user.getPhonenumber()) && "1" if (StringUtils.isNotEmpty(user.getPhonenumber()) && "1"
/* 125 */ .equals(this.userService.checkPhoneUnique(user))) .equals(this.userService.checkPhoneUnique(user)))
/* */ { {
/* 127 */ return error("新增用户'" + user.getLoginName() + "'失败,手机号码已存在"); return error("新增用户'" + user.getLoginName() + "'失败,手机号码已存在");
/* */ } }
/* 129 */ if (StringUtils.isNotEmpty(user.getEmail()) && "1" if (StringUtils.isNotEmpty(user.getEmail()) && "1"
/* 130 */ .equals(this.userService.checkEmailUnique(user))) .equals(this.userService.checkEmailUnique(user)))
/* */ { {
/* 132 */ return error("新增用户'" + user.getLoginName() + "'失败,邮箱账号已存在"); return error("新增用户'" + user.getLoginName() + "'失败,邮箱账号已存在");
/* */ } }
/* 134 */ return toAjax(this.userService.insertUser(user)); return toAjax(this.userService.insertUser(user));
/* */ } }
/* */
/* */
/* */
/* */
/* */
/* */ @GetMapping({"/edit/{userId}"}) @GetMapping({"/edit/{userId}"})
/* */ public String edit(@PathVariable("userId") Long userId, ModelMap mmap) { public String edit(@PathVariable("userId") Long userId, ModelMap mmap) {
/* 143 */ List<Role> roles = this.roleService.selectRolesByUserId(userId); List<Role> roles = this.roleService.selectRolesByUserId(userId);
/* 144 */ mmap.put("user", this.userService.selectUserById(userId)); mmap.put("user", this.userService.selectUserById(userId));
/* 145 */ mmap.put("roles", User.isAdmin(userId) ? roles : roles.stream().filter(r -> !r.isAdmin()).collect(Collectors.toList())); mmap.put("roles", User.isAdmin(userId) ? roles : roles.stream().filter(r -> !r.isAdmin()).collect(Collectors.toList()));
/* 146 */ mmap.put("posts", this.postService.selectPostsByUserId(userId)); mmap.put("posts", this.postService.selectPostsByUserId(userId));
/* 147 */ return this.prefix + "/edit"; return this.prefix + "/edit";
/* */ } }
/* */
/* */
/* */
/* */
/* */
/* */ @RequiresPermissions({"system:user:edit"}) @RequiresPermissions({"system:user:edit"})
/* */ @Log(title = "用户管理", businessType = BusinessType.UPDATE) @Log(title = "用户管理", businessType = BusinessType.UPDATE)
/* */ @PostMapping({"/edit"}) @PostMapping({"/edit"})
/* */ @ResponseBody @ResponseBody
/* */ public AjaxResult editSave(@Validated User user) { public AjaxResult editSave(@Validated User user) {
/* 159 */ this.userService.checkUserAllowed(user); this.userService.checkUserAllowed(user);
/* 160 */ if (StringUtils.isNotEmpty(user.getPhonenumber()) && "1" if (StringUtils.isNotEmpty(user.getPhonenumber()) && "1"
/* 161 */ .equals(this.userService.checkPhoneUnique(user))) .equals(this.userService.checkPhoneUnique(user)))
/* */ { {
/* 163 */ return error("修改用户'" + user.getLoginName() + "'失败,手机号码已存在"); return error("修改用户'" + user.getLoginName() + "'失败,手机号码已存在");
/* */ } }
/* 165 */ if (StringUtils.isNotEmpty(user.getEmail()) && "1" if (StringUtils.isNotEmpty(user.getEmail()) && "1"
/* 166 */ .equals(this.userService.checkEmailUnique(user))) .equals(this.userService.checkEmailUnique(user)))
/* */ { {
/* 168 */ return error("修改用户'" + user.getLoginName() + "'失败,邮箱账号已存在"); return error("修改用户'" + user.getLoginName() + "'失败,邮箱账号已存在");
/* */ } }
/* 170 */ return toAjax(this.userService.updateUser(user)); return toAjax(this.userService.updateUser(user));
/* */ } }
/* */
/* */
/* */ @RequiresPermissions({"system:user:resetPwd"}) @RequiresPermissions({"system:user:resetPwd"})
/* */ @GetMapping({"/resetPwd/{userId}"}) @GetMapping({"/resetPwd/{userId}"})
/* */ public String resetPwd(@PathVariable("userId") Long userId, ModelMap mmap) { public String resetPwd(@PathVariable("userId") Long userId, ModelMap mmap) {
/* 177 */ mmap.put("user", this.userService.selectUserById(userId)); mmap.put("user", this.userService.selectUserById(userId));
/* 178 */ return this.prefix + "/resetPwd"; return this.prefix + "/resetPwd";
/* */ } }
/* */
/* */
/* */ @RequiresPermissions({"system:user:resetPwd"}) @RequiresPermissions({"system:user:resetPwd"})
/* */ @Log(title = "重置密码", businessType = BusinessType.UPDATE) @Log(title = "重置密码", businessType = BusinessType.UPDATE)
/* */ @PostMapping({"/resetPwd"}) @PostMapping({"/resetPwd"})
/* */ @ResponseBody @ResponseBody
/* */ public AjaxResult resetPwdSave(User user) { public AjaxResult resetPwdSave(User user) {
/* 187 */ this.userService.checkUserAllowed(user); this.userService.checkUserAllowed(user);
/* 188 */ if (this.userService.resetUserPwd(user) > 0) { if (this.userService.resetUserPwd(user) > 0) {
/* */
/* 190 */ if (ShiroUtils.getUserId().longValue() == user.getUserId().longValue()) if (ShiroUtils.getUserId().longValue() == user.getUserId().longValue())
/* */ { {
/* 192 */ setSysUser(this.userService.selectUserById(user.getUserId())); setSysUser(this.userService.selectUserById(user.getUserId()));
/* */ } }
/* 194 */ return success(); return success();
/* */ } }
/* 196 */ return error(); return error();
/* */ } }
/* */
/* */
/* */
/* */
/* */
/* */ @GetMapping({"/authRole/{userId}"}) @GetMapping({"/authRole/{userId}"})
/* */ public String authRole(@PathVariable("userId") Long userId, ModelMap mmap) { public String authRole(@PathVariable("userId") Long userId, ModelMap mmap) {
/* 205 */ User user = this.userService.selectUserById(userId); User user = this.userService.selectUserById(userId);
/* */
/* 207 */ List<Role> roles = this.roleService.selectRolesByUserId(userId); List<Role> roles = this.roleService.selectRolesByUserId(userId);
/* 208 */ mmap.put("user", user); mmap.put("user", user);
/* 209 */ mmap.put("roles", User.isAdmin(userId) ? roles : roles.stream().filter(r -> !r.isAdmin()).collect(Collectors.toList())); mmap.put("roles", User.isAdmin(userId) ? roles : roles.stream().filter(r -> !r.isAdmin()).collect(Collectors.toList()));
/* 210 */ return this.prefix + "/authRole"; return this.prefix + "/authRole";
/* */ } }
/* */
/* */
/* */
/* */
/* */
/* */ @RequiresPermissions({"system:user:add"}) @RequiresPermissions({"system:user:add"})
/* */ @Log(title = "用户管理", businessType = BusinessType.GRANT) @Log(title = "用户管理", businessType = BusinessType.GRANT)
/* */ @PostMapping({"/authRole/insertAuthRole"}) @PostMapping({"/authRole/insertAuthRole"})
/* */ @ResponseBody @ResponseBody
/* */ public AjaxResult insertAuthRole(Long userId, Long[] roleIds) { public AjaxResult insertAuthRole(Long userId, Long[] roleIds) {
/* 222 */ this.userService.insertUserAuth(userId, roleIds); this.userService.insertUserAuth(userId, roleIds);
/* 223 */ return success(); return success();
/* */ } }
/* */
/* */
/* */ @RequiresPermissions({"system:user:remove"}) @RequiresPermissions({"system:user:remove"})
/* */ @Log(title = "用户管理", businessType = BusinessType.DELETE) @Log(title = "用户管理", businessType = BusinessType.DELETE)
/* */ @PostMapping({"/remove"}) @PostMapping({"/remove"})
/* */ @ResponseBody @ResponseBody
/* */ public AjaxResult remove(String ids) { public AjaxResult remove(String ids) {
/* 232 */ return toAjax(this.userService.deleteUserByIds(ids)); return toAjax(this.userService.deleteUserByIds(ids));
/* */ } }
/* */
/* */
/* */
/* */
/* */
/* */ @PostMapping({"/checkLoginNameUnique"}) @PostMapping({"/checkLoginNameUnique"})
/* */ @ResponseBody @ResponseBody
/* */ public String checkLoginNameUnique(User user) { public String checkLoginNameUnique(User user) {
/* 242 */ return this.userService.checkLoginNameUnique(user.getLoginName()); return this.userService.checkLoginNameUnique(user.getLoginName());
/* */ } }
/* */
/* */
/* */
/* */
/* */
/* */ @PostMapping({"/checkPhoneUnique"}) @PostMapping({"/checkPhoneUnique"})
/* */ @ResponseBody @ResponseBody
/* */ public String checkPhoneUnique(User user) { public String checkPhoneUnique(User user) {
/* 252 */ return this.userService.checkPhoneUnique(user); return this.userService.checkPhoneUnique(user);
/* */ } }
/* */
/* */
/* */
/* */
/* */
/* */ @PostMapping({"/checkEmailUnique"}) @PostMapping({"/checkEmailUnique"})
/* */ @ResponseBody @ResponseBody
/* */ public String checkEmailUnique(User user) { public String checkEmailUnique(User user) {
/* 262 */ return this.userService.checkEmailUnique(user); return this.userService.checkEmailUnique(user);
/* */ } }
/* */
/* */
/* */
/* */
/* */
/* */ @Log(title = "用户管理", businessType = BusinessType.UPDATE) @Log(title = "用户管理", businessType = BusinessType.UPDATE)
/* */ @RequiresPermissions({"system:user:edit"}) @RequiresPermissions({"system:user:edit"})
/* */ @PostMapping({"/changeStatus"}) @PostMapping({"/changeStatus"})
/* */ @ResponseBody @ResponseBody
/* */ public AjaxResult changeStatus(User user) { public AjaxResult changeStatus(User user) {
/* 274 */ this.userService.checkUserAllowed(user); this.userService.checkUserAllowed(user);
/* 275 */ return toAjax(this.userService.changeStatus(user)); return toAjax(this.userService.changeStatus(user));
/* */ } }
/* */ } }
/* Location: C:\Users\Administrator\Desktop\extracted.zip!\extracted\BOOT-INF\classes\com\archive\project\syste\\user\controller\UserController.class /* Location: C:\Users\Administrator\Desktop\extracted.zip!\extracted\BOOT-INF\classes\com\archive\project\syste\\user\controller\UserController.class

@ -1,402 +1,402 @@
/* */ package com.archive.project.system.user.domain package com.archive.project.system.user.domain
; ;
/* */
/* */ import com.archive.framework.aspectj.lang.annotation.ColumnType; import com.archive.framework.aspectj.lang.annotation.ColumnType;
import com.archive.framework.aspectj.lang.annotation.Excel; import com.archive.framework.aspectj.lang.annotation.Excel;
/* */ import com.archive.framework.aspectj.lang.annotation.Excels; import com.archive.framework.aspectj.lang.annotation.Excels;
/* */ import com.archive.framework.aspectj.lang.annotation.Type; import com.archive.framework.aspectj.lang.annotation.Type;
import com.archive.framework.web.domain.BaseEntity; import com.archive.framework.web.domain.BaseEntity;
/* */ import com.archive.project.system.dept.domain.Dept; import com.archive.project.system.dept.domain.Dept;
/* */ import com.archive.project.system.role.domain.Role; import com.archive.project.system.role.domain.Role;
/* */ import com.fasterxml.jackson.annotation.JsonIgnore; import com.fasterxml.jackson.annotation.JsonIgnore;
/* */ import java.util.Date; import java.util.Date;
/* */ import java.util.List; import java.util.List;
/* */ import javax.validation.constraints.Email; import javax.validation.constraints.Email;
/* */ import javax.validation.constraints.NotBlank; import javax.validation.constraints.NotBlank;
/* */ import javax.validation.constraints.Size; import javax.validation.constraints.Size;
/* */ import org.apache.commons.lang3.builder.ToStringBuilder; import org.apache.commons.lang3.builder.ToStringBuilder;
/* */ import org.apache.commons.lang3.builder.ToStringStyle; import org.apache.commons.lang3.builder.ToStringStyle;
/* */ import org.apache.shiro.crypto.SecureRandomNumberGenerator; import org.apache.shiro.crypto.SecureRandomNumberGenerator;
/* */
/* */
/* */
/* */
/* */
/* */
/* */
/* */
/* */
/* */
/* */
/* */
/* */
/* */
/* */
/* */
/* */
/* */
/* */
/* */
/* */
/* */
/* */
/* */
/* */
/* */
/* */
/* */
/* */
/* */
/* */
/* */
/* */
/* */
/* */
/* */
/* */
/* */
/* */
/* */
/* */
/* */
/* */
/* */
/* */
/* */
/* */
/* */
/* */
/* */
/* */
/* */
/* */
/* */
/* */
/* */ public class User public class User
/* */ extends BaseEntity extends BaseEntity
/* */ { {
/* */ private static final long serialVersionUID = 1L; private static final long serialVersionUID = 1L;
/* */ @Excel(name = "用户序号", cellType = ColumnType.NUMERIC, prompt = "用户编号") @Excel(name = "用户序号", cellType = ColumnType.NUMERIC, prompt = "用户编号")
/* */ private Long userId; private Long userId;
/* */ @Excel(name = "部门编号", type = Type.IMPORT) @Excel(name = "部门编号", type = Type.IMPORT)
/* */ private Long deptId; private Long deptId;
/* */ private Long parentId; private Long parentId;
/* */ private Long roleId; private Long roleId;
/* */ @Excel(name = "登录名称") @Excel(name = "登录名称")
/* */ private String loginName; private String loginName;
/* */ @Excel(name = "用户名称") @Excel(name = "用户名称")
/* */ private String userName; private String userName;
/* */ private String userType; private String userType;
/* */ @Excel(name = "用户邮箱") @Excel(name = "用户邮箱")
/* */ private String email; private String email;
/* */ @Excel(name = "手机号码") @Excel(name = "手机号码")
/* */ private String phonenumber; private String phonenumber;
/* */ @Excel(name = "用户性别", readConverterExp = "0=男,1=女,2=未知") @Excel(name = "用户性别", readConverterExp = "0=男,1=女,2=未知")
/* */ private String sex; private String sex;
/* */ private String avatar; private String avatar;
/* */ private String password; private String password;
/* */ private String salt; private String salt;
/* */ @Excel(name = "帐号状态", readConverterExp = "0=正常,1=停用") @Excel(name = "帐号状态", readConverterExp = "0=正常,1=停用")
/* */ private String status; private String status;
/* */ private String delFlag; private String delFlag;
/* */ @Excel(name = "最后登录IP", type = Type.EXPORT) @Excel(name = "最后登录IP", type = Type.EXPORT)
/* */ private String loginIp; private String loginIp;
/* */ @Excel(name = "最后登录时间", width = 30.0D, dateFormat = "yyyy-MM-dd HH:mm:ss", type = Type.EXPORT) @Excel(name = "最后登录时间", width = 30.0D, dateFormat = "yyyy-MM-dd HH:mm:ss", type = Type.EXPORT)
/* */ private Date loginDate; private Date loginDate;
/* */ private Date pwdUpdateDate; private Date pwdUpdateDate;
/* */ @Excels({@Excel(name = "部门名称", targetAttr = "deptName", type = Type.EXPORT), @Excel(name = "部门负责人", targetAttr = "leader", type = Type.EXPORT)}) @Excels({@Excel(name = "部门名称", targetAttr = "deptName", type = Type.EXPORT), @Excel(name = "部门负责人", targetAttr = "leader", type = Type.EXPORT)})
/* */ private Dept dept; private Dept dept;
/* */ private List<Role> roles; private List<Role> roles;
/* */ private Long[] roleIds; private Long[] roleIds;
/* */ private Long[] postIds; private Long[] postIds;
/* */
/* */ public User() {} public User() {}
/* */
/* */ public User(Long userId) { public User(Long userId) {
/* 113 */ this.userId = userId; this.userId = userId;
/* */ } }
/* */
/* */
/* */ public Long getUserId() { public Long getUserId() {
/* 118 */ return this.userId; return this.userId;
/* */ } }
/* */
/* */
/* */ public void setUserId(Long userId) { public void setUserId(Long userId) {
/* 123 */ this.userId = userId; this.userId = userId;
/* */ } }
/* */
/* */
/* */ public boolean isAdmin() { public boolean isAdmin() {
/* 128 */ return isAdmin(this.userId); return isAdmin(this.userId);
/* */ } }
/* */
/* */
/* */ public static boolean isAdmin(Long userId) { public static boolean isAdmin(Long userId) {
/* 133 */ return (userId != null && 1L == userId.longValue()); return (userId != null && 1L == userId.longValue());
/* */ } }
/* */
/* */
/* */ public Long getDeptId() { public Long getDeptId() {
/* 138 */ return this.deptId; return this.deptId;
/* */ } }
/* */
/* */
/* */ public void setDeptId(Long deptId) { public void setDeptId(Long deptId) {
/* 143 */ this.deptId = deptId; this.deptId = deptId;
/* */ } }
/* */
/* */
/* */ public Long getParentId() { public Long getParentId() {
/* 148 */ return this.parentId; return this.parentId;
/* */ } }
/* */
/* */
/* */ public void setParentId(Long parentId) { public void setParentId(Long parentId) {
/* 153 */ this.parentId = parentId; this.parentId = parentId;
/* */ } }
/* */
/* */
/* */ public Long getRoleId() { public Long getRoleId() {
/* 158 */ return this.roleId; return this.roleId;
/* */ } }
/* */
/* */
/* */ public void setRoleId(Long roleId) { public void setRoleId(Long roleId) {
/* 163 */ this.roleId = roleId; this.roleId = roleId;
/* */ } }
/* */
/* */
/* */ @NotBlank(message = "登录账号不能为空") @NotBlank(message = "登录账号不能为空")
/* */ @Size(min = 0, max = 30, message = "登录账号长度不能超过30个字符") @Size(min = 0, max = 30, message = "登录账号长度不能超过30个字符")
/* */ public String getLoginName() { public String getLoginName() {
/* 170 */ return this.loginName; return this.loginName;
/* */ } }
/* */
/* */
/* */ public void setLoginName(String loginName) { public void setLoginName(String loginName) {
/* 175 */ this.loginName = loginName; this.loginName = loginName;
/* */ } }
/* */
/* */
/* */ @Size(min = 0, max = 30, message = "用户昵称长度不能超过30个字符") @Size(min = 0, max = 30, message = "用户昵称长度不能超过30个字符")
/* */ public String getUserName() { public String getUserName() {
/* 181 */ return this.userName; return this.userName;
/* */ } }
/* */
/* */
/* */ public void setUserName(String userName) { public void setUserName(String userName) {
/* 186 */ this.userName = userName; this.userName = userName;
/* */ } }
/* */
/* */
/* */ public String getUserType() { public String getUserType() {
/* 191 */ return this.userType; return this.userType;
/* */ } }
/* */
/* */
/* */ public void setUserType(String userType) { public void setUserType(String userType) {
/* 196 */ this.userType = userType; this.userType = userType;
/* */ } }
/* */
/* */
/* */ @Email(message = "邮箱格式不正确") @Email(message = "邮箱格式不正确")
/* */ @Size(min = 0, max = 50, message = "邮箱长度不能超过50个字符") @Size(min = 0, max = 50, message = "邮箱长度不能超过50个字符")
/* */ public String getEmail() { public String getEmail() {
/* 203 */ return this.email; return this.email;
/* */ } }
/* */
/* */
/* */ public void setEmail(String email) { public void setEmail(String email) {
/* 208 */ this.email = email; this.email = email;
/* */ } }
/* */
/* */
/* */ @Size(min = 0, max = 11, message = "手机号码长度不能超过11个字符") @Size(min = 0, max = 11, message = "手机号码长度不能超过11个字符")
/* */ public String getPhonenumber() { public String getPhonenumber() {
/* 214 */ return this.phonenumber; return this.phonenumber;
/* */ } }
/* */
/* */
/* */ public void setPhonenumber(String phonenumber) { public void setPhonenumber(String phonenumber) {
/* 219 */ this.phonenumber = phonenumber; this.phonenumber = phonenumber;
/* */ } }
/* */
/* */
/* */ public String getSex() { public String getSex() {
/* 224 */ return this.sex; return this.sex;
/* */ } }
/* */
/* */
/* */ public void setSex(String sex) { public void setSex(String sex) {
/* 229 */ this.sex = sex; this.sex = sex;
/* */ } }
/* */
/* */
/* */ public String getAvatar() { public String getAvatar() {
/* 234 */ return this.avatar; return this.avatar;
/* */ } }
/* */
/* */
/* */ public void setAvatar(String avatar) { public void setAvatar(String avatar) {
/* 239 */ this.avatar = avatar; this.avatar = avatar;
/* */ } }
/* */
/* */
/* */ @JsonIgnore @JsonIgnore
/* */ public String getPassword() { public String getPassword() {
/* 245 */ return this.password; return this.password;
/* */ } }
/* */
/* */
/* */ public void setPassword(String password) { public void setPassword(String password) {
/* 250 */ this.password = password; this.password = password;
/* */ } }
/* */
/* */
/* */ public String getSalt() { public String getSalt() {
/* 255 */ return this.salt; return this.salt;
/* */ } }
/* */
/* */
/* */ public void setSalt(String salt) { public void setSalt(String salt) {
/* 260 */ this.salt = salt; this.salt = salt;
/* */ } }
/* */
/* */
/* */
/* */
/* */
/* */
/* */ public void randomSalt() { public void randomSalt() {
/* 269 */ SecureRandomNumberGenerator secureRandom = new SecureRandomNumberGenerator(); SecureRandomNumberGenerator secureRandom = new SecureRandomNumberGenerator();
/* 270 */ String hex = secureRandom.nextBytes(3).toHex(); String hex = secureRandom.nextBytes(3).toHex();
/* 271 */ setSalt(hex); setSalt(hex);
/* */ } }
/* */
/* */
/* */ public String getStatus() { public String getStatus() {
/* 276 */ return this.status; return this.status;
/* */ } }
/* */
/* */
/* */ public void setStatus(String status) { public void setStatus(String status) {
/* 281 */ this.status = status; this.status = status;
/* */ } }
/* */
/* */
/* */ public String getDelFlag() { public String getDelFlag() {
/* 286 */ return this.delFlag; return this.delFlag;
/* */ } }
/* */
/* */
/* */ public void setDelFlag(String delFlag) { public void setDelFlag(String delFlag) {
/* 291 */ this.delFlag = delFlag; this.delFlag = delFlag;
/* */ } }
/* */
/* */
/* */ public String getLoginIp() { public String getLoginIp() {
/* 296 */ return this.loginIp; return this.loginIp;
/* */ } }
/* */
/* */
/* */ public void setLoginIp(String loginIp) { public void setLoginIp(String loginIp) {
/* 301 */ this.loginIp = loginIp; this.loginIp = loginIp;
/* */ } }
/* */
/* */
/* */ public Date getLoginDate() { public Date getLoginDate() {
/* 306 */ return this.loginDate; return this.loginDate;
/* */ } }
/* */
/* */
/* */ public void setLoginDate(Date loginDate) { public void setLoginDate(Date loginDate) {
/* 311 */ this.loginDate = loginDate; this.loginDate = loginDate;
/* */ } }
/* */
/* */
/* */ public Date getPwdUpdateDate() { public Date getPwdUpdateDate() {
/* 316 */ return this.pwdUpdateDate; return this.pwdUpdateDate;
/* */ } }
/* */
/* */
/* */ public void setPwdUpdateDate(Date pwdUpdateDate) { public void setPwdUpdateDate(Date pwdUpdateDate) {
/* 321 */ this.pwdUpdateDate = pwdUpdateDate; this.pwdUpdateDate = pwdUpdateDate;
/* */ } }
/* */
/* */
/* */ public Dept getDept() { public Dept getDept() {
/* 326 */ if (this.dept == null) if (this.dept == null)
/* */ { {
/* 328 */ this.dept = new Dept(); this.dept = new Dept();
/* */ } }
/* 330 */ return this.dept; return this.dept;
/* */ } }
/* */
/* */
/* */ public void setDept(Dept dept) { public void setDept(Dept dept) {
/* 335 */ this.dept = dept; this.dept = dept;
/* */ } }
/* */
/* */
/* */ public List<Role> getRoles() { public List<Role> getRoles() {
/* 340 */ return this.roles; return this.roles;
/* */ } }
/* */
/* */
/* */ public void setRoles(List<Role> roles) { public void setRoles(List<Role> roles) {
/* 345 */ this.roles = roles; this.roles = roles;
/* */ } }
/* */
/* */
/* */ public Long[] getRoleIds() { public Long[] getRoleIds() {
/* 350 */ return this.roleIds; return this.roleIds;
/* */ } }
/* */
/* */
/* */ public void setRoleIds(Long[] roleIds) { public void setRoleIds(Long[] roleIds) {
/* 355 */ this.roleIds = roleIds; this.roleIds = roleIds;
/* */ } }
/* */
/* */
/* */ public Long[] getPostIds() { public Long[] getPostIds() {
/* 360 */ return this.postIds; return this.postIds;
/* */ } }
/* */
/* */
/* */ public void setPostIds(Long[] postIds) { public void setPostIds(Long[] postIds) {
/* 365 */ this.postIds = postIds; this.postIds = postIds;
/* */ } }
/* */
/* */ @Override @Override
/* */ public String toString() { public String toString() {
/* 370 */ return (new ToStringBuilder(this, ToStringStyle.MULTI_LINE_STYLE)) return (new ToStringBuilder(this, ToStringStyle.MULTI_LINE_STYLE))
/* 371 */ .append("userId", getUserId()) .append("userId", getUserId())
/* 372 */ .append("deptId", getDeptId()) .append("deptId", getDeptId())
/* 373 */ .append("loginName", getLoginName()) .append("loginName", getLoginName())
/* 374 */ .append("userName", getUserName()) .append("userName", getUserName())
/* 375 */ .append("userType", getUserType()) .append("userType", getUserType())
/* 376 */ .append("email", getEmail()) .append("email", getEmail())
/* 377 */ .append("phonenumber", getPhonenumber()) .append("phonenumber", getPhonenumber())
/* 378 */ .append("sex", getSex()) .append("sex", getSex())
/* 379 */ .append("avatar", getAvatar()) .append("avatar", getAvatar())
/* 380 */ .append("password", getPassword()) .append("password", getPassword())
/* 381 */ .append("salt", getSalt()) .append("salt", getSalt())
/* 382 */ .append("status", getStatus()) .append("status", getStatus())
/* 383 */ .append("delFlag", getDelFlag()) .append("delFlag", getDelFlag())
/* 384 */ .append("loginIp", getLoginIp()) .append("loginIp", getLoginIp())
/* 385 */ .append("loginDate", getLoginDate()) .append("loginDate", getLoginDate())
/* 386 */ .append("createBy", getCreateBy()) .append("createBy", getCreateBy())
/* 387 */ .append("createTime", getCreateTime()) .append("createTime", getCreateTime())
/* 388 */ .append("updateBy", getUpdateBy()) .append("updateBy", getUpdateBy())
/* 389 */ .append("updateTime", getUpdateTime()) .append("updateTime", getUpdateTime())
/* 390 */ .append("remark", getRemark()) .append("remark", getRemark())
/* 391 */ .append("dept", getDept()) .append("dept", getDept())
/* 392 */ .append("roles", getRoles()) .append("roles", getRoles())
/* 393 */ .toString(); .toString();
/* */ } }
/* */ } }
/* Location: C:\Users\Administrator\Desktop\extracted.zip!\extracted\BOOT-INF\classes\com\archive\project\syste\\user\domain\User.class /* Location: C:\Users\Administrator\Desktop\extracted.zip!\extracted\BOOT-INF\classes\com\archive\project\syste\\user\domain\User.class

@ -1,29 +1,29 @@
/* */ package com.archive.project.tool.swagger package com.archive.project.tool.swagger
; ;
/* */
/* */ import com.archive.framework.web.controller.BaseController; import com.archive.framework.web.controller.BaseController;
/* */ import org.apache.shiro.authz.annotation.RequiresPermissions; import org.apache.shiro.authz.annotation.RequiresPermissions;
/* */ import org.springframework.stereotype.Controller; import org.springframework.stereotype.Controller;
/* */ import org.springframework.web.bind.annotation.GetMapping; import org.springframework.web.bind.annotation.GetMapping;
/* */ import org.springframework.web.bind.annotation.RequestMapping; import org.springframework.web.bind.annotation.RequestMapping;
/* */
/* */
/* */
/* */
/* */
/* */
/* */ @Controller @Controller
/* */ @RequestMapping({"/tool/swagger"}) @RequestMapping({"/tool/swagger"})
/* */ public class SwaggerController public class SwaggerController
/* */ extends BaseController extends BaseController
/* */ { {
/* */ @RequiresPermissions({"tool:swagger:view"}) @RequiresPermissions({"tool:swagger:view"})
/* */ @GetMapping @GetMapping
/* */ public String index() { public String index() {
/* 22 */ return redirect("/swagger-ui.html"); return redirect("/swagger-ui.html");
/* */ } }
/* */ } }
/* Location: C:\Users\Administrator\Desktop\extracted.zip!\extracted\BOOT-INF\classes\com\archive\project\tool\swagger\SwaggerController.class /* Location: C:\Users\Administrator\Desktop\extracted.zip!\extracted\BOOT-INF\classes\com\archive\project\tool\swagger\SwaggerController.class

@ -1,110 +1,110 @@
/* */ package com.archive.project.tool.swagger package com.archive.project.tool.swagger
; ;
/* */
/* */ import com.archive.common.utils.StringUtils; import com.archive.common.utils.StringUtils;
/* */ 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;
/* */ import com.archive.project.tool.swagger.UserEntity; import com.archive.project.tool.swagger.UserEntity;
/* */ import io.swagger.annotations.Api; import io.swagger.annotations.Api;
/* */ import io.swagger.annotations.ApiImplicitParam; import io.swagger.annotations.ApiImplicitParam;
/* */ import io.swagger.annotations.ApiOperation; import io.swagger.annotations.ApiOperation;
/* */ import java.util.ArrayList; import java.util.ArrayList;
/* */ import java.util.LinkedHashMap; import java.util.LinkedHashMap;
/* */ import java.util.List; import java.util.List;
/* */ import java.util.Map; import java.util.Map;
/* */ import org.springframework.web.bind.annotation.DeleteMapping; import org.springframework.web.bind.annotation.DeleteMapping;
/* */ import org.springframework.web.bind.annotation.GetMapping; import org.springframework.web.bind.annotation.GetMapping;
/* */ import org.springframework.web.bind.annotation.PathVariable; import org.springframework.web.bind.annotation.PathVariable;
/* */ import org.springframework.web.bind.annotation.PostMapping; import org.springframework.web.bind.annotation.PostMapping;
/* */ import org.springframework.web.bind.annotation.PutMapping; import org.springframework.web.bind.annotation.PutMapping;
/* */ import org.springframework.web.bind.annotation.RequestMapping; import org.springframework.web.bind.annotation.RequestMapping;
/* */ import org.springframework.web.bind.annotation.RestController; import org.springframework.web.bind.annotation.RestController;
/* */
/* */
/* */
/* */
/* */
/* */
/* */
/* */ @Api("用户信息管理") @Api("用户信息管理")
/* */ @RestController @RestController
/* */ @RequestMapping({"/test/user"}) @RequestMapping({"/test/user"})
/* */ public class TestController public class TestController
/* */ extends BaseController extends BaseController
/* */ { {
/* */ public TestController() { public TestController() {
/* 35 */ users.put(Integer.valueOf(1), new UserEntity(Integer.valueOf(1), "admin", "admin123", "15888888888")); users.put(Integer.valueOf(1), new UserEntity(Integer.valueOf(1), "admin", "admin123", "15888888888"));
/* 36 */ users.put(Integer.valueOf(2), new UserEntity(Integer.valueOf(2), "ry", "admin123", "15666666666")); users.put(Integer.valueOf(2), new UserEntity(Integer.valueOf(2), "ry", "admin123", "15666666666"));
/* */ } }
/* */
/* */
/* */ @ApiOperation("获取用户列表") @ApiOperation("获取用户列表")
/* */ @GetMapping({"/list"}) @GetMapping({"/list"})
/* */ public AjaxResult userList() { public AjaxResult userList() {
/* 43 */ List<UserEntity> userList = new ArrayList<>(users.values()); List<UserEntity> userList = new ArrayList<>(users.values());
/* 44 */ return AjaxResult.success(userList); return AjaxResult.success(userList);
/* */ } }
/* */ private static final Map<Integer, UserEntity> users = new LinkedHashMap<>(); private static final Map<Integer, UserEntity> users = new LinkedHashMap<>();
/* */
/* */ @ApiOperation("获取用户详细") @ApiOperation("获取用户详细")
/* */ @ApiImplicitParam(name = "userId", value = "用户ID", required = true, dataType = "int", paramType = "path") @ApiImplicitParam(name = "userId", value = "用户ID", required = true, dataType = "int", paramType = "path")
/* */ @GetMapping({"/{userId}"}) @GetMapping({"/{userId}"})
/* */ public AjaxResult getUser(@PathVariable Integer userId) { public AjaxResult getUser(@PathVariable Integer userId) {
/* 52 */ if (!users.isEmpty() && users.containsKey(userId)) if (!users.isEmpty() && users.containsKey(userId))
/* */ { {
/* 54 */ return AjaxResult.success(users.get(userId)); return AjaxResult.success(users.get(userId));
/* */ } }
/* */
/* */
/* 58 */ return error("用户不存在"); return error("用户不存在");
/* */ } }
/* */
/* */
/* */
/* */ @ApiOperation("新增用户") @ApiOperation("新增用户")
/* */ @ApiImplicitParam(name = "userEntity", value = "新增用户信息", dataType = "UserEntity") @ApiImplicitParam(name = "userEntity", value = "新增用户信息", dataType = "UserEntity")
/* */ @PostMapping({"/save"}) @PostMapping({"/save"})
/* */ public AjaxResult save(UserEntity user) { public AjaxResult save(UserEntity user) {
/* 67 */ if (StringUtils.isNull(user) || StringUtils.isNull(user.getUserId())) if (StringUtils.isNull(user) || StringUtils.isNull(user.getUserId()))
/* */ { {
/* 69 */ return error("用户ID不能为空"); return error("用户ID不能为空");
/* */ } }
/* 71 */ return AjaxResult.success(users.put(user.getUserId(), user)); return AjaxResult.success(users.put(user.getUserId(), user));
/* */ } }
/* */
/* */
/* */ @ApiOperation("更新用户") @ApiOperation("更新用户")
/* */ @ApiImplicitParam(name = "userEntity", value = "新增用户信息", dataType = "UserEntity") @ApiImplicitParam(name = "userEntity", value = "新增用户信息", dataType = "UserEntity")
/* */ @PutMapping({"/update"}) @PutMapping({"/update"})
/* */ public AjaxResult update(UserEntity user) { public AjaxResult update(UserEntity user) {
/* 79 */ if (StringUtils.isNull(user) || StringUtils.isNull(user.getUserId())) if (StringUtils.isNull(user) || StringUtils.isNull(user.getUserId()))
/* */ { {
/* 81 */ return error("用户ID不能为空"); return error("用户ID不能为空");
/* */ } }
/* 83 */ if (users.isEmpty() || !users.containsKey(user.getUserId())) if (users.isEmpty() || !users.containsKey(user.getUserId()))
/* */ { {
/* 85 */ return error("用户不存在"); return error("用户不存在");
/* */ } }
/* 87 */ users.remove(user.getUserId()); users.remove(user.getUserId());
/* 88 */ return AjaxResult.success(users.put(user.getUserId(), user)); return AjaxResult.success(users.put(user.getUserId(), user));
/* */ } }
/* */
/* */
/* */ @ApiOperation("删除用户信息") @ApiOperation("删除用户信息")
/* */ @ApiImplicitParam(name = "userId", value = "用户ID", required = true, dataType = "int", paramType = "path") @ApiImplicitParam(name = "userId", value = "用户ID", required = true, dataType = "int", paramType = "path")
/* */ @DeleteMapping({"/{userId}"}) @DeleteMapping({"/{userId}"})
/* */ public AjaxResult delete(@PathVariable Integer userId) { public AjaxResult delete(@PathVariable Integer userId) {
/* 96 */ if (!users.isEmpty() && users.containsKey(userId)) { if (!users.isEmpty() && users.containsKey(userId)) {
/* */
/* 98 */ users.remove(userId); users.remove(userId);
/* 99 */ return success(); return success();
/* */ } }
/* */
/* */
/* 103 */ return error("用户不存在"); return error("用户不存在");
/* */ } }
/* */ } }
/* Location: C:\Users\Administrator\Desktop\extracted.zip!\extracted\BOOT-INF\classes\com\archive\project\tool\swagger\TestController.class /* Location: C:\Users\Administrator\Desktop\extracted.zip!\extracted\BOOT-INF\classes\com\archive\project\tool\swagger\TestController.class

@ -544,10 +544,10 @@
.note-editor .dl-horizontal dd:before, .note-editor .dl-horizontal dd:before,
.note-editor .dl-horizontal dd:after { .note-editor .dl-horizontal dd:after {
content: " "; content: " ";
/* 1 */
display: table; display: table;
/* 2 */
} }
.note-editor .dl-horizontal dd:after { .note-editor .dl-horizontal dd:after {
@ -556,10 +556,10 @@
.note-editor .dl-horizontal dd:before, .note-editor .dl-horizontal dd:before,
.note-editor .dl-horizontal dd:after { .note-editor .dl-horizontal dd:after {
content: " "; content: " ";
/* 1 */
display: table; display: table;
/* 2 */
} }
.note-editor .dl-horizontal dd:after { .note-editor .dl-horizontal dd:after {
@ -672,10 +672,10 @@
.note-editor .container:before, .note-editor .container:before,
.note-editor .container:after { .note-editor .container:after {
content: " "; content: " ";
/* 1 */
display: table; display: table;
/* 2 */
} }
.note-editor .container:after { .note-editor .container:after {
@ -684,10 +684,10 @@
.note-editor .container:before, .note-editor .container:before,
.note-editor .container:after { .note-editor .container:after {
content: " "; content: " ";
/* 1 */
display: table; display: table;
/* 2 */
} }
.note-editor .container:after { .note-editor .container:after {
@ -700,10 +700,10 @@
.note-editor .row:before, .note-editor .row:before,
.note-editor .row:after { .note-editor .row:after {
content: " "; content: " ";
/* 1 */
display: table; display: table;
/* 2 */
} }
.note-editor .row:after { .note-editor .row:after {
@ -712,10 +712,10 @@
.note-editor .row:before, .note-editor .row:before,
.note-editor .row:after { .note-editor .row:after {
content: " "; content: " ";
/* 1 */
display: table; display: table;
/* 2 */
} }
.note-editor .row:after { .note-editor .row:after {
@ -1837,10 +1837,10 @@ textarea.note-editor .input-lg {
.note-editor .form-horizontal .form-group:before, .note-editor .form-horizontal .form-group:before,
.note-editor .form-horizontal .form-group:after { .note-editor .form-horizontal .form-group:after {
content: " "; content: " ";
/* 1 */
display: table; display: table;
/* 2 */
} }
.note-editor .form-horizontal .form-group:after { .note-editor .form-horizontal .form-group:after {
@ -1849,10 +1849,10 @@ textarea.note-editor .input-lg {
.note-editor .form-horizontal .form-group:before, .note-editor .form-horizontal .form-group:before,
.note-editor .form-horizontal .form-group:after { .note-editor .form-horizontal .form-group:after {
content: " "; content: " ";
/* 1 */
display: table; display: table;
/* 2 */
} }
.note-editor .form-horizontal .form-group:after { .note-editor .form-horizontal .form-group:after {
@ -3019,10 +3019,10 @@ fieldset[disabled] .note-editor .btn-link:focus {
.note-editor .btn-toolbar:before, .note-editor .btn-toolbar:before,
.note-editor .btn-toolbar:after { .note-editor .btn-toolbar:after {
content: " "; content: " ";
/* 1 */
display: table; display: table;
/* 2 */
} }
.note-editor .btn-toolbar:after { .note-editor .btn-toolbar:after {
@ -3031,10 +3031,10 @@ fieldset[disabled] .note-editor .btn-link:focus {
.note-editor .btn-toolbar:before, .note-editor .btn-toolbar:before,
.note-editor .btn-toolbar:after { .note-editor .btn-toolbar:after {
content: " "; content: " ";
/* 1 */
display: table; display: table;
/* 2 */
} }
.note-editor .btn-toolbar:after { .note-editor .btn-toolbar:after {
@ -3134,10 +3134,10 @@ fieldset[disabled] .note-editor .btn-link:focus {
.note-editor .btn-group-vertical > .btn-group:before, .note-editor .btn-group-vertical > .btn-group:before,
.note-editor .btn-group-vertical > .btn-group:after { .note-editor .btn-group-vertical > .btn-group:after {
content: " "; content: " ";
/* 1 */
display: table; display: table;
/* 2 */
} }
.note-editor .btn-group-vertical > .btn-group:after { .note-editor .btn-group-vertical > .btn-group:after {
@ -3146,10 +3146,10 @@ fieldset[disabled] .note-editor .btn-link:focus {
.note-editor .btn-group-vertical > .btn-group:before, .note-editor .btn-group-vertical > .btn-group:before,
.note-editor .btn-group-vertical > .btn-group:after { .note-editor .btn-group-vertical > .btn-group:after {
content: " "; content: " ";
/* 1 */
display: table; display: table;
/* 2 */
} }
.note-editor .btn-group-vertical > .btn-group:after { .note-editor .btn-group-vertical > .btn-group:after {
@ -3350,10 +3350,10 @@ textarea.note-editor .input-group-sm > .input-group-btn > .btn {
.note-editor .nav:before, .note-editor .nav:before,
.note-editor .nav:after { .note-editor .nav:after {
content: " "; content: " ";
/* 1 */
display: table; display: table;
/* 2 */
} }
.note-editor .nav:after { .note-editor .nav:after {
@ -3362,10 +3362,10 @@ textarea.note-editor .input-group-sm > .input-group-btn > .btn {
.note-editor .nav:before, .note-editor .nav:before,
.note-editor .nav:after { .note-editor .nav:after {
content: " "; content: " ";
/* 1 */
display: table; display: table;
/* 2 */
} }
.note-editor .nav:after { .note-editor .nav:after {
@ -3580,10 +3580,10 @@ textarea.note-editor .input-group-sm > .input-group-btn > .btn {
.note-editor .navbar:before, .note-editor .navbar:before,
.note-editor .navbar:after { .note-editor .navbar:after {
content: " "; content: " ";
/* 1 */
display: table; display: table;
/* 2 */
} }
.note-editor .navbar:after { .note-editor .navbar:after {
@ -3592,10 +3592,10 @@ textarea.note-editor .input-group-sm > .input-group-btn > .btn {
.note-editor .navbar:before, .note-editor .navbar:before,
.note-editor .navbar:after { .note-editor .navbar:after {
content: " "; content: " ";
/* 1 */
display: table; display: table;
/* 2 */
} }
.note-editor .navbar:after { .note-editor .navbar:after {
@ -3609,10 +3609,10 @@ textarea.note-editor .input-group-sm > .input-group-btn > .btn {
.note-editor .navbar-header:before, .note-editor .navbar-header:before,
.note-editor .navbar-header:after { .note-editor .navbar-header:after {
content: " "; content: " ";
/* 1 */
display: table; display: table;
/* 2 */
} }
.note-editor .navbar-header:after { .note-editor .navbar-header:after {
@ -3621,10 +3621,10 @@ textarea.note-editor .input-group-sm > .input-group-btn > .btn {
.note-editor .navbar-header:before, .note-editor .navbar-header:before,
.note-editor .navbar-header:after { .note-editor .navbar-header:after {
content: " "; content: " ";
/* 1 */
display: table; display: table;
/* 2 */
} }
.note-editor .navbar-header:after { .note-editor .navbar-header:after {
@ -3647,10 +3647,10 @@ textarea.note-editor .input-group-sm > .input-group-btn > .btn {
.note-editor .navbar-collapse:before, .note-editor .navbar-collapse:before,
.note-editor .navbar-collapse:after { .note-editor .navbar-collapse:after {
content: " "; content: " ";
/* 1 */
display: table; display: table;
/* 2 */
} }
.note-editor .navbar-collapse:after { .note-editor .navbar-collapse:after {
@ -3659,10 +3659,10 @@ textarea.note-editor .input-group-sm > .input-group-btn > .btn {
.note-editor .navbar-collapse:before, .note-editor .navbar-collapse:before,
.note-editor .navbar-collapse:after { .note-editor .navbar-collapse:after {
content: " "; content: " ";
/* 1 */
display: table; display: table;
/* 2 */
} }
.note-editor .navbar-collapse:after { .note-editor .navbar-collapse:after {
@ -4222,10 +4222,10 @@ textarea.note-editor .input-group-sm > .input-group-btn > .btn {
.note-editor .pager:before, .note-editor .pager:before,
.note-editor .pager:after { .note-editor .pager:after {
content: " "; content: " ";
/* 1 */
display: table; display: table;
/* 2 */
} }
.note-editor .pager:after { .note-editor .pager:after {
@ -4234,10 +4234,10 @@ textarea.note-editor .input-group-sm > .input-group-btn > .btn {
.note-editor .pager:before, .note-editor .pager:before,
.note-editor .pager:after { .note-editor .pager:after {
content: " "; content: " ";
/* 1 */
display: table; display: table;
/* 2 */
} }
.note-editor .pager:after { .note-editor .pager:after {
@ -4721,10 +4721,10 @@ textarea.note-editor .input-group-sm > .input-group-btn > .btn {
.note-editor .panel-body:before, .note-editor .panel-body:before,
.note-editor .panel-body:after { .note-editor .panel-body:after {
content: " "; content: " ";
/* 1 */
display: table; display: table;
/* 2 */
} }
.note-editor .panel-body:after { .note-editor .panel-body:after {
@ -4733,10 +4733,10 @@ textarea.note-editor .input-group-sm > .input-group-btn > .btn {
.note-editor .panel-body:before, .note-editor .panel-body:before,
.note-editor .panel-body:after { .note-editor .panel-body:after {
content: " "; content: " ";
/* 1 */
display: table; display: table;
/* 2 */
} }
.note-editor .panel-body:after { .note-editor .panel-body:after {
@ -5072,10 +5072,10 @@ button.note-editor .close {
.modal-footer:before, .modal-footer:before,
.modal-footer:after { .modal-footer:after {
content: " "; content: " ";
/* 1 */
display: table; display: table;
/* 2 */
} }
.modal-footer:after { .modal-footer:after {
@ -5084,10 +5084,10 @@ button.note-editor .close {
.modal-footer:before, .modal-footer:before,
.modal-footer:after { .modal-footer:after {
content: " "; content: " ";
/* 1 */
display: table; display: table;
/* 2 */
} }
.modal-footer:after { .modal-footer:after {
@ -5516,10 +5516,10 @@ button.note-editor .close {
.clearfix:before, .clearfix:before,
.clearfix:after { .clearfix:after {
content: " "; content: " ";
/* 1 */
display: table; display: table;
/* 2 */
} }
.clearfix:after { .clearfix:after {

Loading…
Cancel
Save