--- .classpath
... | ... | @@ -1,40 +0,0 @@ |
| 1 | -<?xml version="1.0" encoding="UTF-8"?> | |
| 2 | -<classpath> | |
| 3 | - <classpathentry kind="src" output="target/classes" path="src/main/java"> | |
| 4 | - <attributes> | |
| 5 | - <attribute name="optional" value="true"/> | |
| 6 | - <attribute name="maven.pomderived" value="true"/> | |
| 7 | - </attributes> | |
| 8 | - </classpathentry> | |
| 9 | - <classpathentry excluding="**" kind="src" output="target/classes" path="src/main/resources"> | |
| 10 | - <attributes> | |
| 11 | - <attribute name="maven.pomderived" value="true"/> | |
| 12 | - </attributes> | |
| 13 | - </classpathentry> | |
| 14 | - <classpathentry kind="src" output="target/test-classes" path="src/test/java"> | |
| 15 | - <attributes> | |
| 16 | - <attribute name="test" value="true"/> | |
| 17 | - <attribute name="optional" value="true"/> | |
| 18 | - <attribute name="maven.pomderived" value="true"/> | |
| 19 | - </attributes> | |
| 20 | - </classpathentry> | |
| 21 | - <classpathentry excluding="**" kind="src" output="target/test-classes" path="src/test/resources"> | |
| 22 | - <attributes> | |
| 23 | - <attribute name="test" value="true"/> | |
| 24 | - <attribute name="maven.pomderived" value="true"/> | |
| 25 | - </attributes> | |
| 26 | - </classpathentry> | |
| 27 | - <classpathentry exported="true" kind="con" path="org.eclipse.m2e.MAVEN2_CLASSPATH_CONTAINER"> | |
| 28 | - <attributes> | |
| 29 | - <attribute name="maven.pomderived" value="true"/> | |
| 30 | - <attribute name="org.eclipse.jst.component.dependency" value="/WEB-INF/lib"/> | |
| 31 | - </attributes> | |
| 32 | - </classpathentry> | |
| 33 | - <classpathentry kind="con" path="org.eclipse.jdt.launching.JRE_CONTAINER/org.eclipse.jdt.internal.debug.ui.launcher.StandardVMType/JavaSE-1.8"> | |
| 34 | - <attributes> | |
| 35 | - <attribute name="maven.pomderived" value="true"/> | |
| 36 | - </attributes> | |
| 37 | - </classpathentry> | |
| 38 | - <classpathentry kind="lib" path="src/main/webapp/WEB-INF/classes"/> | |
| 39 | - <classpathentry kind="output" path="target/classes"/> | |
| 40 | -</classpath> |
+++ .gitignore
... | ... | @@ -0,0 +1,200 @@ |
| 1 | +HELP.md | |
| 2 | +target/ | |
| 3 | +!.mvn/wrapper/maven-wrapper.jar | |
| 4 | +!**/src/main/**/target/ | |
| 5 | +!**/src/test/**/target/ | |
| 6 | + | |
| 7 | +### STS ### | |
| 8 | +.apt_generated | |
| 9 | +.classpath | |
| 10 | +.factorypath | |
| 11 | +.project | |
| 12 | +.settings | |
| 13 | +.springBeans | |
| 14 | +.sts4-cache | |
| 15 | + | |
| 16 | +### IntelliJ IDEA ### | |
| 17 | +.idea | |
| 18 | +*.iws | |
| 19 | +*.iml | |
| 20 | +*.ipr | |
| 21 | + | |
| 22 | +### NetBeans ### | |
| 23 | +/nbproject/private/ | |
| 24 | +/nbbuild/ | |
| 25 | +/dist/ | |
| 26 | +/nbdist/ | |
| 27 | +/.nb-gradle/ | |
| 28 | +build/ | |
| 29 | +!**/src/main/**/build/ | |
| 30 | +!**/src/test/**/build/ | |
| 31 | + | |
| 32 | +### VS Code ### | |
| 33 | +.vscode/ | |
| 34 | + | |
| 35 | + | |
| 36 | +### Eclipse ### | |
| 37 | + | |
| 38 | +.metadata | |
| 39 | +bin/ | |
| 40 | +deploy/ | |
| 41 | +tmp/ | |
| 42 | + | |
| 43 | +*.tmp | |
| 44 | +*.bak | |
| 45 | +*.swp | |
| 46 | +*~.nib | |
| 47 | +local.properties | |
| 48 | +.settings | |
| 49 | +.loadpath | |
| 50 | +.recommenders | |
| 51 | + | |
| 52 | +# External tool builders | |
| 53 | +.externalToolBuilders/ | |
| 54 | + | |
| 55 | +# Locally stored "Eclipse launch configurations" | |
| 56 | +*.launch | |
| 57 | + | |
| 58 | +# PyDev specific (Python IDE for Eclipse) | |
| 59 | +*.pydevproject | |
| 60 | + | |
| 61 | +# CDT-specific (C/C++ Development Tooling) | |
| 62 | +.cproject | |
| 63 | + | |
| 64 | +# Java annotation processor (APT) | |
| 65 | +.factorypath | |
| 66 | + | |
| 67 | +# PDT-specific (PHP Development Tools) | |
| 68 | +.buildpath | |
| 69 | + | |
| 70 | +# sbteclipse plugin | |
| 71 | +.target | |
| 72 | + | |
| 73 | +# Tern plugin | |
| 74 | +.tern-project | |
| 75 | + | |
| 76 | +# TeXlipse plugin | |
| 77 | +.texlipse | |
| 78 | + | |
| 79 | +# STS (Spring Tool Suite) | |
| 80 | +.springBeans | |
| 81 | + | |
| 82 | +# Code Recommenders | |
| 83 | +.recommenders/ | |
| 84 | + | |
| 85 | +# Scala IDE specific (Scala & Java development for Eclipse) | |
| 86 | +.cache-main | |
| 87 | +.scala_dependencies | |
| 88 | +.worksheet | |
| 89 | + | |
| 90 | +### Eclipse Patch ### | |
| 91 | +# Eclipse Core | |
| 92 | +*.project | |
| 93 | + | |
| 94 | +# JDT-specific (Eclipse Java Development Tools) | |
| 95 | +*.classpath | |
| 96 | + | |
| 97 | +# End of https://www.gitignore.io/api/eclipse | |
| 98 | + | |
| 99 | +# Maven | |
| 100 | +target/ | |
| 101 | +pom.xml.tag | |
| 102 | +pom.xml.releaseBackup | |
| 103 | +pom.xml.versionsBackup | |
| 104 | +pom.xml.next | |
| 105 | +release.properties | |
| 106 | +dependency-reduced-pom.xml | |
| 107 | +buildNumber.properties | |
| 108 | +.mvn/timing.properties | |
| 109 | +.mvn | |
| 110 | + | |
| 111 | +### Intellij ### | |
| 112 | +# Covers JetBrains IDEs: IntelliJ, RubyMine, PhpStorm, AppCode, PyCharm, CLion, Android Studio and Webstorm | |
| 113 | +# Reference: https://intellij-support.jetbrains.com/hc/en-us/articles/206544839 | |
| 114 | + | |
| 115 | +# User-specific stuff: | |
| 116 | +.idea/**/workspace.xml | |
| 117 | +.idea/**/compiler.xml | |
| 118 | +.idea/**/encodings.xml | |
| 119 | +.idea/**/jarRepositories.xml | |
| 120 | +.idea/**/misc.xml | |
| 121 | +.idea/**/vcs.xml | |
| 122 | +.idea/**/tasks.xml | |
| 123 | +.idea/dictionaries | |
| 124 | + | |
| 125 | +# Sensitive or high-churn files: | |
| 126 | +.idea/**/dataSources/ | |
| 127 | +.idea/**/dataSources.ids | |
| 128 | +.idea/**/dataSources.xml | |
| 129 | +.idea/**/dataSources.local.xml | |
| 130 | +.idea/**/sqlDataSources.xml | |
| 131 | +.idea/**/dynamic.xml | |
| 132 | +.idea/**/uiDesigner.xml | |
| 133 | + | |
| 134 | +# Gradle: | |
| 135 | +.idea/**/gradle.xml | |
| 136 | +.idea/**/libraries | |
| 137 | + | |
| 138 | +# CMake | |
| 139 | +cmake-build-debug/ | |
| 140 | + | |
| 141 | +# Mongo Explorer plugin: | |
| 142 | +.idea/**/mongoSettings.xml | |
| 143 | + | |
| 144 | +## File-based project format: | |
| 145 | +*.iws | |
| 146 | +/.idea/ | |
| 147 | +.idea | |
| 148 | +*.iws | |
| 149 | +*.iml | |
| 150 | +*.ipr | |
| 151 | +compiler.xml | |
| 152 | + | |
| 153 | +## Plugin-specific files: | |
| 154 | + | |
| 155 | +# IntelliJ | |
| 156 | +/out/ | |
| 157 | + | |
| 158 | +# mpeltonen/sbt-idea plugin | |
| 159 | +.idea_modules/ | |
| 160 | + | |
| 161 | +# JIRA plugin | |
| 162 | +atlassian-ide-plugin.xml | |
| 163 | + | |
| 164 | +# Cursive Clojure plugin | |
| 165 | +.idea/replstate.xml | |
| 166 | + | |
| 167 | +# Ruby plugin and RubyMine | |
| 168 | +/.rakeTasks | |
| 169 | + | |
| 170 | +# Crashlytics plugin (for Android Studio and IntelliJ) | |
| 171 | +com_crashlytics_export_strings.xml | |
| 172 | +crashlytics.properties | |
| 173 | +crashlytics-build.properties | |
| 174 | +fabric.properties | |
| 175 | + | |
| 176 | +### Intellij Patch ### | |
| 177 | +# Comment Reason: https://github.com/joeblau/gitignore.io/issues/186#issuecomment-215987721 | |
| 178 | + | |
| 179 | +# modules.xml | |
| 180 | +# .idea/misc.xml | |
| 181 | +# *.ipr | |
| 182 | + | |
| 183 | +# Sonarlint plugin | |
| 184 | +.idea/sonarlint | |
| 185 | + | |
| 186 | + | |
| 187 | +# End of https://www.gitignore.io/api/intellij | |
| 188 | +# /src/main/resources/db.properties | |
| 189 | +# /src/main/resources/ako.properties | |
| 190 | +# /src/main/resources/ako.properties | |
| 191 | +# /src/main/resources/db.properties | |
| 192 | + | |
| 193 | + | |
| 194 | +### VS Code ### | |
| 195 | +.vscode/ | |
| 196 | + | |
| 197 | +# jrebel | |
| 198 | +rebel.xml | |
| 199 | +/mvnw | |
| 200 | +/mvnw.cmd |
--- .project
... | ... | @@ -1,54 +0,0 @@ |
| 1 | -<?xml version="1.0" encoding="UTF-8"?> | |
| 2 | -<projectDescription> | |
| 3 | - <name>mjon</name> | |
| 4 | - <comment></comment> | |
| 5 | - <projects> | |
| 6 | - </projects> | |
| 7 | - <buildSpec> | |
| 8 | - <buildCommand> | |
| 9 | - <name>org.eclipse.jdt.core.javabuilder</name> | |
| 10 | - <arguments> | |
| 11 | - </arguments> | |
| 12 | - </buildCommand> | |
| 13 | - <buildCommand> | |
| 14 | - <name>org.eclipse.wst.common.project.facet.core.builder</name> | |
| 15 | - <arguments> | |
| 16 | - </arguments> | |
| 17 | - </buildCommand> | |
| 18 | - <buildCommand> | |
| 19 | - <name>org.eclipse.wst.validation.validationbuilder</name> | |
| 20 | - <arguments> | |
| 21 | - </arguments> | |
| 22 | - </buildCommand> | |
| 23 | - <buildCommand> | |
| 24 | - <name>org.springframework.ide.eclipse.core.springbuilder</name> | |
| 25 | - <arguments> | |
| 26 | - </arguments> | |
| 27 | - </buildCommand> | |
| 28 | - <buildCommand> | |
| 29 | - <name>org.springframework.ide.eclipse.boot.validation.springbootbuilder</name> | |
| 30 | - <arguments> | |
| 31 | - </arguments> | |
| 32 | - </buildCommand> | |
| 33 | - <buildCommand> | |
| 34 | - <name>org.eclipse.m2e.core.maven2Builder</name> | |
| 35 | - <arguments> | |
| 36 | - </arguments> | |
| 37 | - </buildCommand> | |
| 38 | - <buildCommand> | |
| 39 | - <name>org.zeroturnaround.eclipse.rebelXmlBuilder</name> | |
| 40 | - <arguments> | |
| 41 | - </arguments> | |
| 42 | - </buildCommand> | |
| 43 | - </buildSpec> | |
| 44 | - <natures> | |
| 45 | - <nature>org.springframework.ide.eclipse.core.springnature</nature> | |
| 46 | - <nature>org.eclipse.jem.workbench.JavaEMFNature</nature> | |
| 47 | - <nature>org.eclipse.wst.common.modulecore.ModuleCoreNature</nature> | |
| 48 | - <nature>org.eclipse.jdt.core.javanature</nature> | |
| 49 | - <nature>org.eclipse.m2e.core.maven2Nature</nature> | |
| 50 | - <nature>org.eclipse.wst.common.project.facet.core.nature</nature> | |
| 51 | - <nature>org.eclipse.wst.jsdt.core.jsNature</nature> | |
| 52 | - <nature>org.zeroturnaround.eclipse.jrebelNature</nature> | |
| 53 | - </natures> | |
| 54 | -</projectDescription> |
--- .settings/.jsdtscope
... | ... | @@ -1,13 +0,0 @@ |
| 1 | -<?xml version="1.0" encoding="UTF-8"?> | |
| 2 | -<classpath> | |
| 3 | - <classpathentry excluding="**/bower_components/*|**/node_modules/*|**/*.min.js" kind="src" path="src/main/webapp"/> | |
| 4 | - <classpathentry kind="src" path="target/m2e-wtp/web-resources"/> | |
| 5 | - <classpathentry kind="con" path="org.eclipse.wst.jsdt.launching.JRE_CONTAINER"/> | |
| 6 | - <classpathentry kind="con" path="org.eclipse.wst.jsdt.launching.WebProject"> | |
| 7 | - <attributes> | |
| 8 | - <attribute name="hide" value="true"/> | |
| 9 | - </attributes> | |
| 10 | - </classpathentry> | |
| 11 | - <classpathentry kind="con" path="org.eclipse.wst.jsdt.launching.baseBrowserLibrary"/> | |
| 12 | - <classpathentry kind="output" path=""/> | |
| 13 | -</classpath> |
--- .settings/org.eclipse.core.resources.prefs
... | ... | @@ -1,6 +0,0 @@ |
| 1 | -eclipse.preferences.version=1 | |
| 2 | -encoding//src/main/java=UTF-8 | |
| 3 | -encoding//src/main/resources=UTF-8 | |
| 4 | -encoding//src/test/java=UTF-8 | |
| 5 | -encoding//src/test/resources=UTF-8 | |
| 6 | -encoding/<project>=UTF-8 |
--- .settings/org.eclipse.jdt.core.prefs
... | ... | @@ -1,9 +0,0 @@ |
| 1 | -eclipse.preferences.version=1 | |
| 2 | -org.eclipse.jdt.core.compiler.codegen.inlineJsrBytecode=enabled | |
| 3 | -org.eclipse.jdt.core.compiler.codegen.targetPlatform=1.8 | |
| 4 | -org.eclipse.jdt.core.compiler.compliance=1.8 | |
| 5 | -org.eclipse.jdt.core.compiler.problem.assertIdentifier=error | |
| 6 | -org.eclipse.jdt.core.compiler.problem.enumIdentifier=error | |
| 7 | -org.eclipse.jdt.core.compiler.problem.forbiddenReference=warning | |
| 8 | -org.eclipse.jdt.core.compiler.release=disabled | |
| 9 | -org.eclipse.jdt.core.compiler.source=1.8 |
--- .settings/org.eclipse.m2e.core.prefs
... | ... | @@ -1,4 +0,0 @@ |
| 1 | -activeProfiles= | |
| 2 | -eclipse.preferences.version=1 | |
| 3 | -resolveWorkspaceProjects=true | |
| 4 | -version=1 |
--- .settings/org.eclipse.wst.common.component
... | ... | @@ -1,10 +0,0 @@ |
| 1 | -<?xml version="1.0" encoding="UTF-8"?><project-modules id="moduleCoreId" project-version="1.5.0"> | |
| 2 | - <wb-module deploy-name="mjon"> | |
| 3 | - <wb-resource deploy-path="/" source-path="/target/m2e-wtp/web-resources"/> | |
| 4 | - <wb-resource deploy-path="/" source-path="/src/main/webapp" tag="defaultRootSource"/> | |
| 5 | - <wb-resource deploy-path="/WEB-INF/classes" source-path="/src/main/java"/> | |
| 6 | - <wb-resource deploy-path="/WEB-INF/classes" source-path="/src/main/resources"/> | |
| 7 | - <property name="context-root" value="mjon"/> | |
| 8 | - <property name="java-output-path" value="/mjon/target/classes"/> | |
| 9 | - </wb-module> | |
| 10 | -</project-modules> |
--- .settings/org.eclipse.wst.common.project.facet.core.xml
... | ... | @@ -1,7 +0,0 @@ |
| 1 | -<?xml version="1.0" encoding="UTF-8"?> | |
| 2 | -<faceted-project> | |
| 3 | - <fixed facet="wst.jsdt.web"/> | |
| 4 | - <installed facet="java" version="1.8"/> | |
| 5 | - <installed facet="jst.web" version="2.5"/> | |
| 6 | - <installed facet="wst.jsdt.web" version="1.0"/> | |
| 7 | -</faceted-project> |
--- .settings/org.eclipse.wst.jsdt.ui.superType.container
... | ... | @@ -1,1 +0,0 @@ |
| 1 | -org.eclipse.wst.jsdt.launching.baseBrowserLibrary(No newline at end of file) |
--- .settings/org.eclipse.wst.jsdt.ui.superType.name
... | ... | @@ -1,1 +0,0 @@ |
| 1 | -Window(No newline at end of file) |
--- .settings/org.eclipse.wst.validation.prefs
... | ... | @@ -1,2 +0,0 @@ |
| 1 | -disabled=06target | |
| 2 | -eclipse.preferences.version=1 |
--- src/main/resources/rebel.xml
... | ... | @@ -1,26 +0,0 @@ |
| 1 | -<?xml version="1.0" encoding="UTF-8"?> | |
| 2 | - | |
| 3 | -<!-- | |
| 4 | - This is the JRebel configuration file. It maps the running application to your IDE workspace, enabling JRebel reloading for this project. | |
| 5 | - Refer to https://manuals.jrebel.com/jrebel/standalone/config.html for more information. | |
| 6 | ---> | |
| 7 | -<application generated-by="eclipse" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://www.zeroturnaround.com" xsi:schemaLocation="http://www.zeroturnaround.com http://update.zeroturnaround.com/jrebel/rebel-2_1.xsd"> | |
| 8 | - | |
| 9 | - <classpath> | |
| 10 | - <dir name="D:/Development/eGovFrameDev-3.9.0-64bit/workspace/mjon/target/classes"> | |
| 11 | - </dir> | |
| 12 | - </classpath> | |
| 13 | - | |
| 14 | - <web> | |
| 15 | - <link target="/"> | |
| 16 | - <dir name="D:/Development/eGovFrameDev-3.9.0-64bit/workspace/mjon/target/m2e-wtp/web-resources"> | |
| 17 | - <exclude name="/"/> | |
| 18 | - </dir> | |
| 19 | - </link> | |
| 20 | - <link target="/"> | |
| 21 | - <dir name="D:/Development/eGovFrameDev-3.9.0-64bit/workspace/mjon/src/main/webapp"> | |
| 22 | - </dir> | |
| 23 | - </link> | |
| 24 | - </web> | |
| 25 | - | |
| 26 | -</application> |
--- target/classes/egovframework/egovProps/ck.properties
... | ... | @@ -1,14 +0,0 @@ |
| 1 | -# CKEditor Image File Upload | |
| 2 | - | |
| 3 | -#optional | |
| 4 | -ck.image.type.allow=jpg,jpeg,gif,bmp,png | |
| 5 | -#optional | |
| 6 | -#ck.image.save.class=Implementation of itn.com.utl.wed.filter.FileSaveManager | |
| 7 | - | |
| 8 | -# if you use "separate image server" or other case. (apache, cdn, nas...) | |
| 9 | -#ck.image.dir=/www/images.mydomain.com/upload | |
| 10 | -#ck.image.url=http://images.mydomain.com/upload/ | |
| 11 | - | |
| 12 | -# if you use "web application"'s deployed directory. | |
| 13 | -ck.image.dir=/webApplicationDeployDirectory/upload | |
| 14 | -ck.image.url=/contextRoot/upload/(No newline at end of file) |
--- target/classes/egovframework/egovProps/globals.properties
... | ... | @@ -1,100 +0,0 @@ |
| 1 | -#----------------------------------------------------------------------- | |
| 2 | -# | |
| 3 | -# globals.properties : \uc2dc\uc2a4\ud15c | |
| 4 | -# | |
| 5 | -#----------------------------------------------------------------------- | |
| 6 | -# 1. key = value \uad6c\uc870\uc785\ub2c8\ub2e4. | |
| 7 | -# 2. key\uac12\uc740 \uacf5\ubc31\ubb38\uc790\ub97c \ud3ec\ud568\ubd88\uac00, value\uac12\uc740 \uacf5\ubc31\ubb38\uc790\ub97c \uac00\ub2a5 | |
| 8 | -# 3. key\uac12\uc73c\ub85c \ud55c\uae00\uc744 \uc0ac\uc6a9\ubd88\uac00, value\uac12\uc740 \ud55c\uae00\uc0ac\uc6a9\uc774 \uac00\ub2a5 | |
| 9 | -# 4. \uc904\uc744 \ubc14\uafc0 \ud544\uc694\uac00 \uc788\uc73c\uba74 '\'\ub97c \ub77c\uc778\uc758 \ub05d\uc5d0 \ucd94\uac00(\ub9cc\uc57d '\'\ubb38\uc790\ub97c \uc0ac\uc6a9\ud574\uc57c \ud558\ub294 \uacbd\uc6b0\ub294 '\\'\ub97c \uc0ac\uc6a9) | |
| 10 | -# 5. Windows\uc5d0\uc11c\uc758 \ub514\ub809\ud1a0\ub9ac \ud45c\uc2dc : '\\' or '/' ('\' \uc0ac\uc6a9\ud558\uba74 \uc548\ub428) | |
| 11 | -# 6. Unix\uc5d0\uc11c\uc758 \ub514\ub809\ud1a0\ub9ac \ud45c\uc2dc : '/' | |
| 12 | -# 7. \uc8fc\uc11d\ubb38 \ucc98\ub9ac\ub294 #\uc0ac\uc6a9 | |
| 13 | -# 8. value\uac12 \ub4a4\uc5d0 \uc2a4\ud398\uc774\uc2a4\uac00 \uc874\uc7ac\ud558\ub294 \uacbd\uc6b0 \uc11c\ube14\ub9bf\uc5d0\uc11c \ucc38\uc870\ud560\ub54c\ub294 \uc5d0\ub7ec\ubc1c\uc0dd\ud560 \uc218 \uc788\uc73c\ubbc0\ub85c trim()\ud558\uac70\ub098 \ub9c8\uc9c0\ub9c9 \uacf5\ubc31\uc5c6\uc774 properties \uac12\uc744 \uc124\uc815\ud560\uac83 | |
| 14 | -#----------------------------------------------------------------------- | |
| 15 | - | |
| 16 | -# \uc6b4\uc601\uc11c\ubc84 \ud0c0\uc785(WINDOWS, UNIX) | |
| 17 | -Globals.OsType = WINDOWS | |
| 18 | - | |
| 19 | -# G4C \uc5f0\uacb0\uc6a9 IP (localhost) | |
| 20 | -Globals.LocalIp = 127.0.0.1 | |
| 21 | - | |
| 22 | -# DB\uc11c\ubc84 \ud0c0\uc785(mysql,oracle,altibase,tibero) - datasource \ubc0f sqlMap \ud30c\uc77c \uc9c0\uc815\uc5d0 \uc0ac\uc6a9\ub428 | |
| 23 | -Globals.DbType = mysql | |
| 24 | - | |
| 25 | - | |
| 26 | -Globals.Env = dev | |
| 27 | -#Globals.Env = prod | |
| 28 | - | |
| 29 | - | |
| 30 | -#mysql | |
| 31 | -Globals.mysql.DriverClassName=com.mysql.jdbc.Driver | |
| 32 | -Globals.mysql.Url=jdbc:mysql://219.240.88.15:3306/mjon | |
| 33 | -Globals.mysql.UserName= mjonUr | |
| 34 | -Globals.mysql.Password= mjon!@#$2 | |
| 35 | - | |
| 36 | -# mysql-prod | |
| 37 | -Globals.DriverClassName.Prod=com.mysql.jdbc.Driver | |
| 38 | -Globals.Url.Prod=jdbc:mysql://219.240.88.15:3306/mjon1 | |
| 39 | -Globals.UserName.Prod= mjonUr1 | |
| 40 | -Globals.Password.Prod= mjon!@#$1 | |
| 41 | - | |
| 42 | -# mysql-dev | |
| 43 | -Globals.DriverClassName.Dev=com.mysql.jdbc.Driver | |
| 44 | -Globals.Url.Dev=jdbc:mysql://219.240.88.15:3306/mjon | |
| 45 | -Globals.UserName.Dev= mjonUr | |
| 46 | -Globals.Password.Dev= mjon!@#$ | |
| 47 | - | |
| 48 | - | |
| 49 | -# mysql | |
| 50 | -Globals.DriverClassName=com.mysql.jdbc.Driver | |
| 51 | -Globals.Url=jdbc:mysql://219.240.88.15:3306/mjon | |
| 52 | -Globals.UserName= mjonUr | |
| 53 | -Globals.Password= mjon!@#$ | |
| 54 | - | |
| 55 | -# MainPage Setting(admin) | |
| 56 | -Globals.MainPage = /cmm/main/mainPage.do | |
| 57 | -#\ucee8\ud150\uce20 \ud30c\uc77c\uc704\uce58 | |
| 58 | -#Globals.ckeditorUploadDir=/home/file/ckeditor/ | |
| 59 | -Globals.ckeditorUploadDir=/usr/local/tomcat/file/ckeditor/ | |
| 60 | -#TEST SERVER | |
| 61 | -Globals.RealCntFileFolder=C:/eGovFrameDev-3.9.0-64bit_ncms/workspace/ncms39/src/main/webapp/WEB-INF/jsp/cnt/ | |
| 62 | -Globals.Solr.url=http://localhost:8983/solr | |
| 63 | - | |
| 64 | -#Globals.file.saveDir=D:/dv/eGovFrameDev-3.9.0-64bit/workspace/mjon/ | |
| 65 | -Globals.file.saveDir=/usr/local/tomcat | |
| 66 | - | |
| 67 | - | |
| 68 | -#SNS \ub85c\uadf8\uc778 KEY \uac12 | |
| 69 | -#ITN \ub124\uc774\ubc84 | |
| 70 | -Globals.itn.naver.clentId=d9Ohvhty_RVsfrq9p_2J | |
| 71 | -Globals.itn.naver.clientSecret=kwiEmpkLg5 | |
| 72 | -Globals.itn.naver.returnUrl=http://localhost:80/snsLogin/naverOauth.do | |
| 73 | -#ITN \uce74\uce74\uc624 | |
| 74 | -Globals.itn.kakao.restApiKey=10b66ad0c44b68b659855ddd64db2c44 | |
| 75 | -Globals.itn.kakao.returnUrl=http://localhost:80/snsLogin/kakaoOauth.do | |
| 76 | - | |
| 77 | -#\uc0ac\uc774\ud2b8 \uc544\uc774\ub514 \uc81c\uac70\ub85c JSP\uc5d0\uc11c siteId/siteNm \ubcf4\uc5ec\uc8fc\uae30 \uc704\ud574 | |
| 78 | -Globals.homepage.siteId=mjon | |
| 79 | -Globals.homepage.siteNm=\ubb38\uc790ON | |
| 80 | - | |
| 81 | - | |
| 82 | - | |
| 83 | -Globals.fax.xpedite.id=kr/itn0202 | |
| 84 | -Globals.fax.xpedite.pw=easytour7! | |
| 85 | -Globals.fax.file.save.path=/usr/local/tomcat/file/sht/fax | |
| 86 | -Globals.fax.file.convert.path=/usr/local/tomcat/file/sht/fax/Convert | |
| 87 | -Globals.fax.file.ori.path=/usr/local/tomcat/file/sht/fax | |
| 88 | -Globals.fax.file.permit.ext=hwp,hwpml,doc,xls,ppt,pdf,txt,docx,xlsx,pptx,tif,htm,html,jpg,jpeg,gif,bmp,gul | |
| 89 | - | |
| 90 | - | |
| 91 | -#KG \ubaa8\ube4c\ub9ac\uc5b8\uc2a4 \uc124\uc815 | |
| 92 | -#CARD | |
| 93 | -Globals.pay.kgm.card.cnSvcid=191017078687 | |
| 94 | -Globals.pay.kgm.card.payMode=10 | |
| 95 | -#BANK | |
| 96 | -Globals.pay.kgm.bank.raSvcid=230510133362 | |
| 97 | -Globals.pay.kgm.bank.payMode=00 | |
| 98 | -#MOBILE | |
| 99 | -Globals.pay.kgm.mobile.mcSvcid=170622040674 | |
| 100 | -Globals.pay.kgm.mobile.payMode=00 |
--- target/classes/egovframework/egovProps/globals_dev.properties
... | ... | @@ -1,117 +0,0 @@ |
| 1 | -#----------------------------------------------------------------------- | |
| 2 | -# | |
| 3 | -# globals.properties : \uc2dc\uc2a4\ud15c | |
| 4 | -# | |
| 5 | -#----------------------------------------------------------------------- | |
| 6 | -# 1. key = value \uad6c\uc870\uc785\ub2c8\ub2e4. | |
| 7 | -# 2. key\uac12\uc740 \uacf5\ubc31\ubb38\uc790\ub97c \ud3ec\ud568\ubd88\uac00, value\uac12\uc740 \uacf5\ubc31\ubb38\uc790\ub97c \uac00\ub2a5 | |
| 8 | -# 3. key\uac12\uc73c\ub85c \ud55c\uae00\uc744 \uc0ac\uc6a9\ubd88\uac00, value\uac12\uc740 \ud55c\uae00\uc0ac\uc6a9\uc774 \uac00\ub2a5 | |
| 9 | -# 4. \uc904\uc744 \ubc14\uafc0 \ud544\uc694\uac00 \uc788\uc73c\uba74 '\'\ub97c \ub77c\uc778\uc758 \ub05d\uc5d0 \ucd94\uac00(\ub9cc\uc57d '\'\ubb38\uc790\ub97c \uc0ac\uc6a9\ud574\uc57c \ud558\ub294 \uacbd\uc6b0\ub294 '\\'\ub97c \uc0ac\uc6a9) | |
| 10 | -# 5. Windows\uc5d0\uc11c\uc758 \ub514\ub809\ud1a0\ub9ac \ud45c\uc2dc : '\\' or '/' ('\' \uc0ac\uc6a9\ud558\uba74 \uc548\ub428) | |
| 11 | -# 6. Unix\uc5d0\uc11c\uc758 \ub514\ub809\ud1a0\ub9ac \ud45c\uc2dc : '/' | |
| 12 | -# 7. \uc8fc\uc11d\ubb38 \ucc98\ub9ac\ub294 #\uc0ac\uc6a9 | |
| 13 | -# 8. value\uac12 \ub4a4\uc5d0 \uc2a4\ud398\uc774\uc2a4\uac00 \uc874\uc7ac\ud558\ub294 \uacbd\uc6b0 \uc11c\ube14\ub9bf\uc5d0\uc11c \ucc38\uc870\ud560\ub54c\ub294 \uc5d0\ub7ec\ubc1c\uc0dd\ud560 \uc218 \uc788\uc73c\ubbc0\ub85c trim()\ud558\uac70\ub098 \ub9c8\uc9c0\ub9c9 \uacf5\ubc31\uc5c6\uc774 properties \uac12\uc744 \uc124\uc815\ud560\uac83 | |
| 14 | -#----------------------------------------------------------------------- | |
| 15 | - | |
| 16 | -# \uc6b4\uc601\uc11c\ubc84 \ud0c0\uc785(WINDOWS, UNIX) | |
| 17 | -Globals.OsType = WINDOWS | |
| 18 | - | |
| 19 | -# G4C \uc5f0\uacb0\uc6a9 IP (localhost) | |
| 20 | -Globals.LocalIp = 127.0.0.1 | |
| 21 | - | |
| 22 | -# DB\uc11c\ubc84 \ud0c0\uc785(mysql,oracle,altibase,tibero) - datasource \ubc0f sqlMap \ud30c\uc77c \uc9c0\uc815\uc5d0 \uc0ac\uc6a9\ub428 | |
| 23 | -Globals.DbType = mysql | |
| 24 | - | |
| 25 | - | |
| 26 | -Globals.Env = dev | |
| 27 | - | |
| 28 | - | |
| 29 | -# mysql | |
| 30 | -Globals.DriverClassName=com.mysql.jdbc.Driver | |
| 31 | -Globals.Url=jdbc:mysql://192.168.0.125:3306/mjon | |
| 32 | -Globals.UserName= mjonUr | |
| 33 | -#Globals.Url=jdbc:mysql://192.168.0.125:3306/mjon_20230221 | |
| 34 | -#Globals.UserName= mjonUr_20230221 | |
| 35 | -Globals.Password= mjon!@#$ | |
| 36 | - | |
| 37 | -# mysql-prod | |
| 38 | -#Globals.DriverClassName=com.mysql.jdbc.Driver | |
| 39 | -#Globals.Url=jdbc:mysql://139.150.72.157:3306/mjon | |
| 40 | -#Globals.UserName= mjonUr | |
| 41 | -#Globals.Password= mjon!@#$ | |
| 42 | - | |
| 43 | -# MainPage Setting(admin) | |
| 44 | -Globals.MainPage = /cmm/main/mainPage.do | |
| 45 | -#\ucee8\ud150\uce20 \ud30c\uc77c\uc704\uce58 | |
| 46 | -#Globals.ckeditorUploadDir=/home/file/ckeditor/ | |
| 47 | -Globals.ckeditorUploadDir=/usr/local/tomcat/file/ckeditor/ | |
| 48 | -#TEST SERVER | |
| 49 | -Globals.RealCntFileFolder=C:/eGovFrameDev-3.9.0-64bit_ncms/workspace/ncms39/src/main/webapp/WEB-INF/jsp/cnt/ | |
| 50 | -Globals.Solr.url=http://localhost:8983/solr | |
| 51 | - | |
| 52 | -#Globals.file.saveDir=D:/dv/eGovFrameDev-3.9.0-64bit/workspace/mjon/ | |
| 53 | -Globals.file.saveDir=/usr/local/tomcat/ | |
| 54 | - | |
| 55 | -#whois openApi \uc544\uc774\ud53c \uccb4\ud06c | |
| 56 | -whois.api.key = 8nrytiochRBf3uEZ8GuIaTWdSTZP6Gw+9x9PIhAOjOt6+9fhyvOrpgVmlThdNL2kz1Eh/6jLVv7O+YnwE4bs7g== | |
| 57 | -whois.api.url = http://apis.data.go.kr/B551505/whois/ipas_country_code | |
| 58 | - | |
| 59 | - | |
| 60 | - | |
| 61 | -#SNS \ub85c\uadf8\uc778 KEY \uac12 | |
| 62 | -#ITN \ub124\uc774\ubc84 | |
| 63 | -Globals.itn.naver.clentId=d9Ohvhty_RVsfrq9p_2J | |
| 64 | -Globals.itn.naver.clientSecret=kwiEmpkLg5 | |
| 65 | -Globals.itn.naver.returnUrl=http://localhost:80/snsLogin/naverOauth.do | |
| 66 | -#ITN \uce74\uce74\uc624 | |
| 67 | -Globals.itn.kakao.restApiKey=10b66ad0c44b68b659855ddd64db2c44 | |
| 68 | -Globals.itn.kakao.returnUrl=http://localhost:80/snsLogin/kakaoOauth.do | |
| 69 | - | |
| 70 | -#\uc0ac\uc774\ud2b8 \uc544\uc774\ub514 \uc81c\uac70\ub85c JSP\uc5d0\uc11c siteId/siteNm \ubcf4\uc5ec\uc8fc\uae30 \uc704\ud574 | |
| 71 | -Globals.homepage.siteId=mjon | |
| 72 | -Globals.homepage.siteNm=\ubb38\uc790ON | |
| 73 | - | |
| 74 | -#\ub098\uc774\uc2a4\ud398\uc774 \ud604\uae08\uc601\uc218\uc99d \ubc1c\ud589\uc744 \uc704\ud55c \ub098\uc774\uc2a4\ud398\uc774 ID | |
| 75 | -Globals.Nicepay.Id = itn180208 | |
| 76 | -#\ub098\uc774\uc2a4\ud398\uc774 \ud604\uae08\uc601\uc218\uc99d \ubc1c\ud589\uc744 \uc704\ud55c \ud68c\uc0ac \uc0ac\uc5c5\uc790\ubc88\ud638 | |
| 77 | -Globals.Business.number = 6538700858 | |
| 78 | - | |
| 79 | - | |
| 80 | -#itn \ucc44\uc6a9\uacf5\uace0\ub97c \uc704\ud55c \uc124\uc815 | |
| 81 | - | |
| 82 | -#\ud30c\uc77c \ub2e4\uc6b4\ub85c\ub4dc \uacbd\ub85c | |
| 83 | -Globals.itn.file.saveDir=D:/fileTesttset/ | |
| 84 | -#\uba54\uc77c \ucc44\uc6a9 \ud15c\ud50c\ub9bf URL | |
| 85 | -Globals.itn.recruit.template.url=http://localhost:8080/publish/email_form_itn_recruit.html | |
| 86 | -#\uba54\uc77c \ubb38\uc758\ud558\uae30 \ud15c\ud50c\ub9bf URL | |
| 87 | -Globals.itn.contact.us.template.url=http://localhost:8080/publish/email_form_itn_contact_us.html | |
| 88 | -#\uba54\uc77c \uc218\uc2e0\uc790 \uc8fc\uc18c #TODO : \ucd94\ud6c4\uc5d0 \ubcc0\uacbd\ud574\uc57c\ud568 | |
| 89 | -Globals.itn.mail.to.address=leehoyoung250@daum.net | |
| 90 | - | |
| 91 | - | |
| 92 | -#\ube44\uc988\ubfcc\ub9ac\uc624 \uc124\uc815 | |
| 93 | -Globals.mjon.kakao.dir=/usr/local/tomcat/file/kakao | |
| 94 | -#\ubb38\uc790\uc628 \uce74\uce74\uc624 \uc11c\ube44\uc2a4 \uc815\ubcf4 (\uc804\uc1a1\uc0ac : \ube44\uc988\ubfcc\ub9ac\uc624) | |
| 95 | -Globals.mjon.biz.url=https://kapi.ppurio.com | |
| 96 | -Globals.mjon.biz.id=itn0202 | |
| 97 | -Globals.mjon.biz.kakao.apiKey=dheBWCONP6J5 | |
| 98 | - | |
| 99 | - | |
| 100 | - | |
| 101 | -Globals.fax.xpedite.id=kr/itn0202 | |
| 102 | -Globals.fax.xpedite.pw=easytour7! | |
| 103 | -Globals.fax.file.save.path=/usr/local/tomcat/file/sht/fax | |
| 104 | -Globals.fax.file.convert.path=/usr/local/tomcat/file/sht/fax/Convert | |
| 105 | -Globals.fax.file.ori.path=/usr/local/tomcat/file/sht/fax | |
| 106 | -Globals.fax.file.permit.ext=hwp,hwpml,doc,xls,ppt,pdf,txt,docx,xlsx,pptx,tif,jpg,jpeg,gif,bmp,gul | |
| 107 | - | |
| 108 | -#KG \ubaa8\ube4c\ub9ac\uc5b8\uc2a4 \uc124\uc815 | |
| 109 | -#CARD | |
| 110 | -Globals.pay.kgm.card.cnSvcid=191017078687 | |
| 111 | -Globals.pay.kgm.card.payMode=10 | |
| 112 | -#BANK | |
| 113 | -Globals.pay.kgm.bank.raSvcid=230510133362 | |
| 114 | -Globals.pay.kgm.bank.payMode=00 | |
| 115 | -#MOBILE | |
| 116 | -Globals.pay.kgm.mobile.mcSvcid=170622040674 | |
| 117 | -Globals.pay.kgm.mobile.payMode=00 |
--- target/classes/egovframework/egovProps/globals_local.properties
... | ... | @@ -1,117 +0,0 @@ |
| 1 | -#----------------------------------------------------------------------- | |
| 2 | -# | |
| 3 | -# globals.properties : \uc2dc\uc2a4\ud15c | |
| 4 | -# | |
| 5 | -#----------------------------------------------------------------------- | |
| 6 | -# 1. key = value \uad6c\uc870\uc785\ub2c8\ub2e4. | |
| 7 | -# 2. key\uac12\uc740 \uacf5\ubc31\ubb38\uc790\ub97c \ud3ec\ud568\ubd88\uac00, value\uac12\uc740 \uacf5\ubc31\ubb38\uc790\ub97c \uac00\ub2a5 | |
| 8 | -# 3. key\uac12\uc73c\ub85c \ud55c\uae00\uc744 \uc0ac\uc6a9\ubd88\uac00, value\uac12\uc740 \ud55c\uae00\uc0ac\uc6a9\uc774 \uac00\ub2a5 | |
| 9 | -# 4. \uc904\uc744 \ubc14\uafc0 \ud544\uc694\uac00 \uc788\uc73c\uba74 '\'\ub97c \ub77c\uc778\uc758 \ub05d\uc5d0 \ucd94\uac00(\ub9cc\uc57d '\'\ubb38\uc790\ub97c \uc0ac\uc6a9\ud574\uc57c \ud558\ub294 \uacbd\uc6b0\ub294 '\\'\ub97c \uc0ac\uc6a9) | |
| 10 | -# 5. Windows\uc5d0\uc11c\uc758 \ub514\ub809\ud1a0\ub9ac \ud45c\uc2dc : '\\' or '/' ('\' \uc0ac\uc6a9\ud558\uba74 \uc548\ub428) | |
| 11 | -# 6. Unix\uc5d0\uc11c\uc758 \ub514\ub809\ud1a0\ub9ac \ud45c\uc2dc : '/' | |
| 12 | -# 7. \uc8fc\uc11d\ubb38 \ucc98\ub9ac\ub294 #\uc0ac\uc6a9 | |
| 13 | -# 8. value\uac12 \ub4a4\uc5d0 \uc2a4\ud398\uc774\uc2a4\uac00 \uc874\uc7ac\ud558\ub294 \uacbd\uc6b0 \uc11c\ube14\ub9bf\uc5d0\uc11c \ucc38\uc870\ud560\ub54c\ub294 \uc5d0\ub7ec\ubc1c\uc0dd\ud560 \uc218 \uc788\uc73c\ubbc0\ub85c trim()\ud558\uac70\ub098 \ub9c8\uc9c0\ub9c9 \uacf5\ubc31\uc5c6\uc774 properties \uac12\uc744 \uc124\uc815\ud560\uac83 | |
| 14 | -#----------------------------------------------------------------------- | |
| 15 | - | |
| 16 | -# \uc6b4\uc601\uc11c\ubc84 \ud0c0\uc785(WINDOWS, UNIX) | |
| 17 | -Globals.OsType = WINDOWS | |
| 18 | - | |
| 19 | -# G4C \uc5f0\uacb0\uc6a9 IP (localhost) | |
| 20 | -Globals.LocalIp = 127.0.0.1 | |
| 21 | - | |
| 22 | -# DB\uc11c\ubc84 \ud0c0\uc785(mysql,oracle,altibase,tibero) - datasource \ubc0f sqlMap \ud30c\uc77c \uc9c0\uc815\uc5d0 \uc0ac\uc6a9\ub428 | |
| 23 | -Globals.DbType = mysql | |
| 24 | - | |
| 25 | - | |
| 26 | -Globals.Env = local | |
| 27 | - | |
| 28 | - | |
| 29 | -# mysql | |
| 30 | -Globals.DriverClassName=com.mysql.jdbc.Driver | |
| 31 | -Globals.Url=jdbc:mysql://192.168.0.125:3306/mjon | |
| 32 | -Globals.UserName= mjonUr | |
| 33 | -#Globals.Url=jdbc:mysql://192.168.0.125:3306/mjon_20230221 | |
| 34 | -#Globals.UserName= mjonUr_20230221 | |
| 35 | -Globals.Password= mjon!@#$ | |
| 36 | - | |
| 37 | -# mysql-prod | |
| 38 | -#Globals.DriverClassName=com.mysql.jdbc.Driver | |
| 39 | -#Globals.Url=jdbc:mysql://139.150.72.157:3306/mjon | |
| 40 | -#Globals.UserName= mjonUr | |
| 41 | -#Globals.Password= mjon!@#$ | |
| 42 | - | |
| 43 | -# MainPage Setting(admin) | |
| 44 | -Globals.MainPage = /cmm/main/mainPage.do | |
| 45 | -#\ucee8\ud150\uce20 \ud30c\uc77c\uc704\uce58 | |
| 46 | -#Globals.ckeditorUploadDir=/home/file/ckeditor/ | |
| 47 | -Globals.ckeditorUploadDir=/usr/local/tomcat/file/ckeditor/ | |
| 48 | -#TEST SERVER | |
| 49 | -Globals.RealCntFileFolder=C:/eGovFrameDev-3.9.0-64bit_ncms/workspace/ncms39/src/main/webapp/WEB-INF/jsp/cnt/ | |
| 50 | -Globals.Solr.url=http://localhost:8983/solr | |
| 51 | - | |
| 52 | -#Globals.file.saveDir=D:/dv/eGovFrameDev-3.9.0-64bit/workspace/mjon/ | |
| 53 | -Globals.file.saveDir=/usr/local/tomcat/ | |
| 54 | - | |
| 55 | -#whois openApi \uc544\uc774\ud53c \uccb4\ud06c | |
| 56 | -whois.api.key = 8nrytiochRBf3uEZ8GuIaTWdSTZP6Gw+9x9PIhAOjOt6+9fhyvOrpgVmlThdNL2kz1Eh/6jLVv7O+YnwE4bs7g== | |
| 57 | -whois.api.url = http://apis.data.go.kr/B551505/whois/ipas_country_code | |
| 58 | - | |
| 59 | - | |
| 60 | - | |
| 61 | -#SNS \ub85c\uadf8\uc778 KEY \uac12 | |
| 62 | -#ITN \ub124\uc774\ubc84 | |
| 63 | -Globals.itn.naver.clentId=d9Ohvhty_RVsfrq9p_2J | |
| 64 | -Globals.itn.naver.clientSecret=kwiEmpkLg5 | |
| 65 | -Globals.itn.naver.returnUrl=http://localhost:80/snsLogin/naverOauth.do | |
| 66 | -#ITN \uce74\uce74\uc624 | |
| 67 | -Globals.itn.kakao.restApiKey=10b66ad0c44b68b659855ddd64db2c44 | |
| 68 | -Globals.itn.kakao.returnUrl=http://localhost:80/snsLogin/kakaoOauth.do | |
| 69 | - | |
| 70 | -#\uc0ac\uc774\ud2b8 \uc544\uc774\ub514 \uc81c\uac70\ub85c JSP\uc5d0\uc11c siteId/siteNm \ubcf4\uc5ec\uc8fc\uae30 \uc704\ud574 | |
| 71 | -Globals.homepage.siteId=mjon | |
| 72 | -Globals.homepage.siteNm=\ubb38\uc790ON | |
| 73 | - | |
| 74 | -#\ub098\uc774\uc2a4\ud398\uc774 \ud604\uae08\uc601\uc218\uc99d \ubc1c\ud589\uc744 \uc704\ud55c \ub098\uc774\uc2a4\ud398\uc774 ID | |
| 75 | -Globals.Nicepay.Id = itn180208 | |
| 76 | -#\ub098\uc774\uc2a4\ud398\uc774 \ud604\uae08\uc601\uc218\uc99d \ubc1c\ud589\uc744 \uc704\ud55c \ud68c\uc0ac \uc0ac\uc5c5\uc790\ubc88\ud638 | |
| 77 | -Globals.Business.number = 6538700858 | |
| 78 | - | |
| 79 | - | |
| 80 | -#itn \ucc44\uc6a9\uacf5\uace0\ub97c \uc704\ud55c \uc124\uc815 | |
| 81 | - | |
| 82 | -#\ud30c\uc77c \ub2e4\uc6b4\ub85c\ub4dc \uacbd\ub85c | |
| 83 | -Globals.itn.file.saveDir=D:/fileTesttset/ | |
| 84 | -#\uba54\uc77c \ucc44\uc6a9 \ud15c\ud50c\ub9bf URL | |
| 85 | -Globals.itn.recruit.template.url=http://localhost:8080/publish/email_form_itn_recruit.html | |
| 86 | -#\uba54\uc77c \ubb38\uc758\ud558\uae30 \ud15c\ud50c\ub9bf URL | |
| 87 | -Globals.itn.contact.us.template.url=http://localhost:8080/publish/email_form_itn_contact_us.html | |
| 88 | -#\uba54\uc77c \uc218\uc2e0\uc790 \uc8fc\uc18c #TODO : \ucd94\ud6c4\uc5d0 \ubcc0\uacbd\ud574\uc57c\ud568 | |
| 89 | -Globals.itn.mail.to.address=leehoyoung250@daum.net | |
| 90 | - | |
| 91 | - | |
| 92 | -#\ube44\uc988\ubfcc\ub9ac\uc624 \uc124\uc815 | |
| 93 | -Globals.mjon.kakao.dir=/usr/local/tomcat/file/kakao | |
| 94 | -#\ubb38\uc790\uc628 \uce74\uce74\uc624 \uc11c\ube44\uc2a4 \uc815\ubcf4 (\uc804\uc1a1\uc0ac : \ube44\uc988\ubfcc\ub9ac\uc624) | |
| 95 | -Globals.mjon.biz.url=https://kapi.ppurio.com | |
| 96 | -Globals.mjon.biz.id=itn0202 | |
| 97 | -Globals.mjon.biz.kakao.apiKey=dheBWCONP6J5 | |
| 98 | - | |
| 99 | - | |
| 100 | - | |
| 101 | -Globals.fax.xpedite.id=kr/itn0202 | |
| 102 | -Globals.fax.xpedite.pw=easytour7! | |
| 103 | -Globals.fax.file.save.path=/usr/local/tomcat/file/sht/fax | |
| 104 | -Globals.fax.file.convert.path=/usr/local/tomcat/file/sht/fax/Convert | |
| 105 | -Globals.fax.file.ori.path=/usr/local/tomcat/file/sht/fax | |
| 106 | -Globals.fax.file.permit.ext=hwp,hwpml,doc,xls,ppt,pdf,txt,docx,xlsx,pptx,tif,jpg,jpeg,gif,bmp,gul | |
| 107 | - | |
| 108 | -#KG \ubaa8\ube4c\ub9ac\uc5b8\uc2a4 \uc124\uc815 | |
| 109 | -#CARD | |
| 110 | -Globals.pay.kgm.card.cnSvcid=191017078687 | |
| 111 | -Globals.pay.kgm.card.payMode=10 | |
| 112 | -#BANK | |
| 113 | -Globals.pay.kgm.bank.raSvcid=230510133362 | |
| 114 | -Globals.pay.kgm.bank.payMode=00 | |
| 115 | -#MOBILE | |
| 116 | -Globals.pay.kgm.mobile.mcSvcid=170622040674 | |
| 117 | -Globals.pay.kgm.mobile.payMode=00 |
--- target/classes/egovframework/egovProps/globals_prod.properties
... | ... | @@ -1,105 +0,0 @@ |
| 1 | -#----------------------------------------------------------------------- | |
| 2 | -# | |
| 3 | -# globals.properties : \uc2dc\uc2a4\ud15c | |
| 4 | -# | |
| 5 | -#----------------------------------------------------------------------- | |
| 6 | -# 1. key = value \uad6c\uc870\uc785\ub2c8\ub2e4. | |
| 7 | -# 2. key\uac12\uc740 \uacf5\ubc31\ubb38\uc790\ub97c \ud3ec\ud568\ubd88\uac00, value\uac12\uc740 \uacf5\ubc31\ubb38\uc790\ub97c \uac00\ub2a5 | |
| 8 | -# 3. key\uac12\uc73c\ub85c \ud55c\uae00\uc744 \uc0ac\uc6a9\ubd88\uac00, value\uac12\uc740 \ud55c\uae00\uc0ac\uc6a9\uc774 \uac00\ub2a5 | |
| 9 | -# 4. \uc904\uc744 \ubc14\uafc0 \ud544\uc694\uac00 \uc788\uc73c\uba74 '\'\ub97c \ub77c\uc778\uc758 \ub05d\uc5d0 \ucd94\uac00(\ub9cc\uc57d '\'\ubb38\uc790\ub97c \uc0ac\uc6a9\ud574\uc57c \ud558\ub294 \uacbd\uc6b0\ub294 '\\'\ub97c \uc0ac\uc6a9) | |
| 10 | -# 5. Windows\uc5d0\uc11c\uc758 \ub514\ub809\ud1a0\ub9ac \ud45c\uc2dc : '\\' or '/' ('\' \uc0ac\uc6a9\ud558\uba74 \uc548\ub428) | |
| 11 | -# 6. Unix\uc5d0\uc11c\uc758 \ub514\ub809\ud1a0\ub9ac \ud45c\uc2dc : '/' | |
| 12 | -# 7. \uc8fc\uc11d\ubb38 \ucc98\ub9ac\ub294 #\uc0ac\uc6a9 | |
| 13 | -# 8. value\uac12 \ub4a4\uc5d0 \uc2a4\ud398\uc774\uc2a4\uac00 \uc874\uc7ac\ud558\ub294 \uacbd\uc6b0 \uc11c\ube14\ub9bf\uc5d0\uc11c \ucc38\uc870\ud560\ub54c\ub294 \uc5d0\ub7ec\ubc1c\uc0dd\ud560 \uc218 \uc788\uc73c\ubbc0\ub85c trim()\ud558\uac70\ub098 \ub9c8\uc9c0\ub9c9 \uacf5\ubc31\uc5c6\uc774 properties \uac12\uc744 \uc124\uc815\ud560\uac83 | |
| 14 | -#----------------------------------------------------------------------- | |
| 15 | - | |
| 16 | -# \uc6b4\uc601\uc11c\ubc84 \ud0c0\uc785(WINDOWS, UNIX) | |
| 17 | -Globals.OsType = WINDOWS | |
| 18 | - | |
| 19 | -# G4C \uc5f0\uacb0\uc6a9 IP (localhost) | |
| 20 | -Globals.LocalIp = 127.0.0.1 | |
| 21 | - | |
| 22 | -# DB\uc11c\ubc84 \ud0c0\uc785(mysql,oracle,altibase,tibero) - datasource \ubc0f sqlMap \ud30c\uc77c \uc9c0\uc815\uc5d0 \uc0ac\uc6a9\ub428 | |
| 23 | -Globals.DbType = mysql | |
| 24 | - | |
| 25 | - | |
| 26 | -Globals.Env = prod | |
| 27 | - | |
| 28 | -# mysql | |
| 29 | -Globals.DriverClassName=com.mysql.jdbc.Driver | |
| 30 | -#Globals.Url=jdbc:mysql://139.150.72.157:3306/mjon | |
| 31 | -Globals.Url=jdbc:mysql://10.12.107.4:3306/mjon | |
| 32 | -Globals.UserName= mjonUr | |
| 33 | -Globals.Password= mjon!@#$ | |
| 34 | - | |
| 35 | -# MainPage Setting(admin) | |
| 36 | -Globals.MainPage = /cmm/main/mainPage.do | |
| 37 | -#\ucee8\ud150\uce20 \ud30c\uc77c\uc704\uce58 | |
| 38 | -#Globals.ckeditorUploadDir=/home/file/ckeditor/ | |
| 39 | -Globals.ckeditorUploadDir=/usr/local/tomcat/file/ckeditor/ | |
| 40 | -#TEST SERVER | |
| 41 | -Globals.RealCntFileFolder=C:/eGovFrameDev-3.9.0-64bit_ncms/workspace/ncms39/src/main/webapp/WEB-INF/jsp/cnt/ | |
| 42 | -Globals.Solr.url=http://localhost:8983/solr | |
| 43 | - | |
| 44 | -#Globals.file.saveDir=D:/dv/eGovFrameDev-3.9.0-64bit/workspace/mjon/ | |
| 45 | -Globals.file.saveDir=/usr/local/tomcat | |
| 46 | - | |
| 47 | - | |
| 48 | -#whois openApi \uc544\uc774\ud53c \uccb4\ud06c | |
| 49 | -whois.api.key = 8nrytiochRBf3uEZ8GuIaTWdSTZP6Gw+9x9PIhAOjOt6+9fhyvOrpgVmlThdNL2kz1Eh/6jLVv7O+YnwE4bs7g== | |
| 50 | -whois.api.url = http://apis.data.go.kr/B551505/whois/ipas_country_code | |
| 51 | - | |
| 52 | - | |
| 53 | -#SNS \ub85c\uadf8\uc778 KEY \uac12 | |
| 54 | -#ITN \ub124\uc774\ubc84 | |
| 55 | -Globals.itn.naver.clentId=d9Ohvhty_RVsfrq9p_2J | |
| 56 | -Globals.itn.naver.clientSecret=kwiEmpkLg5 | |
| 57 | -Globals.itn.naver.returnUrl=http://localhost:80/snsLogin/naverOauth.do | |
| 58 | -#ITN \uce74\uce74\uc624 | |
| 59 | -Globals.itn.kakao.restApiKey=10b66ad0c44b68b659855ddd64db2c44 | |
| 60 | -Globals.itn.kakao.returnUrl=http://localhost:80/snsLogin/kakaoOauth.do | |
| 61 | - | |
| 62 | -#\uc0ac\uc774\ud2b8 \uc544\uc774\ub514 \uc81c\uac70\ub85c JSP\uc5d0\uc11c siteId/siteNm \ubcf4\uc5ec\uc8fc\uae30 \uc704\ud574 | |
| 63 | -Globals.homepage.siteId=mjon | |
| 64 | -Globals.homepage.siteNm=\ubb38\uc790ON | |
| 65 | - | |
| 66 | -#\ub098\uc774\uc2a4\ud398\uc774 \ud604\uae08\uc601\uc218\uc99d \ubc1c\ud589\uc744 \uc704\ud55c \ub098\uc774\uc2a4\ud398\uc774 ID | |
| 67 | -Globals.Nicepay.Id = itn180208 | |
| 68 | -#\ub098\uc774\uc2a4\ud398\uc774 \ud604\uae08\uc601\uc218\uc99d \ubc1c\ud589\uc744 \uc704\ud55c \ud68c\uc0ac \uc0ac\uc5c5\uc790\ubc88\ud638 | |
| 69 | -Globals.Business.number = 6538700858 | |
| 70 | - | |
| 71 | -#itn \ucc44\uc6a9\uacf5\uace0\ub97c \uc704\ud55c \uc124\uc815 | |
| 72 | -#\ud30c\uc77c \ub2e4\uc6b4\ub85c\ub4dc \uacbd\ub85c | |
| 73 | -Globals.itn.file.saveDir=/usr/local/tomcat/file/reDir/ | |
| 74 | -#\uba54\uc77c \ud15c\ud50c\ub9bf URL | |
| 75 | -Globals.itn.recruit.template.url=https://www.munjaon.co.kr/publish/email_form_itn_recruit.html | |
| 76 | -#\uba54\uc77c \ubb38\uc758\ud558\uae30 \ud15c\ud50c\ub9bf URL | |
| 77 | -Globals.itn.contact.us.template.url=https://www.munjaon.co.kr/publish/email_form_itn_contact_us.html | |
| 78 | -#\uba54\uc77c \uc218\uc2e0\uc790 \uc8fc\uc18c | |
| 79 | -Globals.itn.mail.to.address=phs1704@daum.net | |
| 80 | -#Globals.itn.mail.to.address=leehoyoung250@daum.net | |
| 81 | - | |
| 82 | -#\ube44\uc988\ubfcc\ub9ac\uc624 \uc124\uc815 | |
| 83 | -Globals.mjon.kakao.dir=/usr/local/tomcat/file/kakao | |
| 84 | -#\ubb38\uc790\uc628 \uce74\uce74\uc624 \uc11c\ube44\uc2a4 \uc815\ubcf4 (\uc804\uc1a1\uc0ac : \ube44\uc988\ubfcc\ub9ac\uc624) | |
| 85 | -Globals.mjon.biz.url=https://kapi.ppurio.com | |
| 86 | -Globals.mjon.biz.id=itn0202 | |
| 87 | -Globals.mjon.biz.kakao.apiKey=dheBWCONP6J5 | |
| 88 | - | |
| 89 | -Globals.fax.xpedite.id=kr/itn0202 | |
| 90 | -Globals.fax.xpedite.pw=easytour7! | |
| 91 | -Globals.fax.file.save.path=/usr/local/tomcat/file/sht/fax | |
| 92 | -Globals.fax.file.convert.path=/usr/local/tomcat/file/sht/fax/Convert | |
| 93 | -Globals.fax.file.ori.path=/usr/local/tomcat/file/sht/fax | |
| 94 | -Globals.fax.file.permit.ext=hwp,hwpml,doc,xls,ppt,pdf,txt,docx,xlsx,pptx,tif,jpg,jpeg,gif,bmp,gul | |
| 95 | - | |
| 96 | -#KG \ubaa8\ube4c\ub9ac\uc5b8\uc2a4 \uc124\uc815 | |
| 97 | -#CARD | |
| 98 | -Globals.pay.kgm.card.cnSvcid=191017078687 | |
| 99 | -Globals.pay.kgm.card.payMode=10 | |
| 100 | -#BANK | |
| 101 | -Globals.pay.kgm.bank.raSvcid=230510133362 | |
| 102 | -Globals.pay.kgm.bank.payMode=00 | |
| 103 | -#MOBILE | |
| 104 | -Globals.pay.kgm.mobile.mcSvcid=170622040674 | |
| 105 | -Globals.pay.kgm.mobile.payMode=00 |
--- target/classes/egovframework/message/com/message-common.properties
... | ... | @@ -1,308 +0,0 @@ |
| 1 | -fail.common.msg=\uc5d0\ub7ec\uac00 \ubc1c\uc0dd\ud588\uc2b5\ub2c8\ub2e4! | |
| 2 | -fail.common.sql=sql \uc5d0\ub7ec\uac00 \ubc1c\uc0dd\ud588\uc2b5\ub2c8\ub2e4! error code: {0}, error msg: {1} | |
| 3 | -info.nodata.msg=\ud574\ub2f9 \ub370\uc774\ud130\uac00 \uc5c6\uc2b5\ub2c8\ub2e4. | |
| 4 | - | |
| 5 | -#UI Common resource# | |
| 6 | -button.search=\uac80\uc0c9 | |
| 7 | -button.use=\uc0ac\uc6a9 | |
| 8 | -button.notUsed=\uc0ac\uc6a9\uc911\uc9c0 | |
| 9 | -button.inquire=\uc870\ud68c | |
| 10 | -button.update=\uc218\uc815 | |
| 11 | -button.create=\ub4f1\ub85d | |
| 12 | -button.delete=\uc0ad\uc81c | |
| 13 | -button.deleteDatabase=\uc644\uc804\uc0ad\uc81c | |
| 14 | -button.close=\ub2eb\uae30 | |
| 15 | -button.save=\uc800\uc7a5 | |
| 16 | -button.list=\ubaa9\ub85d | |
| 17 | -button.reset=\ucde8\uc18c | |
| 18 | -button.passwordUpdate=\uc554\ud638\ubcc0\uacbd | |
| 19 | -button.subscribe=\uac00\uc785\uc2e0\uccad | |
| 20 | -button.realname=\uc2e4\uba85\ud655\uc778 | |
| 21 | -button.moveToGpin=GPIN\uc2e4\uba85\ud655\uc778\uc73c\ub85c \uc774\ub3d9 | |
| 22 | -button.moveToIhidnum=\uc8fc\ubbfc\ub4f1\ub85d\ubc88\ud638 \uc2e4\uba85\ud655\uc778\uc73c\ub85c \uc774\ub3d9 | |
| 23 | -button.agree=\ub3d9\uc758 | |
| 24 | -button.disagree=\ube44\ub3d9\uc758 | |
| 25 | -button.possible = \uac00\ub2a5 | |
| 26 | -button.impossible = \ubd88\uac00\ub2a5 | |
| 27 | -button.qnaregist=Q&A\ub4f1\ub85d | |
| 28 | -button.cnsltregist=\uc0c1\ub2f4\ub4f1\ub85d | |
| 29 | -button.preview=\ubbf8\ub9ac\ubcf4\uae30 | |
| 30 | -button.next=\ub2e4\uc74c | |
| 31 | -button.add=\ubc14\ub85c\ucd94\uac00 | |
| 32 | -button.confirm=\ud655\uc778 | |
| 33 | - | |
| 34 | - | |
| 35 | -#UI Common Message# | |
| 36 | -common.save.msg=\uc800\uc7a5\ud558\uc2dc\uaca0\uc2b5\ub2c8\uae4c? | |
| 37 | -common.regist.msg=\ub4f1\ub85d\ud558\uc2dc\uaca0\uc2b5\ub2c8\uae4c? | |
| 38 | -common.delete.msg=\uc0ad\uc81c\ud558\uc2dc\uaca0\uc2b5\ub2c8\uae4c? | |
| 39 | -common.update.msg=\uc218\uc815\ud558\uc2dc\uaca0\uc2b5\ub2c8\uae4c? | |
| 40 | -common.nodata.msg=\uc790\ub8cc\uac00 \uc5c6\uc2b5\ub2c8\ub2e4. \ub2e4\ub978 \uac80\uc0c9\uc870\uac74\uc744 \uc120\ud0dd\ud574\uc8fc\uc138\uc694 | |
| 41 | -common.required.msg=(\uc740)\ub294 \ud544\uc218\uc785\ub825\ud56d\ubaa9\uc785\ub2c8\ub2e4. | |
| 42 | -common.acknowledgement.msg=\uc2b9\uc778\ud558\uc2dc\uaca0\uc2b5\ub2c8\uae4c? | |
| 43 | -common.acknowledgementcancel.msg=\uc2b9\uc778\ucde8\uc18c\ud558\uc2dc\uaca0\uc2b5\ub2c8\uae4c? | |
| 44 | - | |
| 45 | -success.common.select=\uc815\uc0c1\uc801\uc73c\ub85c \uc870\ud68c\ub418\uc5c8\uc2b5\ub2c8\ub2e4. | |
| 46 | -success.common.insert=\uc815\uc0c1\uc801\uc73c\ub85c \ub4f1\ub85d\ub418\uc5c8\uc2b5\ub2c8\ub2e4. | |
| 47 | -success.common.update=\uc815\uc0c1\uc801\uc73c\ub85c \uc218\uc815\ub418\uc5c8\uc2b5\ub2c8\ub2e4. | |
| 48 | -success.common.delete=\uc815\uc0c1\uc801\uc73c\ub85c \uc0ad\uc81c\ub418\uc5c8\uc2b5\ub2c8\ub2e4. | |
| 49 | -success.common.useN=\uc815\uc0c1\uc801\uc73c\ub85c \ubbf8\uc0ac\uc6a9 \ucc98\ub9ac\ub418\uc5c8\uc2b5\ub2c8\ub2e4. | |
| 50 | -success.common.useY=\uc815\uc0c1\uc801\uc73c\ub85c \uc0ac\uc6a9 \ucc98\ub9ac\ub418\uc5c8\uc2b5\ub2c8\ub2e4. | |
| 51 | - | |
| 52 | -success.request.msg = \uc694\uccad\ucc98\ub9ac\uac00 \uc131\uacf5\uc801\uc73c\ub85c \uc218\ud589\ub418\uc5c8\uc2b5\ub2c8\ub2e4. | |
| 53 | - | |
| 54 | -common.imposbl.fileupload = \ub354 \uc774\uc0c1 \ud30c\uc77c\uc744 \ucca8\ubd80\ud560 \uc218 \uc5c6\uc2b5\ub2c8\ub2e4. | |
| 55 | -common.isConfmDe.msg=\uc2b9\uc778\uc77c\uc790\ub97c \ud655\uc778 \ubc14\ub78d\ub2c8\ub2e4. | |
| 56 | - | |
| 57 | -fail.common.auth = \uad8c\ud55c\uc774 \uc5c6\uc2b5\ub2c8\ub2e4. | |
| 58 | -fail.common.imposbl = \uc774\uc6a9\uc774 \ubd88\uac00 \ud569\ub2c8\ub2e4. | |
| 59 | -fail.common.insert = \uc0dd\uc131\uc774 \uc2e4\ud328\ud558\uc600\uc2b5\ub2c8\ub2e4. | |
| 60 | -fail.common.insert = \uc0dd\uc131\uc774 \uc2e4\ud328\ud558\uc600\uc2b5\ub2c8\ub2e4. | |
| 61 | -fail.common.update = \uc218\uc815\uc774 \uc2e4\ud328\ud558\uc600\uc2b5\ub2c8\ub2e4. | |
| 62 | -fail.common.delete = \uc0ad\uc81c\uac00 \uc2e4\ud328\ud558\uc600\uc2b5\ub2c8\ub2e4. | |
| 63 | -fail.common.delete.upperMenuExist = \ucc38\uc870\ub418\ub294 \uba54\ub274\uac00 \uc788\uc5b4 \uc0ad\uc81c\uac00 \uc2e4\ud328\ud558\uc600\uc2b5\ub2c8\ub2e4. | |
| 64 | -fail.common.select = \uc870\ud68c\uc5d0 \uc2e4\ud328\ud558\uc600\uc2b5\ub2c8\ub2e4. | |
| 65 | -common.isExist.msg = \uc774\ubbf8 \uc874\uc7ac\ud558\uac70\ub098 \uacfc\uac70\uc5d0 \ub4f1\ub85d\uc774 \ub418\uc5c8\ub358 \uc0c1\ud0dc\uc785\ub2c8\ub2e4. | |
| 66 | -fail.common.login = \ub85c\uadf8\uc778 \uc815\ubcf4\uac00 \uc62c\ubc14\ub974\uc9c0 \uc54a\uc2b5\ub2c8\ub2e4. | |
| 67 | -fail.common.idsearch = \uc544\uc774\ub514\ub97c \ucc3e\uc744\uc218 \uc5c6\uc2b5\ub2c8\ub2e4. | |
| 68 | -fail.common.pwsearch = \ube44\ubc00\ubc88\ud638\ub97c \ucc3e\uc744\uc218 \uc5c6\uc2b5\ub2c8\ub2e4. | |
| 69 | -fail.request.msg = \uc694\uccad\ucc98\ub9ac\ub97c \uc2e4\ud328\ud558\uc600\uc2b5\ub2c8\ub2e4. | |
| 70 | - | |
| 71 | -#UI User Message# | |
| 72 | -fail.user.passwordUpdate1=\ud604\uc7ac \ube44\ubc00\ubc88\ud638\uac00 \ub9de\uc9c0 \uc54a\uc2b5\ub2c8\ub2e4. | |
| 73 | -fail.user.passwordUpdate2=\ube44\ubc00\ubc88\ud638\uc640 \ube44\ubc00\ubc88\ud638 \ud655\uc778\uc774 \uc77c\uce58\ud558\uc9c0 \uc54a\uc2b5\ub2c8\ub2e4. | |
| 74 | -info.user.rlnmCnfirm=\uc8fc\ubbfc\ub4f1\ub85d\ubc88\ud638\ub97c \uc0ac\uc6a9\ud558\uc5ec \uc2e4\uba85\ud655\uc778\uc744 \ud558\uc2ed\uc2dc\uc624. | |
| 75 | -success.user.rlnmCnfirm=\ud589\uc815\uc548\uc804\ubd80\uc758 \uc8fc\ubbfc\ub4f1\ub85d\uc790\ub8cc\uc640 \uc77c\uce58\ud569\ub2c8\ub2e4. | |
| 76 | -fail.user.rlnmCnfirm=\ud589\uc815\uc548\uc804\ubd80\uc758 \uc8fc\ubbfc\ub4f1\ub85d\uc790\ub8cc\uc640 \uc77c\uce58\ud558\uc9c0 \uc54a\uc2b5\ub2c8\ub2e4. | |
| 77 | -fail.user.connectFail=\uc2dc\uc2a4\ud15c \uc7a5\uc560\uac00 \ubc1c\uc0dd\ud588\uc2b5\ub2c8\ub2e4.(\uc778\uc99d\uc11c\ubc84 \uc5f0\uacb0 \uc2e4\ud328) | |
| 78 | -info.user.rlnmPinCnfirm=\uacf5\uacf5 \uc544\uc774\ud540 \uc544\uc774\ub514\ub97c \uc0ac\uc6a9\ud558\uc5ec \uc2e4\uba85\ud655\uc778\uc744 \ud558\uc2ed\uc2dc\uc624. | |
| 79 | -success.user.rlnmPinCnfirm=\uacf5\uacf5\uc544\uc774\ud540\uc758 \ub4f1\ub85d\uc790\ub8cc\uc640 \uc77c\uce58\ud569\ub2c8\ub2e4. | |
| 80 | -fail.user.rlnmPinCnfirm=\uacf5\uacf5\uc544\uc774\ud540\uc758 \ub4f1\ub85d\uc790\ub8cc\uc640 \uc77c\uce58\ud558\uc9c0 \uc54a\uc2b5\ub2c8\ub2e4. | |
| 81 | -info.user.login=\ub85c\uadf8\uc778 \ud6c4 \uc774\uc6a9\ud574 \uc8fc\uc138\uc694. | |
| 82 | - | |
| 83 | - | |
| 84 | -#UI Cop Message# | |
| 85 | -cop.extrlUser = \uc678\ubd80\uc0ac\uc6a9\uc790 | |
| 86 | -cop.intrlUser = \ub0b4\ubd80\uc0ac\uc6a9\uc790 | |
| 87 | -cop.private = \ube44\uacf5\uac1c | |
| 88 | -cop.public = \uacf5\uac1c | |
| 89 | - | |
| 90 | -cop.adbkNm = \uc8fc\uc18c\ub85d\uba85 | |
| 91 | -cop.othbcScope = \uacf5\uac1c\ubc94\uc704 | |
| 92 | -cop.company = \ud68c\uc0ac | |
| 93 | -cop.part = \ubd80\uc11c | |
| 94 | -cop.man = \uac1c\uc778 | |
| 95 | -cop.adbkUser = \uad6c\uc131\uc6d0 | |
| 96 | -cop.bbsNm = \uac8c\uc2dc\ud310\uba85 | |
| 97 | -cop.bbsIntrcn = \uac8c\uc2dc\ud310\uc18c\uac1c | |
| 98 | -cop.bbsTyCode = \uac8c\uc2dc\ud310 \uc720\ud615 | |
| 99 | -cop.bbsAttrbCode = \uac8c\uc2dc\ud310 \uc18d\uc131 | |
| 100 | -cop.replyPosblAt = \ub2f5\uc7a5\uac00\ub2a5\uc5ec\ubd80 | |
| 101 | -cop.fileAtchPosblAt = \ud30c\uc77c\ucca8\ubd80\uac00\ub2a5\uc5ec\ubd80 | |
| 102 | -cop.posblAtchFileNumber = \ucca8\ubd80\uac00\ub2a5\ud30c\uc77c \uc22b\uc790 | |
| 103 | -cop.tmplatId = \ud15c\ud50c\ub9bf \uc815\ubcf4 | |
| 104 | -cop.guestList.subject = \ubc29\uba85\ub85d \uac8c\uc2dc\uae00\uc785\ub2c8\ub2e4. | |
| 105 | -cop.nttSj = \uc81c\ubaa9 | |
| 106 | -cop.nttCn = \uae00\ub0b4\uc6a9 | |
| 107 | -cop.ntceBgnde = \uac8c\uc2dc\uc2dc\uc791\uc77c | |
| 108 | -cop.ntceEndde = \uac8c\uc2dc\uc885\ub8cc\uc77c | |
| 109 | -cop.ntcrNm = \uc791\uc131\uc790 | |
| 110 | -cop.password = \ud328\uc2a4\uc6cc\ub4dc | |
| 111 | -cop.atchFile = \ud30c\uc77c\ucca8\ubd80 | |
| 112 | -cop.guestList = \ubc29\uba85\ub85d | |
| 113 | -cop.guestListCn = \ubc29\uba85\ub85d \ub0b4\uc6a9 | |
| 114 | -cop.noticeTerm = \uac8c\uc2dc\uae30\uac04 | |
| 115 | -cop.atchFileList = \ucca8\ubd80\ud30c\uc77c\ubaa9\ub85d | |
| 116 | -cop.cmmntyNm = \ucee4\ubba4\ub2c8\ud2f0\uba85 | |
| 117 | -cop.cmmntyIntrcn = \ucee4\ubba4\ub2c8\ud2f0 \uc18c\uac1c | |
| 118 | -cop.cmmntyMngr = \ucee4\ubba4\ub2c8\ud2f0 \uad00\ub9ac\uc790 | |
| 119 | -cop.clbOprtr = \ub3d9\ud638\ud68c \uc6b4\uc601\uc790 | |
| 120 | -cop.clbIntrcn = \ub3d9\ud638\ud68c \uc18c\uac1c | |
| 121 | -cop.clbNm = \ub3d9\ud638\ud68c \uba85 | |
| 122 | -cop.tmplatNm = \ud15c\ud50c\ub9bf\uba85 | |
| 123 | -cop.tmplatSeCode = \ud15c\ud50c\ub9bf \uad6c\ubd84 | |
| 124 | -cop.tmplatCours = \ud15c\ud50c\ub9bf\uacbd\ub85c | |
| 125 | -cop.useAt = \uc0ac\uc6a9\uc5ec\ubd80 | |
| 126 | -cop.ncrdNm = \uc774\ub984 | |
| 127 | -cop.cmpnyNm = \ud68c\uc0ac\uba85 | |
| 128 | -cop.deptNm = \ubd80\uc11c\uba85 | |
| 129 | -cop.ofcpsNm = \uc9c1\uc704 | |
| 130 | -cop.clsfNm = \uc9c1\uae09 | |
| 131 | -cop.emailAdres = \uc774\uba54\uc77c\uc8fc\uc18c | |
| 132 | -cop.telNo = \uc804\ud654\ubc88\ud638 | |
| 133 | -cop.mbtlNum = \ud734\ub300\ud3f0\ubc88\ud638 | |
| 134 | -cop.adres = \uc8fc\uc18c | |
| 135 | -cop.extrlUserAt = \uc678\ubd80\uc0ac\uc6a9\uc790\uc5ec\ubd80 | |
| 136 | -cop.publicAt = \uacf5\uac1c\uc5ec\ubd80 | |
| 137 | -cop.remark = \ube44\uace0 | |
| 138 | -cop.trgetNm = \ucee4\ubba4\ub2c8\ud2f0/\ub3d9\ud638\ud68c \uc815\ubcf4 | |
| 139 | -cop.preview = \ubbf8\ub9ac\ubcf4\uae30 | |
| 140 | - | |
| 141 | -cop.withdraw.msg=\ud0c8\ud1f4\ucc98\ub9ac \ud558\uc2dc\uaca0\uc2b5\ub2c8\uae4c? | |
| 142 | -cop.reregist.msg=\uc7ac\uac00\uc785 \ucc98\ub9ac\ud558\uc2dc\uaca0\uc2b5\ub2c8\uae4c? | |
| 143 | -cop.registmanager.msg=\uc6b4\uc601\uc9c4\uc73c\ub85c \ub4f1\ub85d\ud558\uc2dc\uaca0\uc2b5\ub2c8\uae4c? | |
| 144 | -cop.use.msg=\uc0ac\uc6a9 \ucc98\ub9ac\ud558\uc2dc\uaca0\uc2b5\ub2c8\uae4c? | |
| 145 | -cop.unuse.msg=\uc0ac\uc6a9\uc911\uc9c0 \ucc98\ub9ac\ud558\uc2dc\uaca0\uc2b5\ub2c8\uae4c? | |
| 146 | -cop.delete.confirm.msg=\uc0ac\uc6a9\uc911\uc9c0\ub97c \uc120\ud0dd\ud558\uc2e4 \uacbd\uc6b0 \ub2e4\uc2dc \uc0ac\uc6a9\uc73c\ub85c \ubcc0\uacbd\uc774 \ubd88\uac00\ub2a5\ud569\ub2c8\ub2e4. | |
| 147 | -cop.ing.msg=\uc2b9\uc778\uc694\uccad \uc911\uc785\ub2c8\ub2e4. | |
| 148 | -cop.request.msg=\uac00\uc785\uc2e0\uccad\uc774 \uc815\uc0c1\uc801\uc73c\ub85c \uc694\uccad\ub418\uc5c8\uc2b5\ub2c8\ub2e4 | |
| 149 | -cop.password.msg=\ud328\uc2a4\uc6cc\ub4dc\ub97c \uc785\ub825\ud574 \uc8fc\uc2ed\uc2dc\uc624. | |
| 150 | -cop.password.not.same.msg=\ud328\uc2a4\uc6cc\ub4dc\uac00 \uc77c\uce58\ud558\uc9c0 \uc54a\uc2b5\ub2c8\ub2e4. | |
| 151 | - | |
| 152 | -cop.comment.title = \ub313\uae00 | |
| 153 | -cop.comment.wrterNm = \uc791\uc131\uc790 | |
| 154 | -cop.comment.commentCn = \ub0b4\uc6a9 | |
| 155 | -cop.comment.commentPassword = \ud328\uc2a4\uc6cc\ub4dc | |
| 156 | - | |
| 157 | -cop.satisfaction.wrterNm = \uc791\uc131\uc790 | |
| 158 | -cop.satisfaction.stsfdgCn = \ub0b4\uc6a9 | |
| 159 | -cop.satisfaction.stsfdg = \ub9cc\uc871\ub3c4 | |
| 160 | -cop.satisfaction.stsfdgPassword = \ud328\uc2a4\uc6cc\ub4dc | |
| 161 | - | |
| 162 | -cop.scrap.scrapNm = \uc2a4\ud06c\ub7a9\uba85 | |
| 163 | - | |
| 164 | -#UI USS Message# | |
| 165 | -uss.ion.noi.ntfcSj=\uc81c\ubaa9 | |
| 166 | -uss.ion.noi.ntfcCn=\ub0b4\uc6a9 | |
| 167 | -uss.ion.noi.ntfcDate=\uc54c\ub9bc\uc77c\uc790 | |
| 168 | -uss.ion.noi.ntfcTime=\uc54c\ub9bc\uc2dc\uac04 | |
| 169 | -uss.ion.noi.ntfcHH=\uc54c\ub9bc\uc2dc\uac04 | |
| 170 | -uss.ion.noi.ntfcMM=\uc54c\ub9bc\ubd84 | |
| 171 | -uss.ion.noi.bhNtfcIntrvl=\uc0ac\uc804\uc54c\ub9bc\uac04\uaca9 | |
| 172 | -uss.ion.noi.bhNtfcIntrvl.msg=\uc0ac\uc804\uc54c\ub9bc\uac04\uaca9 \uc9c0\uc815\uc774 \ud544\uc694\ud569\ub2c8\ub2e4. | |
| 173 | -uss.ion.noi.alertNtfcTime=\uc54c\ub9bc\uc77c\uc790 \ubc0f \uc2dc\uac04\uc774 \uc720\ud6a8\ud558\uc9c0 \uc54a\uc2b5\ub2c8\ub2e4. | |
| 174 | - | |
| 175 | -#UI COP Message# | |
| 176 | -cop.sms.trnsmitTelno=\ubc1c\uc2e0\uc804\ud654\ubc88\ud638 | |
| 177 | -cop.sms.trnsmitCn=\uc804\uc1a1\ub0b4\uc6a9 | |
| 178 | -cop.sms.recptnTelno=\uc218\uc2e0\uc804\ud654\ubc88\ud638 | |
| 179 | -cop.sms.send=\uc804\uc1a1 | |
| 180 | -cop.sms.addRecptn=\ucd94\uac00 | |
| 181 | -cop.sms.recptnTelno.msg=\uc218\uc2e0\uc804\ud654\ubc88\ud638 \uc9c0\uc815\uc774 \ud544\uc694\ud569\ub2c8\ub2e4. | |
| 182 | - | |
| 183 | -#UI User Message# | |
| 184 | -addr.agency.addrGrpNm=\uc2e0\uaddc \uadf8\ub8f9\uba85 | |
| 185 | -addr.agency.addrPhoneNo=\ud734\ub300\ud3f0 \ubc88\ud638 | |
| 186 | -addr.agency.atFileBasicWrite=\uc8fc\uc18c\ub85d \ud30c\uc77c | |
| 187 | -addr.agency.nttCn=\uc694\uccad\uc0ac\ud56d | |
| 188 | - | |
| 189 | -#UI sym.log Message# | |
| 190 | -sym.log.histSeCode = \uc774\ub825\uad6c\ubd84 | |
| 191 | -sym.log.sysNm = \uc2dc\uc2a4\ud15c\uba85 | |
| 192 | -sym.log.histCn = \uc774\ub825\ub0b4\uc6a9 | |
| 193 | -sym.log.atchFile = \ucca8\ubd80\ud30c\uc77c | |
| 194 | -sym.log.atchFileList = \ucca8\ubd80\ud30c\uc77c\ubaa9\ub85d | |
| 195 | -sym.ems.receiver = \ubc1b\ub294\uc0ac\ub78c | |
| 196 | -sym.ems.title = \uc81c\ubaa9 | |
| 197 | -sym.ems.content = \ubc1c\uc2e0\ub0b4\uc6a9 | |
| 198 | - | |
| 199 | -#Vlidator Errors# | |
| 200 | -errors.prefix=<div class="error"> | |
| 201 | -errors.suffix=</div><br/> | |
| 202 | - | |
| 203 | -errors.required={0}\uc740(\ub294) \ud544\uc218 \uc785\ub825\uac12\uc785\ub2c8\ub2e4. | |
| 204 | -errors.minlength={0}\uc740(\ub294) {1}\uc790 \uc774\uc0c1 \uc785\ub825\ud574\uc57c \ud569\ub2c8\ub2e4. | |
| 205 | -errors.maxlength={0}\uc740(\ub294) {1}\uc790 \uc774\uc0c1 \uc785\ub825\ud560\uc218 \uc5c6\uc2b5\ub2c8\ub2e4. | |
| 206 | -errors.invalid={0}\uc740(\ub294) \uc720\ud6a8\ud558\uc9c0 \uc54a\uc740 \uac12\uc785\ub2c8\ub2e4. | |
| 207 | -errors.minInteger={0}\uc740(\ub294) \uc720\ud6a8\ud55c \uac12\uc774 \uc544\ub2d9\ub2c8\ub2e4. 1 \uc774\uc0c1\uc758 \uac12\uc744 \uc785\ub825\ud574\uc57c \ud569\ub2c8\ub2e4. | |
| 208 | -errors.byte={0}\uc740(\ub294) byte\ud0c0\uc785\uc774\uc5b4\uc57c \ud569\ub2c8\ub2e4. | |
| 209 | -errors.short={0}\uc740(\ub294) short\ud0c0\uc785\uc774\uc5b4\uc57c \ud569\ub2c8\ub2e4. | |
| 210 | -errors.integer={0}\uc740(\ub294) \uc815\uc218 \ud0c0\uc785\uc774\uc5b4\uc57c \ud569\ub2c8\ub2e4. | |
| 211 | -errors.long={0}\uc740(\ub294) long \ud0c0\uc785\uc774\uc5b4\uc57c \ud569\ub2c8\ub2e4. | |
| 212 | -errors.float={0}\uc740(\ub294) \uc2e4\uc218 \ud0c0\uc785\uc774\uc5b4\uc57c \ud569\ub2c8\ub2e4. | |
| 213 | -errors.double={0}\uc740(\ub294) double \ud0c0\uc785\uc774\uc5b4\uc57c \ud569\ub2c8\ub2e4. | |
| 214 | - | |
| 215 | -errors.date={0}\uc740(\ub294) \ub0a0\uc9dc \uc720\ud615\uc774 \uc544\ub2d9\ub2c8\ub2e4. | |
| 216 | -errors.range={0}\uc740(\ub294) {1}\uacfc {2} \uc0ac\uc774\uc758 \uac12\uc774\uc5b4\uc57c \ud569\ub2c8\ub2e4. | |
| 217 | -errors.creditcard={0}\uc740(\ub294) \uc720\ud6a8\ud558\uc9c0 \uc54a\uc740 \uc2e0\uc6a9\uce74\ub4dc \ubc88\ud638\uc785\ub2c8\ub2e4. | |
| 218 | -errors.email={0}\uc740(\ub294) \uc720\ud6a8\ud558\uc9c0 \uc54a\uc740 \uc774\uba54\uc77c \uc8fc\uc18c\uc785\ub2c8\ub2e4. | |
| 219 | - | |
| 220 | -errors.ihidnum=\uc720\ud6a8\ud558\uc9c0 \uc54a\uc740 \uc8fc\ubbfc\ub4f1\ub85d\ubc88\ud638\uc785\ub2c8\ub2e4. | |
| 221 | -errors.korean={0}\uc740(\ub294) \ud55c\uae00\uc744 \uc785\ub825\ud558\uc154\uc57c \ud569\ub2c8\ub2e4. | |
| 222 | -errors.ip=\uc720\ud6a8\ud558\uc9c0 \uc54a\uc740 IP\uc8fc\uc18c\uc785\ub2c8\ub2e4. | |
| 223 | - | |
| 224 | -errors.password1={0}\uc740(\ub294) 8~20\uc790 \ub0b4\uc5d0\uc11c \uc785\ub825\ud574\uc57c \ud569\ub2c8\ub2e4. | |
| 225 | -errors.password2={0}\uc740(\ub294) \ud55c\uae00,\ud2b9\uc218\ubb38\uc790,\ub744\uc5b4\uc4f0\uae30\ub294 \ud5c8\uc6a9\ub418\uc9c0 \uc54a\uc2b5\ub2c8\ub2e4. | |
| 226 | -errors.password3={0}\uc740(\ub294) \uc21c\ucc28\uc801\uc778 \uc22b\uc790\ub97c 4\uac1c\uc774\uc0c1 \uc5f0\uc18d\ud574\uc11c \uc0ac\uc6a9\ud560\uc218 \uc5c6\uc2b5\ub2c8\ub2e4. | |
| 227 | -errors.password4={0}\uc740(\ub294) \ubc18\ubcf5\ub418\ub294 \ubb38\uc790\ub098 \uc22b\uc790\ub97c 4\uac1c\uc774\uc0c1 \uc5f0\uc18d\ud574\uc11c \uc0ac\uc6a9\ud560 \uc218 \uc5c6\uc2b5\ub2c8\ub2e4. | |
| 228 | - | |
| 229 | -errors.notKorean={0}\uc740(\ub294) \ud55c\uae00\uc744 \uc0ac\uc6a9\ud558\uc2e4\uc218 \uc5c6\uc2b5\ub2c8\ub2e4. | |
| 230 | -error.security.runtime.error = error | |
| 231 | -#Vlidator Errors- wordDicaryVO# | |
| 232 | -wordDicaryVO.wordNm=\uc6a9\uc5b4\uba85 | |
| 233 | -wordDicaryVO.engNm=\uc601\ubb38\uba85 | |
| 234 | -wordDicaryVO.wordDc=\uc6a9\uc5b4\uc124\uba85 | |
| 235 | -wordDicaryVO.synonm=\ub3d9\uc758\uc5b4 | |
| 236 | - | |
| 237 | -#Vlidator Errors- cnsltManageVO# | |
| 238 | -cnsltManageVO.cnsltSj=\uc0c1\ub2f4\uc81c\ubaa9 | |
| 239 | -cnsltManageVO.cnsltCn=\uc0c1\ub2f4\ub0b4\uc6a9 | |
| 240 | -cnsltManageVO.writngPassword=\uc791\uc131\ube44\ubc00\ubc88\ud638 | |
| 241 | -cnsltManageVO.areaNo=\uc9c0\uc5ed\ubc88\ud638 | |
| 242 | -cnsltManageVO.middleTelno=\uc911\uac04\uc804\ud654\ubc88\ud638 | |
| 243 | -cnsltManageVO.endTelno=\ub05d\uc804\ud654\ubc88\ud638 | |
| 244 | -cnsltManageVO.wrterNm=\uc791\uc131\uc790\uba85 | |
| 245 | -cnsltManageVO.managtCn=\ub2f5\ubcc0\ub0b4\uc6a9 | |
| 246 | - | |
| 247 | -#Vlidator Errors- siteManageVO# | |
| 248 | -siteManageVO.siteNm=\uc0ac\uc774\ud2b8\uba85 | |
| 249 | -siteManageVO.siteUrl=\uc0ac\uc774\ud2b8 URL | |
| 250 | -siteManageVO.siteDc=\uc0ac\uc774\ud2b8\uc124\uba85 | |
| 251 | -siteManageVO.siteThemaClCode=\uc0ac\uc774\ud2b8\uc8fc\uc81c\ubd84\ub958 | |
| 252 | -siteManageVO.actvtyAt=\ud65c\uc131\uc5ec\ubd80 | |
| 253 | -siteManageVO.useAt=\uc0ac\uc6a9\uc5ec\ubd80 | |
| 254 | - | |
| 255 | -#Vlidator Errors- recomendSiteManageVO# | |
| 256 | -recomendSiteManageVO.recomendSiteNm=\ucd94\ucc9c\uc0ac\uc774\ud2b8\uba85 | |
| 257 | -recomendSiteManageVO.recomendSiteUrl=\ucd94\ucc9c\uc0ac\uc774\ud2b8 URL | |
| 258 | -recomendSiteManageVO.recomendSiteDc=\ucd94\ucc9c\uc0ac\uc774\ud2b8\uc124\uba85 | |
| 259 | -recomendSiteManageVO.recomendResnCn=\ucd94\ucc9c\uc0ac\uc774\ud2b8\uc2b9\uc778\uc0ac\uc720 | |
| 260 | -recomendSiteManageVO.confmDe=\uc2b9\uc778\uc77c\uc790 | |
| 261 | - | |
| 262 | -#Vlidator Errors- hpcmManageVO# | |
| 263 | -hpcmManageVO.hpcmSeCode=\ub3c4\uc6c0\ub9d0\uad6c\ubd84 | |
| 264 | -hpcmManageVO.hpcmDf=\ub3c4\uc6c0\ub9d0\uc815\uc758 | |
| 265 | -hpcmManageVO.hpcmDc=\ub3c4\uc6c0\ub9d0\uc124\uba85 | |
| 266 | - | |
| 267 | -#Vlidator Errors- newsManageVO# | |
| 268 | -newsManageVO.newsSj=\ub274\uc2a4\uc81c\ubaa9 | |
| 269 | -newsManageVO.newsCn=\ub274\uc2a4\ub0b4\uc6a9 | |
| 270 | -newsManageVO.ntceDe=\uac8c\uc2dc\uc77c\uc790 | |
| 271 | - | |
| 272 | -#Vlidator Errors- faqManageVO# | |
| 273 | -faqManageVO.qestnSj=\uc9c8\ubb38\uc81c\ubaa9 | |
| 274 | -faqManageVO.qestnCn=\uc9c8\ubb38\ub0b4\uc6a9 | |
| 275 | -faqManageVO.answerCn=\ub2f5\ubcc0\ub0b4\uc6a9 | |
| 276 | - | |
| 277 | -#Vlidator Errors- stplatManageVO# | |
| 278 | -stplatManageVO.useStplatNm=\uc774\uc6a9\uc57d\uad00\uba85 | |
| 279 | -stplatManageVO.useStplatCn=\uc774\uc6a9\uc57d\uad00\ub0b4\uc6a9 | |
| 280 | -stplatManageVO.infoProvdAgreCn=\uc815\ubcf4\uc81c\uacf5\ub3d9\uc758\ub0b4\uc6a9 | |
| 281 | - | |
| 282 | -#Vlidator Errors- cpyrhtPrtcPolicyVO# | |
| 283 | -cpyrhtPrtcPolicyVO.cpyrhtPrtcPolicyCn=\uc800\uc791\uad8c\ubcf4\ud638\uc815\ucc45\ub0b4\uc6a9 | |
| 284 | - | |
| 285 | -#Vlidator Errors- qnaManageVO# | |
| 286 | -qnaManageVO.qestnSj=\uc9c8\ubb38\uc81c\ubaa9 | |
| 287 | -qnaManageVO.qestnCn=\uc9c8\ubb38\ub0b4\uc6a9 | |
| 288 | -qnaManageVO.writngPassword=\uc791\uc131\ube44\ubc00\ubc88\ud638 | |
| 289 | -qnaManageVO.areaNo=\uc9c0\uc5ed\ubc88\ud638 | |
| 290 | -qnaManageVO.middleTelno=\uc911\uac04\uc804\ud654\ubc88\ud638 | |
| 291 | -qnaManageVO.endTelno=\ub05d\uc804\ud654\ubc88\ud638 | |
| 292 | -qnaManageVO.wrterNm=\uc791\uc131\uc790\uba85 | |
| 293 | -qnaManageVO.answerCn=\ub2f5\ubcc0\ub0b4\uc6a9 | |
| 294 | - | |
| 295 | -#Vlidator Errors- ReprtStatsVO# | |
| 296 | -sts.reprtId = \ubcf4\uace0\uc11cID | |
| 297 | -sts.title = \ubcf4\uace0\uc11c\uba85 | |
| 298 | -sts.category = \ubcf4\uace0\uc11c\uc720\ud615 | |
| 299 | -sts.status = \uc9c4\ud589\uc0c1\ud0dc | |
| 300 | -sts.regDate = \ub4f1\ub85d\uc77c\uc2dc | |
| 301 | - | |
| 302 | -#Rest day messages# | |
| 303 | -sym.cal.restDay = \ud734\uc77c\uc77c\uc790 | |
| 304 | -sym.cal.restName = \ud734\uc77c\uba85 | |
| 305 | -sym.cal.restDetail = \ud734\uc77c\uc124\uba85 | |
| 306 | -sym.cal.restCategory = \ud734\uc77c\uad6c\ubd84 | |
| 307 | - | |
| 308 | -image.errorBg = \uc624\ub958\uc774\ubbf8\uc9c0(No newline at end of file) |
--- target/classes/egovframework/message/com/message-common_en.properties
... | ... | @@ -1,199 +0,0 @@ |
| 1 | -fail.common.msg=error ocurred! | |
| 2 | -fail.common.sql=sql error ocurred! error code: {0}, error msg: {1} | |
| 3 | -info.nodata.msg=no data found. | |
| 4 | - | |
| 5 | -#UI Common resource# | |
| 6 | -button.search=Search | |
| 7 | -button.use=use | |
| 8 | -button.notUsed=Not used | |
| 9 | -button.inquire=inquire | |
| 10 | -button.update=update | |
| 11 | -button.create=create | |
| 12 | -button.delete=delete | |
| 13 | -button.close=close | |
| 14 | -button.save=save | |
| 15 | -button.list=list | |
| 16 | -button.reset=reset | |
| 17 | -button.passwordUpdate=password update | |
| 18 | -button.subscribe=subscribe | |
| 19 | -button.realname=realname confirm | |
| 20 | -button.moveToGpin=move to gpin confirm | |
| 21 | -button.moveToIhidnum=move to ihidnum confirm | |
| 22 | -button.agree=agree | |
| 23 | -button.disagree=disagree | |
| 24 | -button.possible = possible | |
| 25 | -button.impossible = impossible | |
| 26 | - | |
| 27 | -#UI Common Message# | |
| 28 | -common.save.msg=confirm save? | |
| 29 | -common.regist.msg=confirm regist? | |
| 30 | -common.delete.msg=confirm delete? | |
| 31 | -common.update.msg=confirm update? | |
| 32 | -common.nodata.msg=There is no data. please choose another seach keyword | |
| 33 | -common.required.msg=is required field | |
| 34 | -common.acknowledgement.msg=confirm acknowledgement? | |
| 35 | -common.acknowledgementcancel.msg=confirm acknowledgement cancel? | |
| 36 | - | |
| 37 | -success.request.msg=you're request successfully done | |
| 38 | - | |
| 39 | -success.common.select=successfully selected | |
| 40 | -success.common.insert=successfully inserted | |
| 41 | -success.common.update=successfully updated | |
| 42 | -success.common.delete=successfully deleted | |
| 43 | - | |
| 44 | -common.imposbl.fileupload = cannot upload files | |
| 45 | - | |
| 46 | -fail.common.auth = fail to permission | |
| 47 | -fail.common.imposbl = not availabl | |
| 48 | -fail.common.insert = fail to insert. | |
| 49 | -fail.common.update = fail to update | |
| 50 | -fail.common.delete = fail to delete | |
| 51 | -fail.common.delete.upperMenuExist = fail to delete[upperMenuId foreign key error] | |
| 52 | -fail.common.select = fail to select | |
| 53 | -common.isExist.msg = already exist | |
| 54 | -fail.common.login = login information is not correct | |
| 55 | -fail.common.idsearch = can not find id | |
| 56 | -fail.common.pwsearch = can not find password | |
| 57 | - | |
| 58 | - | |
| 59 | -#UI User Message# | |
| 60 | -fail.user.passwordUpdate1=current password is not correct | |
| 61 | -fail.user.passwordUpdate2=password confirm is not correct | |
| 62 | -info.user.rlnmCnfirm=realname confirm ready | |
| 63 | -success.user.rlnmCnfirm=it is realname | |
| 64 | -fail.user.rlnmCnfirm=it is not realname | |
| 65 | -fail.user.connectFail=connection fail | |
| 66 | - | |
| 67 | -#UI Cop Message# | |
| 68 | -cop.extrlUser = External User | |
| 69 | -cop.intrlUser = Internal User | |
| 70 | -cop.private = private | |
| 71 | -cop.public = public | |
| 72 | - | |
| 73 | -cop.bbsNm = BBS Name | |
| 74 | -cop.bbsIntrcn = BBS Introduction | |
| 75 | -cop.bbsTyCode = BBS Type | |
| 76 | -cop.bbsAttrbCode = BBS Attribute | |
| 77 | -cop.replyPosblAt = Reply Possible Alternative | |
| 78 | -cop.fileAtchPosblAt = File Attach Possible Alternative | |
| 79 | -cop.posblAtchFileNumber = Possible Attach File Number | |
| 80 | -cop.tmplatId = Template Information | |
| 81 | -cop.guestList.subject = This article registered by Guest List | |
| 82 | -cop.nttSj = Notice Subject | |
| 83 | -cop.nttCn = Notice Contents | |
| 84 | -cop.ntceBgnde = Notice Start Date | |
| 85 | -cop.ntceEndde = Notice End Date | |
| 86 | -cop.ntcrNm = Noticer Name | |
| 87 | -cop.password = PassWord | |
| 88 | -cop.atchFile = Attach Files | |
| 89 | -cop.guestList = Guest List | |
| 90 | -cop.guestListCn = Guest List Contents | |
| 91 | -cop.noticeTerm = Notice term | |
| 92 | -cop.atchFileList = Attached File List | |
| 93 | -cop.cmmntyNm = Community Name | |
| 94 | -cop.cmmntyIntrcn = Community Introduction | |
| 95 | -cop.cmmntyMngr = Community Manager | |
| 96 | -cop.clbOprtr = Club Operator | |
| 97 | -cop.clbIntrcn = Club Introduction | |
| 98 | -cop.clbNm = Club Name | |
| 99 | -cop.tmplatNm = Template Name | |
| 100 | -cop.tmplatSeCode = Template Se Code | |
| 101 | -cop.tmplatCours = Template Cours | |
| 102 | -cop.useAt = Use Alternative | |
| 103 | -cop.ncrdNm = NameCard user name | |
| 104 | -cop.cmpnyNm = Company name | |
| 105 | -cop.deptNm = Department name | |
| 106 | -cop.ofcpsNm = OFCPS name | |
| 107 | -cop.clsfNm = Class Name | |
| 108 | -cop.emailAdres = E-mail | |
| 109 | -cop.telNo = Tel No. | |
| 110 | -cop.mbtlNum = Mobile | |
| 111 | -cop.adres = Address | |
| 112 | -cop.extrlUserAt = External User alternative | |
| 113 | -cop.publicAt = Public open alternative | |
| 114 | -cop.remark = Remark | |
| 115 | -cop.trgetNm = Company/Club Information | |
| 116 | -cop.preview = preview | |
| 117 | - | |
| 118 | -cop.withdraw.msg=confirm withdrawal memebership? | |
| 119 | -cop.reregist.msg=confirm re-registration? | |
| 120 | -cop.registmanager.msg=confirm registration of manager? | |
| 121 | -cop.use.msg=confirm use? | |
| 122 | -cop.unuse.msg=confirm stop using? | |
| 123 | -cop.delete.confirm.msg=If you choose to disable the re-use change is impossible. | |
| 124 | -cop.ing.msg=Approval is being requested. | |
| 125 | -cop.request.msg=Signup is normally requested. | |
| 126 | -cop.password.msg=Please enter your password. | |
| 127 | -cop.password.not.same.msg=Password do not match. | |
| 128 | - | |
| 129 | -cop.comment.title = Comments | |
| 130 | -cop.comment.wrterNm = Writer Name | |
| 131 | -cop.comment.commentCn = Comment | |
| 132 | -cop.comment.commentPassword = Password | |
| 133 | - | |
| 134 | -cop.satisfaction.wrterNm = Writer Name | |
| 135 | -cop.satisfaction.stsfdgCn = Satisfaction | |
| 136 | -cop.satisfaction.stsfdg = Satisfaction Degree | |
| 137 | -cop.satisfaction.stsfdgPassword = Password | |
| 138 | - | |
| 139 | -cop.scrap.scrapNm = Scrap Name | |
| 140 | - | |
| 141 | -#UI USS Message# | |
| 142 | -uss.ion.noi.ntfcSj=Subject | |
| 143 | -uss.ion.noi.ntfcCn=Contents | |
| 144 | -uss.ion.noi.ntfcDate=Notification Date | |
| 145 | -uss.ion.noi.ntfcTime=Notification Time | |
| 146 | -uss.ion.noi.ntfcHH=Notification Hour | |
| 147 | -uss.ion.noi.ntfcMM=Notification Minute | |
| 148 | -uss.ion.noi.bhNtfcIntrvl=Beforehand Interval | |
| 149 | -uss.ion.noi.bhNtfcIntrvl.msg=Beforehand Interval is required. | |
| 150 | -uss.ion.noi.alertNtfcTime=Date and time of notification is not valid. | |
| 151 | - | |
| 152 | -#UI COP Message# | |
| 153 | -cop.sms.trnsmitTelno=Sender | |
| 154 | -cop.sms.trnsmitCn=Contents | |
| 155 | -cop.sms.recptnTelno=Receiver(s) | |
| 156 | -cop.sms.send=Send | |
| 157 | -cop.sms.addRecptn=Add | |
| 158 | -cop.sms.recptnTelno.msg=The phone number of receiver is required. | |
| 159 | - | |
| 160 | -#UI sym.log Message# | |
| 161 | -sym.log.histSeCode = History Code | |
| 162 | -sym.log.sysNm = System Name | |
| 163 | -sym.log.histCn = History Contents | |
| 164 | -sym.log.atchFile = Attached File | |
| 165 | -sym.log.atchFileList = Attached File List | |
| 166 | -sym.ems.receiver = Receiver | |
| 167 | -sym.ems.title = Title | |
| 168 | -sym.ems.content = Content | |
| 169 | - | |
| 170 | -#Vlidator Errors# | |
| 171 | -errors.required={0} is required. | |
| 172 | -errors.minlength={0} can not be less than {1} characters. | |
| 173 | -errors.maxlength={0} can not be greater than {1} characters. | |
| 174 | -errors.invalid={0} is invalid. | |
| 175 | - | |
| 176 | -errors.byte={0} must be a byte. | |
| 177 | -errors.short={0} must be a short. | |
| 178 | -errors.integer={0} must be an integer. | |
| 179 | -errors.long={0} must be a long. | |
| 180 | -errors.float={0} must be a float. | |
| 181 | -errors.double={0} must be a double. | |
| 182 | - | |
| 183 | -errors.date={0} is not a date. | |
| 184 | -errors.range={0} is not in the range {1} through {2}. | |
| 185 | -errors.creditcard={0} is an invalid credit card number. | |
| 186 | -errors.email={0} is an invalid e-mail address. | |
| 187 | - | |
| 188 | -#Vlidator Errors- ReprtStatsVO# | |
| 189 | -sts.reprtId = Report ID | |
| 190 | -sts.title = Report Title | |
| 191 | -sts.category = Report Category | |
| 192 | -sts.status = Report Status | |
| 193 | -sts.regDate = Registration Date | |
| 194 | - | |
| 195 | -#Rest day messages# | |
| 196 | -sym.cal.restDay = Holiday Date | |
| 197 | -sym.cal.restName = Holiday Name | |
| 198 | -sym.cal.restDetail = Holiday Detail | |
| 199 | -sym.cal.restCategory = Holiday Category(No newline at end of file) |
--- target/classes/egovframework/message/com/message-common_ko.properties
... | ... | @@ -1,351 +0,0 @@ |
| 1 | -fail.common.msg=\uc5d0\ub7ec\uac00 \ubc1c\uc0dd\ud588\uc2b5\ub2c8\ub2e4! | |
| 2 | -fail.common.sql=sql \uc5d0\ub7ec\uac00 \ubc1c\uc0dd\ud588\uc2b5\ub2c8\ub2e4! error code: {0}, error msg: {1} | |
| 3 | -info.nodata.msg=\ud574\ub2f9 \ub370\uc774\ud130\uac00 \uc5c6\uc2b5\ub2c8\ub2e4. | |
| 4 | - | |
| 5 | -#UI Common resource# | |
| 6 | -button.search=\uac80\uc0c9 | |
| 7 | -button.use=\uc0ac\uc6a9 | |
| 8 | -button.notUsed=\uc0ac\uc6a9\uc911\uc9c0 | |
| 9 | -button.inquire=\uc870\ud68c | |
| 10 | -button.update=\uc218\uc815 | |
| 11 | -button.create=\ub4f1\ub85d | |
| 12 | -button.delete=\uc0ad\uc81c | |
| 13 | -button.deleteDatabase=\uc644\uc804\uc0ad\uc81c | |
| 14 | -button.close=\ub2eb\uae30 | |
| 15 | -button.save=\uc800\uc7a5 | |
| 16 | -button.list=\ubaa9\ub85d | |
| 17 | -button.reset=\ucde8\uc18c | |
| 18 | -button.passwordUpdate=\uc554\ud638\ubcc0\uacbd | |
| 19 | -button.subscribe=\uac00\uc785\uc2e0\uccad | |
| 20 | -button.realname=\uc2e4\uba85\ud655\uc778 | |
| 21 | -button.moveToGpin=GPIN\uc2e4\uba85\ud655\uc778\uc73c\ub85c \uc774\ub3d9 | |
| 22 | -button.moveToIhidnum=\uc8fc\ubbfc\ub4f1\ub85d\ubc88\ud638 \uc2e4\uba85\ud655\uc778\uc73c\ub85c \uc774\ub3d9 | |
| 23 | -button.agree=\ub3d9\uc758 | |
| 24 | -button.disagree=\ube44\ub3d9\uc758 | |
| 25 | -button.possible = \uac00\ub2a5 | |
| 26 | -button.impossible = \ubd88\uac00\ub2a5 | |
| 27 | -button.qnaregist=Q&A\ub4f1\ub85d | |
| 28 | -button.cnsltregist=\uc0c1\ub2f4\ub4f1\ub85d | |
| 29 | -button.preview=\ubbf8\ub9ac\ubcf4\uae30 | |
| 30 | -button.next=\ub2e4\uc74c | |
| 31 | -button.add=\ubc14\ub85c\ucd94\uac00 | |
| 32 | -button.confirm=\ud655\uc778 | |
| 33 | - | |
| 34 | - | |
| 35 | -#UI Common Message# | |
| 36 | -common.save.msg=\uc800\uc7a5\ud558\uc2dc\uaca0\uc2b5\ub2c8\uae4c? | |
| 37 | -common.regist.msg=\ub4f1\ub85d\ud558\uc2dc\uaca0\uc2b5\ub2c8\uae4c? | |
| 38 | -common.delete.msg=\uc0ad\uc81c\ud558\uc2dc\uaca0\uc2b5\ub2c8\uae4c? | |
| 39 | -common.update.msg=\uc218\uc815\ud558\uc2dc\uaca0\uc2b5\ub2c8\uae4c? | |
| 40 | -common.nodata.msg=\uc790\ub8cc\uac00 \uc5c6\uc2b5\ub2c8\ub2e4. \ub2e4\ub978 \uac80\uc0c9\uc870\uac74\uc744 \uc120\ud0dd\ud574\uc8fc\uc138\uc694 | |
| 41 | -common.required.msg=(\uc740)\ub294 \ud544\uc218\uc785\ub825\ud56d\ubaa9\uc785\ub2c8\ub2e4. | |
| 42 | -common.acknowledgement.msg=\uc2b9\uc778\ud558\uc2dc\uaca0\uc2b5\ub2c8\uae4c? | |
| 43 | -common.acknowledgementcancel.msg=\uc2b9\uc778\ucde8\uc18c\ud558\uc2dc\uaca0\uc2b5\ub2c8\uae4c? | |
| 44 | - | |
| 45 | -success.common.select=\uc815\uc0c1\uc801\uc73c\ub85c \uc870\ud68c\ub418\uc5c8\uc2b5\ub2c8\ub2e4. | |
| 46 | -success.common.insert=\uc815\uc0c1\uc801\uc73c\ub85c \ub4f1\ub85d\ub418\uc5c8\uc2b5\ub2c8\ub2e4. | |
| 47 | -success.common.update=\uc815\uc0c1\uc801\uc73c\ub85c \uc218\uc815\ub418\uc5c8\uc2b5\ub2c8\ub2e4. | |
| 48 | -success.common.delete=\uc815\uc0c1\uc801\uc73c\ub85c \uc0ad\uc81c\ub418\uc5c8\uc2b5\ub2c8\ub2e4. | |
| 49 | - | |
| 50 | -success.request.msg = \uc694\uccad\ucc98\ub9ac\uac00 \uc131\uacf5\uc801\uc73c\ub85c \uc218\ud589\ub418\uc5c8\uc2b5\ub2c8\ub2e4. | |
| 51 | - | |
| 52 | -common.imposbl.fileupload = \ub354 \uc774\uc0c1 \ud30c\uc77c\uc744 \ucca8\ubd80\ud560 \uc218 \uc5c6\uc2b5\ub2c8\ub2e4. | |
| 53 | -common.isConfmDe.msg=\uc2b9\uc778\uc77c\uc790\ub97c \ud655\uc778 \ubc14\ub78d\ub2c8\ub2e4. | |
| 54 | - | |
| 55 | -fail.common.auth = \uad8c\ud55c\uc774 \uc5c6\uc2b5\ub2c8\ub2e4. | |
| 56 | -fail.common.imposbl = \uc774\uc6a9\uc774 \ubd88\uac00 \ud569\ub2c8\ub2e4. | |
| 57 | -fail.common.insert = \uc0dd\uc131\uc774 \uc2e4\ud328\ud558\uc600\uc2b5\ub2c8\ub2e4. | |
| 58 | -fail.common.update = \uc218\uc815\uc774 \uc2e4\ud328\ud558\uc600\uc2b5\ub2c8\ub2e4. | |
| 59 | -fail.common.delete = \uc0ad\uc81c\uac00 \uc2e4\ud328\ud558\uc600\uc2b5\ub2c8\ub2e4. | |
| 60 | -fail.common.delete.upperMenuExist = \ucc38\uc870\ub418\ub294 \uba54\ub274\uac00 \uc788\uc5b4 \uc0ad\uc81c\uac00 \uc2e4\ud328\ud558\uc600\uc2b5\ub2c8\ub2e4. | |
| 61 | -fail.common.delete.upperCodeExist = \ucc38\uc870\ub418\ub294 \ucf54\ub4dc\uac00 \uc788\uc5b4 \uc0ad\uc81c\uac00 \uc2e4\ud328\ud558\uc600\uc2b5\ub2c8\ub2e4. | |
| 62 | -fail.common.insert.codeExist = \uc911\ubcf5\ub41c \ucf54\ub4dc\uac00 \uc788\uc5b4 \ub4f1\ub85d\uc774 \uc2e4\ud328\ud558\uc600\uc2b5\ub2c8\ub2e4. | |
| 63 | -fail.common.select = \uc870\ud68c\uc5d0 \uc2e4\ud328\ud558\uc600\uc2b5\ub2c8\ub2e4. | |
| 64 | -common.isExist.msg = \uc774\ubbf8 \uc874\uc7ac\ud558\uac70\ub098 \uacfc\uac70\uc5d0 \ub4f1\ub85d\uc774 \ub418\uc5c8\ub358 \uc0c1\ud0dc\uc785\ub2c8\ub2e4. | |
| 65 | -fail.common.login = \ub85c\uadf8\uc778 \uc815\ubcf4\uac00 \uc62c\ubc14\ub974\uc9c0 \uc54a\uc2b5\ub2c8\ub2e4. | |
| 66 | -fail.common.idsearch = \uc544\uc774\ub514\ub97c \ucc3e\uc744\uc218 \uc5c6\uc2b5\ub2c8\ub2e4. | |
| 67 | -fail.common.pwsearch = \ube44\ubc00\ubc88\ud638\ub97c \ucc3e\uc744\uc218 \uc5c6\uc2b5\ub2c8\ub2e4. | |
| 68 | -fail.request.msg = \uc694\uccad\ucc98\ub9ac\ub97c \uc2e4\ud328\ud558\uc600\uc2b5\ub2c8\ub2e4. | |
| 69 | - | |
| 70 | -#UI User Message# | |
| 71 | -fail.user.passwordUpdate1=\ud604\uc7ac \ube44\ubc00\ubc88\ud638\uac00 \ub9de\uc9c0 \uc54a\uc2b5\ub2c8\ub2e4. | |
| 72 | -fail.user.passwordUpdate2=\ube44\ubc00\ubc88\ud638\uc640 \ube44\ubc00\ubc88\ud638 \ud655\uc778\uc774 \uc77c\uce58\ud558\uc9c0 \uc54a\uc2b5\ub2c8\ub2e4. | |
| 73 | -info.user.rlnmCnfirm=\uc8fc\ubbfc\ub4f1\ub85d\ubc88\ud638\ub97c \uc0ac\uc6a9\ud558\uc5ec \uc2e4\uba85\ud655\uc778\uc744 \ud558\uc2ed\uc2dc\uc624. | |
| 74 | -success.user.rlnmCnfirm=\ud589\uc815\uc548\uc804\ubd80\uc758 \uc8fc\ubbfc\ub4f1\ub85d\uc790\ub8cc\uc640 \uc77c\uce58\ud569\ub2c8\ub2e4. | |
| 75 | -fail.user.rlnmCnfirm=\ud589\uc815\uc548\uc804\ubd80\uc758 \uc8fc\ubbfc\ub4f1\ub85d\uc790\ub8cc\uc640 \uc77c\uce58\ud558\uc9c0 \uc54a\uc2b5\ub2c8\ub2e4. | |
| 76 | -fail.user.connectFail=\uc2dc\uc2a4\ud15c \uc7a5\uc560\uac00 \ubc1c\uc0dd\ud588\uc2b5\ub2c8\ub2e4.(\uc778\uc99d\uc11c\ubc84 \uc5f0\uacb0 \uc2e4\ud328) | |
| 77 | -info.user.rlnmPinCnfirm=\uacf5\uacf5 \uc544\uc774\ud540 \uc544\uc774\ub514\ub97c \uc0ac\uc6a9\ud558\uc5ec \uc2e4\uba85\ud655\uc778\uc744 \ud558\uc2ed\uc2dc\uc624. | |
| 78 | -success.user.rlnmPinCnfirm=\uacf5\uacf5\uc544\uc774\ud540\uc758 \ub4f1\ub85d\uc790\ub8cc\uc640 \uc77c\uce58\ud569\ub2c8\ub2e4. | |
| 79 | -fail.user.rlnmPinCnfirm=\uacf5\uacf5\uc544\uc774\ud540\uc758 \ub4f1\ub85d\uc790\ub8cc\uc640 \uc77c\uce58\ud558\uc9c0 \uc54a\uc2b5\ub2c8\ub2e4. | |
| 80 | - | |
| 81 | - | |
| 82 | -#UI Cop Message# | |
| 83 | -cop.extrlUser = \uc678\ubd80\uc0ac\uc6a9\uc790 | |
| 84 | -cop.intrlUser = \ub0b4\ubd80\uc0ac\uc6a9\uc790 | |
| 85 | -cop.private = \ube44\uacf5\uac1c | |
| 86 | -cop.public = \uacf5\uac1c | |
| 87 | - | |
| 88 | -cop.adbkNm = \uc8fc\uc18c\ub85d\uba85 | |
| 89 | -cop.othbcScope = \uacf5\uac1c\ubc94\uc704 | |
| 90 | -cop.company = \ud68c\uc0ac | |
| 91 | -cop.part = \ubd80\uc11c | |
| 92 | -cop.man = \uac1c\uc778 | |
| 93 | -cop.adbkUser = \uad6c\uc131\uc6d0 | |
| 94 | -cop.bbsNm = \uac8c\uc2dc\ud310\uba85 | |
| 95 | -cop.bbsIntrcn = \uac8c\uc2dc\ud310\uc18c\uac1c | |
| 96 | -cop.bbsTyCode = \uac8c\uc2dc\ud310 \uc720\ud615 | |
| 97 | -cop.bbsAttrbCode = \uac8c\uc2dc\ud310 \uc18d\uc131 | |
| 98 | -cop.replyPosblAt = \ub2f5\uc7a5\uac00\ub2a5\uc5ec\ubd80 | |
| 99 | -cop.fileAtchPosblAt = \ud30c\uc77c\ucca8\ubd80\uac00\ub2a5\uc5ec\ubd80 | |
| 100 | -cop.posblAtchFileNumber = \ucca8\ubd80\uac00\ub2a5\ud30c\uc77c \uc22b\uc790 | |
| 101 | -cop.tmplatId = \ud15c\ud50c\ub9bf \uc815\ubcf4 | |
| 102 | -cop.guestList.subject = \ubc29\uba85\ub85d \uac8c\uc2dc\uae00\uc785\ub2c8\ub2e4. | |
| 103 | -cop.nttSj = \uc81c\ubaa9 | |
| 104 | -cop.nttCn = \uae00\ub0b4\uc6a9 | |
| 105 | -cop.ntceBgnde = \uac8c\uc2dc\uc2dc\uc791\uc77c | |
| 106 | -cop.ntceEndde = \uac8c\uc2dc\uc885\ub8cc\uc77c | |
| 107 | -cop.ntcrNm = \uc791\uc131\uc790 | |
| 108 | -cop.password = \ud328\uc2a4\uc6cc\ub4dc | |
| 109 | -cop.atchFile = \ud30c\uc77c\ucca8\ubd80 | |
| 110 | -cop.guestList = \ubc29\uba85\ub85d | |
| 111 | -cop.guestListCn = \ubc29\uba85\ub85d \ub0b4\uc6a9 | |
| 112 | -cop.noticeTerm = \uac8c\uc2dc\uae30\uac04 | |
| 113 | -cop.atchFileList = \ucca8\ubd80\ud30c\uc77c\ubaa9\ub85d | |
| 114 | -cop.cmmntyNm = \ucee4\ubba4\ub2c8\ud2f0\uba85 | |
| 115 | -cop.cmmntyIntrcn = \ucee4\ubba4\ub2c8\ud2f0 \uc18c\uac1c | |
| 116 | -cop.cmmntyMngr = \ucee4\ubba4\ub2c8\ud2f0 \uad00\ub9ac\uc790 | |
| 117 | -cop.clbOprtr = \ub3d9\ud638\ud68c \uc6b4\uc601\uc790 | |
| 118 | -cop.clbIntrcn = \ub3d9\ud638\ud68c \uc18c\uac1c | |
| 119 | -cop.clbNm = \ub3d9\ud638\ud68c \uba85 | |
| 120 | -cop.tmplatNm = \ud15c\ud50c\ub9bf\uba85 | |
| 121 | -cop.tmplatSeCode = \ud15c\ud50c\ub9bf \uad6c\ubd84 | |
| 122 | -cop.tmplatCours = \ud15c\ud50c\ub9bf\uacbd\ub85c | |
| 123 | -cop.useAt = \uc0ac\uc6a9\uc5ec\ubd80 | |
| 124 | -cop.ncrdNm = \uc774\ub984 | |
| 125 | -cop.cmpnyNm = \ud68c\uc0ac\uba85 | |
| 126 | -cop.deptNm = \ubd80\uc11c\uba85 | |
| 127 | -cop.ofcpsNm = \uc9c1\uc704 | |
| 128 | -cop.clsfNm = \uc9c1\uae09 | |
| 129 | -cop.emailAdres = \uc774\uba54\uc77c\uc8fc\uc18c | |
| 130 | -cop.telNo = \uc804\ud654\ubc88\ud638 | |
| 131 | -cop.mbtlNum = \ud734\ub300\ud3f0\ubc88\ud638 | |
| 132 | -cop.adres = \uc8fc\uc18c | |
| 133 | -cop.extrlUserAt = \uc678\ubd80\uc0ac\uc6a9\uc790\uc5ec\ubd80 | |
| 134 | -cop.publicAt = \uacf5\uac1c\uc5ec\ubd80 | |
| 135 | -cop.remark = \ube44\uace0 | |
| 136 | -cop.trgetNm = \ucee4\ubba4\ub2c8\ud2f0/\ub3d9\ud638\ud68c \uc815\ubcf4 | |
| 137 | -cop.preview = \ubbf8\ub9ac\ubcf4\uae30 | |
| 138 | - | |
| 139 | -cop.withdraw.msg=\ud0c8\ud1f4\ucc98\ub9ac \ud558\uc2dc\uaca0\uc2b5\ub2c8\uae4c? | |
| 140 | -cop.reregist.msg=\uc7ac\uac00\uc785 \ucc98\ub9ac\ud558\uc2dc\uaca0\uc2b5\ub2c8\uae4c? | |
| 141 | -cop.registmanager.msg=\uc6b4\uc601\uc9c4\uc73c\ub85c \ub4f1\ub85d\ud558\uc2dc\uaca0\uc2b5\ub2c8\uae4c? | |
| 142 | -cop.use.msg=\uc0ac\uc6a9 \ucc98\ub9ac\ud558\uc2dc\uaca0\uc2b5\ub2c8\uae4c? | |
| 143 | -cop.unuse.msg=\uc0ac\uc6a9\uc911\uc9c0 \ucc98\ub9ac\ud558\uc2dc\uaca0\uc2b5\ub2c8\uae4c? | |
| 144 | -cop.delete.confirm.msg=\uc0ac\uc6a9\uc911\uc9c0\ub97c \uc120\ud0dd\ud558\uc2e4 \uacbd\uc6b0 \ub2e4\uc2dc \uc0ac\uc6a9\uc73c\ub85c \ubcc0\uacbd\uc774 \ubd88\uac00\ub2a5\ud569\ub2c8\ub2e4. | |
| 145 | -cop.ing.msg=\uc2b9\uc778\uc694\uccad \uc911\uc785\ub2c8\ub2e4. | |
| 146 | -cop.request.msg=\uac00\uc785\uc2e0\uccad\uc774 \uc815\uc0c1\uc801\uc73c\ub85c \uc694\uccad\ub418\uc5c8\uc2b5\ub2c8\ub2e4 | |
| 147 | -cop.password.msg=\ud328\uc2a4\uc6cc\ub4dc\ub97c \uc785\ub825\ud574 \uc8fc\uc2ed\uc2dc\uc624. | |
| 148 | -cop.password.not.same.msg=\ud328\uc2a4\uc6cc\ub4dc\uac00 \uc77c\uce58\ud558\uc9c0 \uc54a\uc2b5\ub2c8\ub2e4. | |
| 149 | - | |
| 150 | -cop.comment.title = \ub313\uae00 | |
| 151 | -cop.comment.wrterNm = \uc791\uc131\uc790 | |
| 152 | -cop.comment.commentCn = \ub0b4\uc6a9 | |
| 153 | -cop.comment.commentPassword = \ud328\uc2a4\uc6cc\ub4dc | |
| 154 | - | |
| 155 | -cop.satisfaction.wrterNm = \uc791\uc131\uc790 | |
| 156 | -cop.satisfaction.stsfdgCn = \ub0b4\uc6a9 | |
| 157 | -cop.satisfaction.stsfdg = \ub9cc\uc871\ub3c4 | |
| 158 | -cop.satisfaction.stsfdgPassword = \ud328\uc2a4\uc6cc\ub4dc | |
| 159 | - | |
| 160 | -cop.scrap.scrapNm = \uc2a4\ud06c\ub7a9\uba85 | |
| 161 | - | |
| 162 | -#UI USS Message# | |
| 163 | -uss.ion.noi.ntfcSj=\uc81c\ubaa9 | |
| 164 | -uss.ion.noi.ntfcCn=\ub0b4\uc6a9 | |
| 165 | -uss.ion.noi.ntfcDate=\uc54c\ub9bc\uc77c\uc790 | |
| 166 | -uss.ion.noi.ntfcTime=\uc54c\ub9bc\uc2dc\uac04 | |
| 167 | -uss.ion.noi.ntfcHH=\uc54c\ub9bc\uc2dc\uac04 | |
| 168 | -uss.ion.noi.ntfcMM=\uc54c\ub9bc\ubd84 | |
| 169 | -uss.ion.noi.bhNtfcIntrvl=\uc0ac\uc804\uc54c\ub9bc\uac04\uaca9 | |
| 170 | -uss.ion.noi.bhNtfcIntrvl.msg=\uc0ac\uc804\uc54c\ub9bc\uac04\uaca9 \uc9c0\uc815\uc774 \ud544\uc694\ud569\ub2c8\ub2e4. | |
| 171 | -uss.ion.noi.alertNtfcTime=\uc54c\ub9bc\uc77c\uc790 \ubc0f \uc2dc\uac04\uc774 \uc720\ud6a8\ud558\uc9c0 \uc54a\uc2b5\ub2c8\ub2e4. | |
| 172 | - | |
| 173 | -#UI COP Message# | |
| 174 | -cop.sms.trnsmitTelno=\ubc1c\uc2e0\uc804\ud654\ubc88\ud638 | |
| 175 | -cop.sms.trnsmitCn=\uc804\uc1a1\ub0b4\uc6a9 | |
| 176 | -cop.sms.recptnTelno=\uc218\uc2e0\uc804\ud654\ubc88\ud638 | |
| 177 | -cop.sms.send=\uc804\uc1a1 | |
| 178 | -cop.sms.addRecptn=\ucd94\uac00 | |
| 179 | -cop.sms.recptnTelno.msg=\uc218\uc2e0\uc804\ud654\ubc88\ud638 \uc9c0\uc815\uc774 \ud544\uc694\ud569\ub2c8\ub2e4. | |
| 180 | - | |
| 181 | -#UI sym.log Message# | |
| 182 | -sym.log.histSeCode = \uc774\ub825\uad6c\ubd84 | |
| 183 | -sym.log.sysNm = \uc2dc\uc2a4\ud15c\uba85 | |
| 184 | -sym.log.histCn = \uc774\ub825\ub0b4\uc6a9 | |
| 185 | -sym.log.atchFile = \ucca8\ubd80\ud30c\uc77c | |
| 186 | -sym.log.atchFileList = \ucca8\ubd80\ud30c\uc77c\ubaa9\ub85d | |
| 187 | -sym.ems.receiver = \ubc1b\ub294\uc0ac\ub78c | |
| 188 | -sym.ems.title = \uc81c\ubaa9 | |
| 189 | -sym.ems.content = \ubc1c\uc2e0\ub0b4\uc6a9 | |
| 190 | - | |
| 191 | -#Vlidator Errors# | |
| 192 | -errors.prefix=<div class="error"> | |
| 193 | -errors.suffix=</div><br/> | |
| 194 | - | |
| 195 | -#errors.required={0}\uc740(\ub294) \ud544\uc218 \uc785\ub825\uac12\uc785\ub2c8\ub2e4. | |
| 196 | -errors.required={0}\uc744(\ub97c) \uc785\ub825\ud574\uc8fc\uc138\uc694. | |
| 197 | -errors.minlength={0}\uc740(\ub294) {1}\uc790 \uc774\uc0c1 \uc785\ub825\ud574\uc57c \ud569\ub2c8\ub2e4. | |
| 198 | -errors.maxlength={0}\uc740(\ub294) {1}\uc790 \uc774\uc0c1 \uc785\ub825\ud560\uc218 \uc5c6\uc2b5\ub2c8\ub2e4. | |
| 199 | -errors.invalid={0}\uc740(\ub294) \uc720\ud6a8\ud558\uc9c0 \uc54a\uc740 \uac12\uc785\ub2c8\ub2e4. | |
| 200 | -errors.minInteger={0}\uc740(\ub294) \uc720\ud6a8\ud55c \uac12\uc774 \uc544\ub2d9\ub2c8\ub2e4. 1 \uc774\uc0c1\uc758 \uac12\uc744 \uc785\ub825\ud574\uc57c \ud569\ub2c8\ub2e4. | |
| 201 | -errors.byte={0}\uc740(\ub294) byte\ud0c0\uc785\uc774\uc5b4\uc57c \ud569\ub2c8\ub2e4. | |
| 202 | -errors.short={0}\uc740(\ub294) short\ud0c0\uc785\uc774\uc5b4\uc57c \ud569\ub2c8\ub2e4. | |
| 203 | -errors.integer={0}\uc740(\ub294) \uc815\uc218 \ud0c0\uc785\uc774\uc5b4\uc57c \ud569\ub2c8\ub2e4. | |
| 204 | -errors.long={0}\uc740(\ub294) long \ud0c0\uc785\uc774\uc5b4\uc57c \ud569\ub2c8\ub2e4. | |
| 205 | -errors.float={0}\uc740(\ub294) \uc2e4\uc218 \ud0c0\uc785\uc774\uc5b4\uc57c \ud569\ub2c8\ub2e4. | |
| 206 | -errors.double={0}\uc740(\ub294) double \ud0c0\uc785\uc774\uc5b4\uc57c \ud569\ub2c8\ub2e4. | |
| 207 | - | |
| 208 | -errors.date={0}\uc740(\ub294) \ub0a0\uc9dc \uc720\ud615\uc774 \uc544\ub2d9\ub2c8\ub2e4. | |
| 209 | -errors.range={0}\uc740(\ub294) {1}\uacfc {2} \uc0ac\uc774\uc758 \uac12\uc774\uc5b4\uc57c \ud569\ub2c8\ub2e4. | |
| 210 | -errors.creditcard={0}\uc740(\ub294) \uc720\ud6a8\ud558\uc9c0 \uc54a\uc740 \uc2e0\uc6a9\uce74\ub4dc \ubc88\ud638\uc785\ub2c8\ub2e4. | |
| 211 | -errors.email={0}\uc740(\ub294) \uc720\ud6a8\ud558\uc9c0 \uc54a\uc740 \uc774\uba54\uc77c \uc8fc\uc18c\uc785\ub2c8\ub2e4. | |
| 212 | - | |
| 213 | -errors.ihidnum=\uc720\ud6a8\ud558\uc9c0 \uc54a\uc740 \uc8fc\ubbfc\ub4f1\ub85d\ubc88\ud638\uc785\ub2c8\ub2e4. | |
| 214 | -errors.korean={0}\uc740(\ub294) \ud55c\uae00\uc744 \uc785\ub825\ud558\uc154\uc57c \ud569\ub2c8\ub2e4. | |
| 215 | -errors.ip=\uc720\ud6a8\ud558\uc9c0 \uc54a\uc740 IP\uc8fc\uc18c\uc785\ub2c8\ub2e4. | |
| 216 | - | |
| 217 | -errors.password1={0}\uc740(\ub294) 8~20\uc790 \ub0b4\uc5d0\uc11c \uc785\ub825\ud574\uc57c \ud569\ub2c8\ub2e4. | |
| 218 | -errors.password2={0}\uc740(\ub294) \ud55c\uae00,\ud2b9\uc218\ubb38\uc790,\ub744\uc5b4\uc4f0\uae30\ub294 \ud5c8\uc6a9\ub418\uc9c0 \uc54a\uc2b5\ub2c8\ub2e4. | |
| 219 | -errors.password3={0}\uc740(\ub294) \uc21c\ucc28\uc801\uc778 \uc22b\uc790\ub97c 4\uac1c\uc774\uc0c1 \uc5f0\uc18d\ud574\uc11c \uc0ac\uc6a9\ud560\uc218 \uc5c6\uc2b5\ub2c8\ub2e4. | |
| 220 | -errors.password4={0}\uc740(\ub294) \ubc18\ubcf5\ub418\ub294 \ubb38\uc790\ub098 \uc22b\uc790\ub97c 4\uac1c\uc774\uc0c1 \uc5f0\uc18d\ud574\uc11c \uc0ac\uc6a9\ud560 \uc218 \uc5c6\uc2b5\ub2c8\ub2e4. | |
| 221 | - | |
| 222 | -errors.notKorean={0}\uc740(\ub294) \ud55c\uae00\uc744 \uc0ac\uc6a9\ud558\uc2e4\uc218 \uc5c6\uc2b5\ub2c8\ub2e4. | |
| 223 | -error.security.runtime.error = error | |
| 224 | -#Vlidator Errors- wordDicaryVO# | |
| 225 | -wordDicaryVO.wordNm=\uc6a9\uc5b4\uba85 | |
| 226 | -wordDicaryVO.engNm=\uc601\ubb38\uba85 | |
| 227 | -wordDicaryVO.wordDc=\uc6a9\uc5b4\uc124\uba85 | |
| 228 | -wordDicaryVO.synonm=\ub3d9\uc758\uc5b4 | |
| 229 | - | |
| 230 | -#Vlidator Errors- cnsltManageVO# | |
| 231 | -cnsltManageVO.cnsltSj=\uc0c1\ub2f4\uc81c\ubaa9 | |
| 232 | -cnsltManageVO.cnsltCn=\uc0c1\ub2f4\ub0b4\uc6a9 | |
| 233 | -cnsltManageVO.writngPassword=\uc791\uc131\ube44\ubc00\ubc88\ud638 | |
| 234 | -cnsltManageVO.areaNo=\uc9c0\uc5ed\ubc88\ud638 | |
| 235 | -cnsltManageVO.middleTelno=\uc911\uac04\uc804\ud654\ubc88\ud638 | |
| 236 | -cnsltManageVO.endTelno=\ub05d\uc804\ud654\ubc88\ud638 | |
| 237 | -cnsltManageVO.wrterNm=\uc791\uc131\uc790\uba85 | |
| 238 | -cnsltManageVO.managtCn=\ub2f5\ubcc0\ub0b4\uc6a9 | |
| 239 | - | |
| 240 | -#Vlidator Errors- siteManageVO# | |
| 241 | -siteManageVO.siteNm=\uc0ac\uc774\ud2b8\uba85 | |
| 242 | -siteManageVO.siteUrl=\uc0ac\uc774\ud2b8 URL | |
| 243 | -siteManageVO.siteDc=\uc0ac\uc774\ud2b8\uc124\uba85 | |
| 244 | -siteManageVO.siteThemaClCode=\uc0ac\uc774\ud2b8\uc8fc\uc81c\ubd84\ub958 | |
| 245 | -siteManageVO.actvtyAt=\ud65c\uc131\uc5ec\ubd80 | |
| 246 | -siteManageVO.useAt=\uc0ac\uc6a9\uc5ec\ubd80 | |
| 247 | - | |
| 248 | -#Vlidator Errors- recomendSiteManageVO# | |
| 249 | -recomendSiteManageVO.recomendSiteNm=\ucd94\ucc9c\uc0ac\uc774\ud2b8\uba85 | |
| 250 | -recomendSiteManageVO.recomendSiteUrl=\ucd94\ucc9c\uc0ac\uc774\ud2b8 URL | |
| 251 | -recomendSiteManageVO.recomendSiteDc=\ucd94\ucc9c\uc0ac\uc774\ud2b8\uc124\uba85 | |
| 252 | -recomendSiteManageVO.recomendResnCn=\ucd94\ucc9c\uc0ac\uc774\ud2b8\uc2b9\uc778\uc0ac\uc720 | |
| 253 | -recomendSiteManageVO.confmDe=\uc2b9\uc778\uc77c\uc790 | |
| 254 | - | |
| 255 | -#Vlidator Errors- hpcmManageVO# | |
| 256 | -hpcmManageVO.hpcmSeCode=\ub3c4\uc6c0\ub9d0\uad6c\ubd84 | |
| 257 | -hpcmManageVO.hpcmDf=\ub3c4\uc6c0\ub9d0\uc815\uc758 | |
| 258 | -hpcmManageVO.hpcmDc=\ub3c4\uc6c0\ub9d0\uc124\uba85 | |
| 259 | - | |
| 260 | -#Vlidator Errors- newsManageVO# | |
| 261 | -newsManageVO.newsSj=\ub274\uc2a4\uc81c\ubaa9 | |
| 262 | -newsManageVO.newsCn=\ub274\uc2a4\ub0b4\uc6a9 | |
| 263 | -newsManageVO.ntceDe=\uac8c\uc2dc\uc77c\uc790 | |
| 264 | - | |
| 265 | -#Vlidator Errors- faqManageVO# | |
| 266 | -faqManageVO.qestnSj=\uc9c8\ubb38\uc81c\ubaa9 | |
| 267 | -faqManageVO.qestnCn=\uc9c8\ubb38\ub0b4\uc6a9 | |
| 268 | -faqManageVO.answerCn=\ub2f5\ubcc0\ub0b4\uc6a9 | |
| 269 | - | |
| 270 | -#Vlidator Errors- stplatManageVO# | |
| 271 | -stplatManageVO.useStplatNm=\uc774\uc6a9\uc57d\uad00\uba85 | |
| 272 | -stplatManageVO.useStplatCn=\uc774\uc6a9\uc57d\uad00\ub0b4\uc6a9 | |
| 273 | -stplatManageVO.infoProvdAgreCn=\uc815\ubcf4\uc81c\uacf5\ub3d9\uc758\ub0b4\uc6a9 | |
| 274 | - | |
| 275 | -#Vlidator Errors- cpyrhtPrtcPolicyVO# | |
| 276 | -cpyrhtPrtcPolicyVO.cpyrhtPrtcPolicyCn=\uc800\uc791\uad8c\ubcf4\ud638\uc815\ucc45\ub0b4\uc6a9 | |
| 277 | - | |
| 278 | -#Vlidator Errors- qnaManageVO# | |
| 279 | -qnaManageVO.qestnSj=\uc9c8\ubb38\uc81c\ubaa9 | |
| 280 | -qnaManageVO.qestnCn=\uc9c8\ubb38\ub0b4\uc6a9 | |
| 281 | -qnaManageVO.writngPassword=\uc791\uc131\ube44\ubc00\ubc88\ud638 | |
| 282 | -qnaManageVO.areaNo=\uc9c0\uc5ed\ubc88\ud638 | |
| 283 | -qnaManageVO.middleTelno=\uc911\uac04\uc804\ud654\ubc88\ud638 | |
| 284 | -qnaManageVO.endTelno=\ub05d\uc804\ud654\ubc88\ud638 | |
| 285 | -qnaManageVO.wrterNm=\uc791\uc131\uc790\uba85 | |
| 286 | -qnaManageVO.answerCn=\ub2f5\ubcc0\ub0b4\uc6a9 | |
| 287 | - | |
| 288 | -#Vlidator Errors- ReprtStatsVO# | |
| 289 | -sts.reprtId = \ubcf4\uace0\uc11cID | |
| 290 | -sts.title = \ubcf4\uace0\uc11c\uba85 | |
| 291 | -sts.category = \ubcf4\uace0\uc11c\uc720\ud615 | |
| 292 | -sts.status = \uc9c4\ud589\uc0c1\ud0dc | |
| 293 | -sts.regDate = \ub4f1\ub85d\uc77c\uc2dc | |
| 294 | - | |
| 295 | -#Rest day messages# | |
| 296 | -sym.cal.restDay = \ud734\uc77c\uc77c\uc790 | |
| 297 | -sym.cal.restName = \ud734\uc77c\uba85 | |
| 298 | -sym.cal.restDetail = \ud734\uc77c\uc124\uba85 | |
| 299 | -sym.cal.restCategory = \ud734\uc77c\uad6c\ubd84 | |
| 300 | - | |
| 301 | -image.errorBg = \uc624\ub958\uc774\ubbf8\uc9c0 | |
| 302 | -comUssUmt.userManageRegist.name=\ud68c\uc6d0\uc774\ub984 | |
| 303 | -comUssUmt.userManageRegist.pass=\ube44\ubc00\ubc88\ud638 | |
| 304 | -comUssUmt.userManageRegist.passConfirm=\ube44\ubc00\ubc88\ud638\ud655\uc778 | |
| 305 | -comUssUmt.userManageRegist.passHit=\ube44\ubc00\ubc88\ud638\ud78c\ud2b8 | |
| 306 | -comUssUmt.userManageRegist.passOk=\ube44\ubc00\ubc88\ud638\uc815\ub2f5 | |
| 307 | -comUssUmt.userManageRegist.saxTypeCode=\uc131\ubcc4 | |
| 308 | -comUssUmt.userManageRegist.photo=\uc0ac\uc9c4 | |
| 309 | -comUssUmt.userManageRegist.file=\ud30c\uc77c | |
| 310 | - | |
| 311 | -comUssUmt.userManageRegist.birthDay=\uc0dd\ub144\uc6d4\uc77c | |
| 312 | -comUssUmt.userManageRegist.dept=\ubd80\uc11c | |
| 313 | -comUssUmt.userManageRegist.position=\uc9c1\ucc45 | |
| 314 | - | |
| 315 | -comUssUmt.userManageRegist.emailYN=\uc774\uba54\uc77c \uc218\uc2e0\uc5ec\ubd80 | |
| 316 | -comUssUmt.userManageRegist.smsYN=SMS \uc218\uc2e0\uc5ec\ubd80 | |
| 317 | -comUssUmt.userManageRegist.autoReject=\uc790\ub3d9\ub4f1\ub85d\ubc29\uc9c0 | |
| 318 | - | |
| 319 | -comUssUmt.userManageRegist.tel=\uc804\ud654\ubc88\ud638 | |
| 320 | -comUssUmt.userManageRegist.fax=\ud329\uc2a4\ubc88\ud638 | |
| 321 | -comUssUmt.userManageRegist.phone=\ud578\ub4dc\ud3f0\ubc88\ud638 | |
| 322 | -comUssUmt.userManageRegist.email=\uc774\uba54\uc77c\uc8fc\uc18c | |
| 323 | -comUssUmt.userManageRegist.post=\uc6b0\ud3b8\ubc88\ud638 | |
| 324 | -comUssUmt.userManageRegist.addr=\uc8fc\uc18c | |
| 325 | -comUssUmt.userManageRegist.addrDetail=\uc0c1\uc138\uc8fc\uc18c | |
| 326 | -comUssUmt.userManageRegist.groupId=\uadf8\ub8f9\uc544\uc774\ub514 | |
| 327 | -comUssUmt.userManageRegist.status=\uc77c\ubc18\ud68c\uc6d0\uc0c1\ud0dc\ucf54\ub4dc | |
| 328 | -comUssUmt.userManageRegistBtn.idSearch=\uc911\ubcf5\uc544\uc774\ub514 \uac80\uc0c9 | |
| 329 | - | |
| 330 | -comUssUmt.userManageRegistModal.title=\uc544\uc774\ub514 \uc911\ubcf5 \ud655\uc778 | |
| 331 | -comUssUmt.userManageRegistModal.userIsId=\uc0ac\uc6a9\ud560\uc544\uc774\ub514 | |
| 332 | -comUssUmt.userManageRegistModal.initStatus=\uacb0\uacfc : \uc911\ubcf5\ud655\uc778\uc744 \uc2e4\ud589\ud558\uc2ed\uc2dc\uc624. | |
| 333 | - | |
| 334 | -comUssUmt.userManageRegistModal.result=\uacb0\uacfc | |
| 335 | -comUssUmt.userManageRegistModal.useMsg=\ub294 \uc0ac\uc6a9\ud560\uc218 \uc5c6\ub294 \uc544\uc774\ub514\uc785\ub2c8\ub2e4. | |
| 336 | -comUssUmt.userManageRegistModal.notUseMsg=\ub294 \uc0ac\uc6a9\uac00\ub2a5\ud55c \uc544\uc774\ub514\uc785\ub2c8\ub2e4. | |
| 337 | -comUssUmt.userManageRegistModal.noIdMsg=\uc0ac\uc6a9\uc774 \ubd88\uac00\ub2a5\ud55c \uc544\uc774\ub514 \uc785\ub2c8\ub2e4 | |
| 338 | - | |
| 339 | -comUssUmt.userManageModifyBtn.passwordChange=\ube44\ubc00\ubc88\ud638\ubcc0\uacbd | |
| 340 | - | |
| 341 | -comUssUmt.userManagePasswordUpdt.title=\ube44\ubc00\ubc88\ud638\ubcc0\uacbd | |
| 342 | -comUssUmt.userManagePasswordUpdt.id=\uc77c\ubc18\ud68c\uc6d0\uc544\uc774\ub514 | |
| 343 | -comUssUmt.userManagePasswordUpdt.oldPass=\uae30\uc874 \ube44\ubc00\ubc88\ud638 | |
| 344 | -comUssUmt.userManagePasswordUpdt.pass=\ube44\ubc00\ubc88\ud638 | |
| 345 | -comUssUmt.userManagePasswordUpdt.passConfirm=\ube44\ubc00\ubc88\ud638\ud655\uc778 | |
| 346 | -#\ud68c\uc6d0\uac00\uc785\uad00\ub9ac \ucd94\uac00 | |
| 347 | -comUssUmt.userManage.title =\ud68c\uc6d0\uac00\uc785 | |
| 348 | -comUssUmt.userManageRegistModal.title=\uc544\uc774\ub514 \uc911\ubcf5 \ud655\uc778 | |
| 349 | -comUssUmt.userManageRegistModal.initStatus=\uc911\ubcf5\ud655\uc778\uc744 \uc2e4\ud589\ud558\uc2ed\uc2dc\uc624. | |
| 350 | -title.create=\uc0dd\uc131 | |
| 351 | -common.summary.list=\ub9ac\uc2a4\ud2b8(No newline at end of file) |
--- target/classes/egovframework/migration/impl/MariaMigrationDAO.class
| Binary file is not shown |
--- target/classes/egovframework/migration/service/KcdfNewBbsVO.class
| Binary file is not shown |
--- target/classes/egovframework/migration/service/KcdfNewDAO.class
| Binary file is not shown |
--- target/classes/egovframework/migration/service/MariaMigrationService.class
| Binary file is not shown |
--- target/classes/egovframework/migration/service/NcmsDAO.class
| Binary file is not shown |
--- target/classes/egovframework/migration/service/NcmsVO.class
| Binary file is not shown |
--- target/classes/egovframework/migration/web/MariaMigrationController.class
| Binary file is not shown |
--- target/classes/egovframework/spring/com/context-aspect.xml
... | ... | @@ -1,74 +0,0 @@ |
| 1 | -<?xml version="1.0" encoding="UTF-8"?> | |
| 2 | -<beans xmlns="http://www.springframework.org/schema/beans" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" | |
| 3 | - xmlns:aop="http://www.springframework.org/schema/aop" | |
| 4 | - xsi:schemaLocation="http://www.springframework.org/schema/beans http://www.springframework.org/schema/beans/spring-beans-4.0.xsd | |
| 5 | - http://www.springframework.org/schema/aop http://www.springframework.org/schema/aop/spring-aop-4.0.xsd"> | |
| 6 | - | |
| 7 | - <!-- 내부업무의 기능 작동과정에서 Exception 발생시 후처리를 위한 AOP설정 --> | |
| 8 | - <aop:config> | |
| 9 | - <aop:pointcut id="serviceMethod" expression="execution(* itn.let..impl.*Impl.*(..)) or execution(* itn.com..impl.*Impl.*(..))" /> | |
| 10 | - | |
| 11 | - <aop:aspect ref="exceptionTransfer"> | |
| 12 | - <aop:after-throwing throwing="exception" pointcut-ref="serviceMethod" method="transfer" /> | |
| 13 | - </aop:aspect> | |
| 14 | - </aop:config> | |
| 15 | - | |
| 16 | - <!-- 파라메터 로그 찍기 --> | |
| 17 | - <!-- | |
| 18 | - <bean id="loggerAspect" class="itn.com.cmm.aspect.LoggerAspect"></bean> | |
| 19 | - <aop:config> | |
| 20 | - <aop:pointcut expression="execution(* itn..*Controller.*(..))" id="loggerPointCut"/> | |
| 21 | - <aop:aspect ref="loggerAspect"> | |
| 22 | - <aop:around pointcut-ref="loggerPointCut" method="methodLogger"/> | |
| 23 | - </aop:aspect> | |
| 24 | - </aop:config> | |
| 25 | - --> | |
| 26 | - <!-- Exception 발생시 후처리를 위해 표준프레임워크 실행환경의 ExceptionTransfer를 활용하도록 설정--> | |
| 27 | - <bean id="exceptionTransfer" class="egovframework.rte.fdl.cmmn.aspect.ExceptionTransfer"> | |
| 28 | - <property name="exceptionHandlerService"> | |
| 29 | - <list> | |
| 30 | - <ref bean="defaultExceptionHandleManager" /> | |
| 31 | - <ref bean="otherExceptionHandleManager" /> | |
| 32 | - </list> | |
| 33 | - </property> | |
| 34 | - </bean> | |
| 35 | - | |
| 36 | - <!-- Exception 발생에 대한 기본Excpton처리를 위해 표준프레임워크 실행환경의 DefaultExceptionTransfer를 활용하도록 설정--> | |
| 37 | - <bean id="defaultExceptionHandleManager" class="egovframework.rte.fdl.cmmn.exception.manager.DefaultExceptionHandleManager"> | |
| 38 | - <property name="reqExpMatcher"> | |
| 39 | - <ref bean="antPathMater"/> | |
| 40 | - </property> | |
| 41 | - <property name="patterns"> | |
| 42 | - <list> | |
| 43 | - <value>**service.impl.*</value> | |
| 44 | - </list> | |
| 45 | - </property> | |
| 46 | - <property name="handlers"> | |
| 47 | - <list> | |
| 48 | - <ref bean="egovHandler" /> | |
| 49 | - </list> | |
| 50 | - </property> | |
| 51 | - </bean> | |
| 52 | - | |
| 53 | - <!-- Exception 발생에 대한 기타Excpton처리를 위해 표준프레임워크 실행환경의 DefaultExceptionTransfer를 활용하도록 설정--> | |
| 54 | - <bean id="otherExceptionHandleManager" class="egovframework.rte.fdl.cmmn.exception.manager.DefaultExceptionHandleManager"> | |
| 55 | - <property name="reqExpMatcher"> | |
| 56 | - <ref bean="antPathMater"/> | |
| 57 | - </property> | |
| 58 | - <property name="patterns"> | |
| 59 | - <list> | |
| 60 | - <value>**service.impl.*</value> | |
| 61 | - </list> | |
| 62 | - </property> | |
| 63 | - <property name="handlers"> | |
| 64 | - <list> | |
| 65 | - <ref bean="otherHandler" /> | |
| 66 | - </list> | |
| 67 | - </property> | |
| 68 | - </bean> | |
| 69 | - | |
| 70 | - <!-- 템플릿 내에서 Exception 발생시 실제 처리를 위한 클래스 설정--> | |
| 71 | - <bean id="egovHandler" class="itn.com.cmm.EgovComExcepHndlr" /> | |
| 72 | - <bean id="otherHandler" class="itn.com.cmm.EgovComOthersExcepHndlr" /> | |
| 73 | - | |
| 74 | -</beans>(No newline at end of file) |
--- target/classes/egovframework/spring/com/context-bbsChgHst.xml
... | ... | @@ -1,18 +0,0 @@ |
| 1 | -<?xml version="1.0" encoding="UTF-8"?> | |
| 2 | -<beans xmlns="http://www.springframework.org/schema/beans" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" | |
| 3 | - xmlns:aop="http://www.springframework.org/schema/aop" | |
| 4 | - xsi:schemaLocation="http://www.springframework.org/schema/beans http://www.springframework.org/schema/beans/spring-beans-4.0.xsd | |
| 5 | - http://www.springframework.org/schema/aop http://www.springframework.org/schema/aop/spring-aop-4.0.xsd"> | |
| 6 | - | |
| 7 | - <!-- Notice Change History Aspect --> | |
| 8 | - <bean id="bbsChgHst" class="itn.let.cop.bbs.service.EgovBBSChgHstAspect" /> | |
| 9 | - | |
| 10 | - <aop:config> | |
| 11 | - <aop:aspect id="bbsChgHstAspect" ref="bbsChgHst"> | |
| 12 | - <aop:after-returning returning="returnVal" pointcut="execution(public * itn.let.cop.bbs.service.EgovBBSManageService.insertBoardArticle(..)) | |
| 13 | - || execution(public * itn.let.cop.bbs.service.EgovBBSManageService.updateBoardArticle(..)) | |
| 14 | - || execution(public * itn.let.cop.bbs.service.EgovBBSManageService.deleteBoardArticle(..))" method="insertBBSChgHst" /> | |
| 15 | - </aop:aspect> | |
| 16 | - </aop:config> | |
| 17 | - | |
| 18 | -</beans>(No newline at end of file) |
--- target/classes/egovframework/spring/com/context-common.xml
... | ... | @@ -1,266 +0,0 @@ |
| 1 | -<?xml version="1.0" encoding="UTF-8"?> | |
| 2 | -<beans xmlns="http://www.springframework.org/schema/beans" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" | |
| 3 | - xmlns:context="http://www.springframework.org/schema/context" | |
| 4 | - xsi:schemaLocation="http://www.springframework.org/schema/beans http://www.springframework.org/schema/beans/spring-beans-4.0.xsd | |
| 5 | - http://www.springframework.org/schema/context http://www.springframework.org/schema/context/spring-context-4.0.xsd"> | |
| 6 | - | |
| 7 | - <!-- component-scan 설정--> | |
| 8 | - <context:component-scan base-package="egovframework, itn"> | |
| 9 | - <!-- <context:component-scan base-package="itn"> --> | |
| 10 | - <!-- <context:include-filter type="annotation" expression="org.springframework.stereotype.Service"/> | |
| 11 | - <context:include-filter type="annotation" expression="org.springframework.stereotype.Repository"/> --> | |
| 12 | - <context:exclude-filter type="annotation" expression="org.springframework.stereotype.Controller"/> | |
| 13 | - </context:component-scan> | |
| 14 | - | |
| 15 | - <!-- 메시지소스빈 설정 --> | |
| 16 | - <bean id="egovMessageSource" class="itn.com.cmm.EgovMessageSource"> | |
| 17 | - <property name="reloadableResourceBundleMessageSource"> | |
| 18 | - <ref bean="messageSource" /> | |
| 19 | - </property> | |
| 20 | - </bean> | |
| 21 | - | |
| 22 | - <!-- 프로퍼티 파일 위치 설정 --> | |
| 23 | - <bean id="messageSource" class="org.springframework.context.support.ReloadableResourceBundleMessageSource"> | |
| 24 | - <property name="basenames"> | |
| 25 | - <list> | |
| 26 | - <value>classpath:/egovframework/message/com/message-common</value> | |
| 27 | - <value>classpath:/egovframework/rte/fdl/idgnr/messages/idgnr</value> | |
| 28 | - <value>classpath:/egovframework/rte/fdl/property/messages/properties</value> | |
| 29 | - </list> | |
| 30 | - </property> | |
| 31 | - <property name="cacheSeconds"> | |
| 32 | - <value>60</value> | |
| 33 | - </property> | |
| 34 | - </bean> | |
| 35 | - | |
| 36 | - <!-- Exception 발생시 후처리용 별도작업을 위해 실행환경의 LeveaTrace를 활용하도록 설정 --> | |
| 37 | - <bean id="leaveaTrace" class="egovframework.rte.fdl.cmmn.trace.LeaveaTrace"> | |
| 38 | - <property name="traceHandlerServices"> | |
| 39 | - <list> | |
| 40 | - <ref bean="traceHandlerService" /> | |
| 41 | - </list> | |
| 42 | - </property> | |
| 43 | - </bean> | |
| 44 | - <!-- Exception 발생시 후처리용 별도작업을 위해 실행환경의 DefaultTrace Handle Manager 를 활용하도록 설정 --> | |
| 45 | - <bean id="traceHandlerService" class="egovframework.rte.fdl.cmmn.trace.manager.DefaultTraceHandleManager"> | |
| 46 | - <property name="reqExpMatcher"> | |
| 47 | - <ref bean="antPathMater" /> | |
| 48 | - </property> | |
| 49 | - <property name="patterns"> | |
| 50 | - <list> | |
| 51 | - <value>*</value> | |
| 52 | - </list> | |
| 53 | - </property> | |
| 54 | - <property name="handlers"> | |
| 55 | - <list> | |
| 56 | - <ref bean="defaultTraceHandler" /> | |
| 57 | - </list> | |
| 58 | - </property> | |
| 59 | - </bean> | |
| 60 | - | |
| 61 | - <!-- Exception 발생시 후처리용 별도작업을 위해 실행환경의 AntPathMatcher 를 활용하도록 설정 --> | |
| 62 | - <bean id="antPathMater" class="org.springframework.util.AntPathMatcher" /> | |
| 63 | - <!-- Exception 발생시 후처리용 별도작업을 위해 실행환경의 DefaultTraceHandler 를 활용하도록 설정 egovframework.rte.fdl.cmmn.trace.handler.DefaultTraceHandler --> | |
| 64 | - <bean id="defaultTraceHandler" class="itn.com.cmm.EgovComTraceHandler" /> | |
| 65 | - | |
| 66 | - <!-- For Pagination Tag 설정--> | |
| 67 | - <bean id="imageRenderer" class="itn.com.cmm.ImagePaginationRenderer"/> | |
| 68 | - <bean id="imageRendererWeb" class="itn.com.cmm.ImagePaginationRendererWeb"/> | |
| 69 | - <bean id="paginationManager" class="egovframework.rte.ptl.mvc.tags.ui.pagination.DefaultPaginationManager"> | |
| 70 | - <property name="rendererType"> | |
| 71 | - <map> | |
| 72 | - <entry key="image" value-ref="imageRenderer"/> | |
| 73 | - <entry key="imageWeb" value-ref="imageRendererWeb"/> | |
| 74 | - </map> | |
| 75 | - </property> | |
| 76 | - </bean> | |
| 77 | - | |
| 78 | - <!-- MULTIPART RESOLVERS --> | |
| 79 | - <!-- regular spring resolver --> | |
| 80 | - <bean id="spring.RegularCommonsMultipartResolver" class="org.springframework.web.multipart.commons.CommonsMultipartResolver"> | |
| 81 | - <property name="maxUploadSize" value="100000000" /> | |
| 82 | - <property name="maxInMemorySize" value="100000000" /> | |
| 83 | - </bean> | |
| 84 | - <!-- custom multi file resolver --> | |
| 85 | - <bean id="local.MultiCommonsMultipartResolver" class="itn.com.cmm.web.EgovMultipartResolver"> | |
| 86 | - <property name="maxUploadSize" value="100000000" /> | |
| 87 | - <property name="maxInMemorySize" value="100000000" /> | |
| 88 | - </bean> | |
| 89 | - <!-- choose one from above and alias it to the name Spring expects --> | |
| 90 | - <!-- alias name="local.MultiCommonsMultipartResolver" alias="multipartResolver" /--> | |
| 91 | - <alias name="spring.RegularCommonsMultipartResolver" alias="multipartResolver" /> | |
| 92 | - | |
| 93 | - <bean id="searchService" class="itn.let.solr.search.impl.SearchServiceImpl"> | |
| 94 | - <property name="introFieldSet"> <!-- 재단소개 --> | |
| 95 | - <set> | |
| 96 | - <value>id</value> | |
| 97 | - <value>menuNo</value> | |
| 98 | - <value>menuCours</value> | |
| 99 | - <value>frstRegistPnttm</value> | |
| 100 | - <value>category</value> | |
| 101 | - <value>text</value> | |
| 102 | - <value>frstRegistPnttm</value> | |
| 103 | - <value>registDt</value> | |
| 104 | - <value>menuNm</value> | |
| 105 | - <value>url</value> | |
| 106 | - </set> | |
| 107 | - </property> | |
| 108 | - | |
| 109 | - <property name="policyFieldSet"> <!-- 정책연구 --> | |
| 110 | - <set> | |
| 111 | - <value>id</value> | |
| 112 | - <value>menuNo</value> | |
| 113 | - <value>menuCours</value> | |
| 114 | - <value>frstRegistPnttm</value> | |
| 115 | - <value>category</value> | |
| 116 | - <value>text</value> | |
| 117 | - <value>frstRegistPnttm</value> | |
| 118 | - <value>registDt</value> | |
| 119 | - <value>menuNm</value> | |
| 120 | - <value>url</value> | |
| 121 | - </set> | |
| 122 | - </property> | |
| 123 | - | |
| 124 | - <property name="safetyFieldSet"> <!-- 안전교육 --> | |
| 125 | - <set> | |
| 126 | - <value>id</value> | |
| 127 | - <value>menuNo</value> | |
| 128 | - <value>menuCours</value> | |
| 129 | - <value>frstRegistPnttm</value> | |
| 130 | - <value>category</value> | |
| 131 | - <value>text</value> | |
| 132 | - <value>frstRegistPnttm</value> | |
| 133 | - <value>registDt</value> | |
| 134 | - <value>menuNm</value> | |
| 135 | - <value>url</value> | |
| 136 | - </set> | |
| 137 | - </property> | |
| 138 | - | |
| 139 | - <property name="noticeFieldSet"> <!-- 알림정보 --> | |
| 140 | - <set> | |
| 141 | - <value>id</value> | |
| 142 | - <value>menuNo</value> | |
| 143 | - <value>menuCours</value> | |
| 144 | - <value>frstRegistPnttm</value> | |
| 145 | - <value>category</value> | |
| 146 | - <value>text</value> | |
| 147 | - <value>frstRegistPnttm</value> | |
| 148 | - <value>registDt</value> | |
| 149 | - <value>menuNm</value> | |
| 150 | - <value>url</value> | |
| 151 | - </set> | |
| 152 | - </property> | |
| 153 | - | |
| 154 | - <property name="communityFieldSet"> <!-- 소통참여 --> | |
| 155 | - <set> | |
| 156 | - <value>id</value> | |
| 157 | - <value>menuNo</value> | |
| 158 | - <value>menuCours</value> | |
| 159 | - <value>frstRegistPnttm</value> | |
| 160 | - <value>category</value> | |
| 161 | - <value>text</value> | |
| 162 | - <value>frstRegistPnttm</value> | |
| 163 | - <value>registDt</value> | |
| 164 | - <value>menuNm</value> | |
| 165 | - <value>url</value> | |
| 166 | - </set> | |
| 167 | - </property> | |
| 168 | - | |
| 169 | - <property name="infoFieldSet"> <!-- 정보공개 --> | |
| 170 | - <set> | |
| 171 | - <value>id</value> | |
| 172 | - <value>menuNo</value> | |
| 173 | - <value>menuCours</value> | |
| 174 | - <value>frstRegistPnttm</value> | |
| 175 | - <value>category</value> | |
| 176 | - <value>text</value> | |
| 177 | - <value>frstRegistPnttm</value> | |
| 178 | - <value>registDt</value> | |
| 179 | - <value>menuNm</value> | |
| 180 | - <value>url</value> | |
| 181 | - </set> | |
| 182 | - </property> | |
| 183 | - | |
| 184 | - | |
| 185 | - | |
| 186 | - | |
| 187 | - | |
| 188 | - | |
| 189 | - <property name="fileFieldSet"> | |
| 190 | - <set> | |
| 191 | - <value>id</value> | |
| 192 | - <value>atchFileId</value> | |
| 193 | - <value>fileSn</value> | |
| 194 | - <value>orignlFileNm</value> | |
| 195 | - <value>fileStreCours</value> | |
| 196 | - <value>streFileNm</value> | |
| 197 | - <value>fileExtsn</value> | |
| 198 | - <value>fileSize</value> | |
| 199 | - <value>nttSj</value> | |
| 200 | - <value>frstRegistPnttm</value> | |
| 201 | - <value>bbsId</value> | |
| 202 | - <value>bbsNm</value> | |
| 203 | - <value>menuNm</value> | |
| 204 | - <value>category</value> | |
| 205 | - <value>menuCours</value> | |
| 206 | - <value>url</value> | |
| 207 | - <value>author</value> | |
| 208 | - <value>text</value> | |
| 209 | - </set> | |
| 210 | - </property> | |
| 211 | - <property name="boardFieldSet"> | |
| 212 | - <set> | |
| 213 | - <value>id</value> | |
| 214 | - <value>bbsNm</value> | |
| 215 | - <value>bbsId</value> | |
| 216 | - <value>nttId</value> | |
| 217 | - <value>nttSj</value> | |
| 218 | - <value>text</value> | |
| 219 | - <value>frstRegistPnttm</value> | |
| 220 | - <value>url</value> | |
| 221 | - <value>menuNm</value> | |
| 222 | - <value>category</value> | |
| 223 | - <value>menuCours</value> | |
| 224 | - </set> | |
| 225 | - </property> | |
| 226 | - <property name="webpageFieldSet"> | |
| 227 | - <set> | |
| 228 | - <value>id</value> | |
| 229 | - <value>bbsNm</value> | |
| 230 | - <value>bbsId</value> | |
| 231 | - <value>nttId</value> | |
| 232 | - <value>nttSj</value> | |
| 233 | - <value>text</value> | |
| 234 | - <value>frstRegistPnttm</value> | |
| 235 | - <value>url</value> | |
| 236 | - <value>menuNm</value> | |
| 237 | - <value>category</value> | |
| 238 | - <value>menuCours</value> | |
| 239 | - </set> | |
| 240 | - </property> | |
| 241 | - | |
| 242 | - <property name="itn_BoardFieldSet"> | |
| 243 | - <set> | |
| 244 | - <value>id</value> | |
| 245 | - <value>menuNm</value> | |
| 246 | - <value>url</value> | |
| 247 | - <value>category</value> | |
| 248 | - <value>menuCours</value> | |
| 249 | - <value>author</value> | |
| 250 | - <value>text</value> | |
| 251 | - </set> | |
| 252 | - </property> | |
| 253 | - | |
| 254 | - <property name="itn_ContentFieldSet"> | |
| 255 | - <set> | |
| 256 | - <value>count</value> | |
| 257 | - <value>menuNm</value> | |
| 258 | - <value>url</value> | |
| 259 | - <value>category</value> | |
| 260 | - <value>menuCours</value> | |
| 261 | - <value>menuNm</value> | |
| 262 | - </set> | |
| 263 | - </property> | |
| 264 | - | |
| 265 | - </bean> | |
| 266 | -</beans> |
--- target/classes/egovframework/spring/com/context-crypto.xml
... | ... | @@ -1,32 +0,0 @@ |
| 1 | -<?xml version="1.0" encoding="UTF-8"?> | |
| 2 | -<beans xmlns="http://www.springframework.org/schema/beans" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" | |
| 3 | - xmlns:egov-crypto="http://www.egovframe.go.kr/schema/egov-crypto" | |
| 4 | - xsi:schemaLocation="http://www.springframework.org/schema/beans http://www.springframework.org/schema/beans/spring-beans-4.0.xsd | |
| 5 | - http://www.egovframe.go.kr/schema/egov-crypto http://www.egovframe.go.kr/schema/egov-crypto/egov-crypto-3.8.xsd"> | |
| 6 | - <!-- | |
| 7 | -<beans xmlns="http://www.springframework.org/schema/beans" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" | |
| 8 | - xmlns:egov-crypto="http://maven.egovframe.go.kr/schema/egov-crypto" | |
| 9 | - xsi:schemaLocation="http://www.springframework.org/schema/beans http://www.springframework.org/schema/beans/spring-beans-4.0.xsd | |
| 10 | - http://maven.egovframe.go.kr/schema/egov-crypto http://maven.egovframe.go.kr/schema/egov-crypto/egov-crypto-3.10.0.xsd"> | |
| 11 | - --> | |
| 12 | - | |
| 13 | - | |
| 14 | - <!-- | |
| 15 | - initial : globals.properties 연계 Url, UserName, Password 값 로드 여부(설정값 : true, false) | |
| 16 | - crypto : 계정 암호화 여부(설정값 : true, false) | |
| 17 | - algorithm : 계정 암호화 알고리즘 | |
| 18 | - algorithmKey : 계정 암호화키 키 | |
| 19 | - cryptoBlockSize : 계정 암호화키 블록사이즈 | |
| 20 | - cryptoPropertyLocation : 설정파일 암복호화 경로 (선택) 기본값은 'classpath:/egovframework/egovProps/globals.properties' | |
| 21 | - --> | |
| 22 | - <egov-crypto:config id="egovCryptoConfig" | |
| 23 | - initial="false" | |
| 24 | - crypto="false" | |
| 25 | - algorithm="SHA-256" | |
| 26 | - algorithmKey="egovframe" | |
| 27 | - algorithmKeyHash="gdyYs/IZqY86VcWhT8emCYfqY1ahw2vtLG+/FzNqtrQ=" | |
| 28 | - cryptoBlockSize="1024" | |
| 29 | - cryptoPropertyLocation="classpath:/egovframework/egovProps/globals.properties" | |
| 30 | - /> | |
| 31 | - | |
| 32 | -</beans>(No newline at end of file) |
--- target/classes/egovframework/spring/com/context-datasource.xml
... | ... | @@ -1,96 +0,0 @@ |
| 1 | -<?xml version="1.0" encoding="UTF-8"?> | |
| 2 | -<beans xmlns="http://www.springframework.org/schema/beans" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" | |
| 3 | - xsi:schemaLocation="http://www.springframework.org/schema/beans http://www.springframework.org/schema/beans/spring-beans-4.0.xsd"> | |
| 4 | - | |
| 5 | - <!-- 환경설정 기본정보를 globals.properties 에서 참조하도록 propertyConfigurer 설정 --> | |
| 6 | - <bean id="propertyConfigurer" | |
| 7 | - class="org.springframework.beans.factory.config.PropertyPlaceholderConfigurer"> | |
| 8 | - <property name="locations"> | |
| 9 | - <list> | |
| 10 | - <value>classpath:/egovframework/egovProps/globals_#{systemProperties['spring.profiles.active']}.properties</value> | |
| 11 | - </list> | |
| 12 | - </property> | |
| 13 | - </bean> | |
| 14 | - | |
| 15 | - <!-- datasource 설정(propertyConfigurer 활용) --> | |
| 16 | - <alias name="dataSource-${Globals.DbType}" alias="dataSource" /> | |
| 17 | - <alias name="dataSource-${Globals.DbType}" alias="egov.dataSource" /> | |
| 18 | - | |
| 19 | - <!-- mysql--> | |
| 20 | - <bean id="dataSource-mysql-spied" class="org.apache.commons.dbcp.BasicDataSource" destroy-method="close"> | |
| 21 | - <property name="driverClassName" value="${Globals.DriverClassName}"/> | |
| 22 | - <property name="url" value="${Globals.Url}" /> | |
| 23 | - <property name="username" value="${Globals.UserName}"/> | |
| 24 | - <property name="password" value="${Globals.Password}"/> | |
| 25 | - <property name="initialSize" value="30"/> | |
| 26 | - <property name="maxActive" value="100"/> | |
| 27 | - <property name="maxWait" value="-1"/> | |
| 28 | - <!-- 특정 시간마다 validationQuery를 실행 셋팅 시작 --> | |
| 29 | - <property name="validationQuery" value="select 1"/> | |
| 30 | - <property name="testWhileIdle" value="true"/> | |
| 31 | - <property name="timeBetweenEvictionRunsMillis" value="7200000"/> | |
| 32 | - <!-- 특정 시간마다 validationQuery를 실행 셋팅 끝 --> | |
| 33 | - </bean> | |
| 34 | - | |
| 35 | - <bean id="dataSource-mysql" class="net.sf.log4jdbc.Log4jdbcProxyDataSource"> | |
| 36 | - <constructor-arg ref="dataSource-mysql-spied" /> | |
| 37 | - <property name="logFormatter"> | |
| 38 | - <bean class="itn.let.utl.log4j.Log4JdbcCustomFormatter"> | |
| 39 | - <property name="loggingType" value="MULTI_LINE" /> | |
| 40 | - <property name="margin" value="8" /> | |
| 41 | - <property name="sqlPrefix" value="SQL:" /> | |
| 42 | - </bean> | |
| 43 | - </property> | |
| 44 | - </bean> | |
| 45 | - | |
| 46 | - <!-- Oracle --> | |
| 47 | - <bean id="dataSource-oracle" class="org.apache.commons.dbcp.BasicDataSource" destroy-method="close"> | |
| 48 | - <property name="driverClassName" value="oracle.jdbc.driver.OracleDriver"/> | |
| 49 | - <property name="url" value="jdbc:oracle:thin:@192.168.0.15:1521:ORCL" /> | |
| 50 | - <property name="username" value="KCDF_TEMP"/> | |
| 51 | - <property name="password" value="kcdf"/> | |
| 52 | - </bean> | |
| 53 | - | |
| 54 | - <!-- kcdf migration db --> | |
| 55 | - <bean id="dataSource-kcdf" class="org.apache.commons.dbcp.BasicDataSource" destroy-method="close"> | |
| 56 | - <property name="driverClassName" value="core.log.jdbc.driver.MysqlDriver"/> | |
| 57 | - <property name="url" value="jdbc:mysql://121.163.40.153:3306/kcdf_new" /> | |
| 58 | - <property name="username" value="kcdf_new"/> | |
| 59 | - <property name="password" value="kcdf_new"/> | |
| 60 | - </bean> | |
| 61 | - | |
| 62 | - <!-- Oracle --> | |
| 63 | - <!-- 기존소스 --> | |
| 64 | - <!-- <bean id="dataSource-oracle" class="org.apache.commons.dbcp.BasicDataSource" destroy-method="close"> | |
| 65 | - <property name="driverClassName" value="${Globals.DriverClassName}"/> | |
| 66 | - <property name="url" value="${Globals.Url}" /> | |
| 67 | - <property name="username" value="${Globals.UserName}"/> | |
| 68 | - <property name="password" value="${Globals.Password}"/> | |
| 69 | - </bean> --> | |
| 70 | - | |
| 71 | - <!-- Altibase --> | |
| 72 | - <bean id="dataSource-altibase" class="org.apache.commons.dbcp.BasicDataSource" destroy-method="close"> | |
| 73 | - <property name="driverClassName" value="${Globals.DriverClassName}"/> | |
| 74 | - <property name="url" value="${Globals.Url}" /> | |
| 75 | - <property name="username" value="${Globals.UserName}"/> | |
| 76 | - <property name="password" value="${Globals.Password}"/> | |
| 77 | - <property name="maxActive" value="10"/> | |
| 78 | - </bean> | |
| 79 | - | |
| 80 | - <!-- Tibero --> | |
| 81 | - <bean id="dataSource-tibero" class="org.apache.commons.dbcp.BasicDataSource" destroy-method="close"> | |
| 82 | - <property name="driverClassName" value="${Globals.DriverClassName}"/> | |
| 83 | - <property name="url" value="${Globals.Url}" /> | |
| 84 | - <property name="username" value="${Globals.UserName}"/> | |
| 85 | - <property name="password" value="${Globals.Password}"/> | |
| 86 | - </bean> | |
| 87 | - | |
| 88 | - <!-- cubrid --> | |
| 89 | - <bean id="dataSource-cubrid" class="org.apache.commons.dbcp.BasicDataSource" destroy-method="close"> | |
| 90 | - <property name="driverClassName" value="${Globals.DriverClassName}"/> | |
| 91 | - <property name="url" value="${Globals.Url}" /> | |
| 92 | - <property name="username" value="${Globals.UserName}"/> | |
| 93 | - <property name="password" value="${Globals.Password}"/> | |
| 94 | - </bean> | |
| 95 | - | |
| 96 | -</beans> |
--- target/classes/egovframework/spring/com/context-excel.xml
... | ... | @@ -1,11 +0,0 @@ |
| 1 | -<?xml version="1.0" encoding="UTF-8"?> | |
| 2 | -<beans xmlns="http://www.springframework.org/schema/beans" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" | |
| 3 | - xmlns:p="http://www.springframework.org/schema/p" | |
| 4 | - xsi:schemaLocation="http://www.springframework.org/schema/beans http://www.springframework.org/schema/beans/spring-beans-4.0.xsd"> | |
| 5 | - | |
| 6 | - <bean id="excelZipService" class="egovframework.rte.fdl.excel.impl.EgovExcelServiceImpl"> | |
| 7 | - <property name="mapClass" value="itn.let.sym.ccm.zip.service.impl.EgovCcmExcelZipMapping" /> | |
| 8 | - <property name="sqlMapClient" ref="sqlMapClient" /> | |
| 9 | - </bean> | |
| 10 | - | |
| 11 | -</beans> |
--- target/classes/egovframework/spring/com/context-idgen.xml
... | ... | @@ -1,2837 +0,0 @@ |
| 1 | -<?xml version="1.0" encoding="UTF-8"?> | |
| 2 | -<beans xmlns="http://www.springframework.org/schema/beans" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" | |
| 3 | - xsi:schemaLocation="http://www.springframework.org/schema/beans http://www.springframework.org/schema/beans/spring-beans-4.0.xsd"> | |
| 4 | - | |
| 5 | - <!-- 첨부파일 ID Generation Config--> | |
| 6 | - <bean name="egovFileIdGnrService" | |
| 7 | - class="egovframework.rte.fdl.idgnr.impl.EgovTableIdGnrServiceImpl" | |
| 8 | - destroy-method="destroy"> | |
| 9 | - <property name="dataSource" ref="dataSource-${Globals.DbType}" /> | |
| 10 | - <property name="strategy" ref="fileStrategy" /> | |
| 11 | - <property name="blockSize" value="10"/> | |
| 12 | - <property name="table" value="IDS"/> | |
| 13 | - <property name="tableName" value="FILE_ID"/> | |
| 14 | - </bean> | |
| 15 | - <!-- 첨부파일 ID Generation Strategy Config --> | |
| 16 | - <bean name="fileStrategy" | |
| 17 | - class="egovframework.rte.fdl.idgnr.impl.strategy.EgovIdGnrStrategyImpl"> | |
| 18 | - <property name="prefix" value="FILE_" /> | |
| 19 | - <property name="cipers" value="15" /> | |
| 20 | - <property name="fillChar" value="0" /> | |
| 21 | - </bean> | |
| 22 | - | |
| 23 | - <!-- 게시판마스터 ID Generation Config--> | |
| 24 | - <bean name="egovBBSMstrIdGnrService" | |
| 25 | - class="egovframework.rte.fdl.idgnr.impl.EgovTableIdGnrServiceImpl" | |
| 26 | - destroy-method="destroy"> | |
| 27 | - <property name="dataSource" ref="dataSource" /> | |
| 28 | - <property name="strategy" ref="bbsMstrStrategy" /> | |
| 29 | - <property name="blockSize" value="10"/> | |
| 30 | - <property name="table" value="IDS"/> | |
| 31 | - <property name="tableName" value="BBS_ID"/> | |
| 32 | - </bean> | |
| 33 | - <!-- 게시판마스터 ID Generation Strategy Config --> | |
| 34 | - <bean name="bbsMstrStrategy" | |
| 35 | - class="egovframework.rte.fdl.idgnr.impl.strategy.EgovIdGnrStrategyImpl"> | |
| 36 | - <property name="prefix" value="BBSMSTR_" /> | |
| 37 | - <property name="cipers" value="12" /> | |
| 38 | - <property name="fillChar" value="0" /> | |
| 39 | - </bean> | |
| 40 | - | |
| 41 | - <!-- 게시판템플릿 ID Generation Config--> | |
| 42 | - <bean name="egovTmplatIdGnrService" | |
| 43 | - class="egovframework.rte.fdl.idgnr.impl.EgovTableIdGnrServiceImpl" | |
| 44 | - destroy-method="destroy"> | |
| 45 | - <property name="dataSource" ref="dataSource" /> | |
| 46 | - <property name="strategy" ref="tmplatStrategy" /> | |
| 47 | - <property name="blockSize" value="10"/> | |
| 48 | - <property name="table" value="IDS"/> | |
| 49 | - <property name="tableName" value="TMPLAT_ID"/> | |
| 50 | - </bean> | |
| 51 | - <!-- 게시판템플릿 ID Generation Strategy Config --> | |
| 52 | - <bean name="tmplatStrategy" | |
| 53 | - class="egovframework.rte.fdl.idgnr.impl.strategy.EgovIdGnrStrategyImpl"> | |
| 54 | - <property name="prefix" value="TMPLAT_" /> | |
| 55 | - <property name="cipers" value="13" /> | |
| 56 | - <property name="fillChar" value="0" /> | |
| 57 | - </bean> | |
| 58 | - | |
| 59 | - <!-- 그룹 ID Generation Config--> | |
| 60 | - <bean name="egovGroupIdGnrService" | |
| 61 | - class="egovframework.rte.fdl.idgnr.impl.EgovTableIdGnrServiceImpl" | |
| 62 | - destroy-method="destroy"> | |
| 63 | - <property name="dataSource" ref="dataSource" /> | |
| 64 | - <property name="strategy" ref="groupIdStrategy" /> | |
| 65 | - <property name="blockSize" value="10"/> | |
| 66 | - <property name="table" value="IDS"/> | |
| 67 | - <property name="tableName" value="GROUP_ID"/> | |
| 68 | - </bean> | |
| 69 | - <!-- 그룹 ID Generation Strategy Config --> | |
| 70 | - <bean name="groupIdStrategy" | |
| 71 | - class="egovframework.rte.fdl.idgnr.impl.strategy.EgovIdGnrStrategyImpl"> | |
| 72 | - <property name="prefix" value="GROUP_" /> | |
| 73 | - <property name="cipers" value="14" /> | |
| 74 | - <property name="fillChar" value="0" /> | |
| 75 | - </bean> | |
| 76 | - | |
| 77 | - <!-- 롤 ID Generation Config--> | |
| 78 | - <bean name="egovRoleIdGnrService" | |
| 79 | - class="egovframework.rte.fdl.idgnr.impl.EgovTableIdGnrServiceImpl" | |
| 80 | - destroy-method="destroy"> | |
| 81 | - <property name="dataSource" ref="dataSource" /> | |
| 82 | - <property name="strategy" ref="roleIdStrategy" /> | |
| 83 | - <property name="blockSize" value="10"/> | |
| 84 | - <property name="table" value="IDS"/> | |
| 85 | - <property name="tableName" value="ROLE_ID"/> | |
| 86 | - </bean> | |
| 87 | - <!-- 롤 ID Generation Strategy Config --> | |
| 88 | - <bean name="roleIdStrategy" | |
| 89 | - class="egovframework.rte.fdl.idgnr.impl.strategy.EgovIdGnrStrategyImpl"> | |
| 90 | - <property name="prefix" value="" /> | |
| 91 | - <property name="cipers" value="6" /> | |
| 92 | - <property name="fillChar" value="0" /> | |
| 93 | - </bean> | |
| 94 | - | |
| 95 | - <!-- 접속로그 ID Generation Config--> | |
| 96 | - <bean name="egovLoginLogIdGnrService" | |
| 97 | - class="egovframework.rte.fdl.idgnr.impl.EgovTableIdGnrServiceImpl" | |
| 98 | - destroy-method="destroy"> | |
| 99 | - <property name="dataSource" ref="dataSource" /> | |
| 100 | - <property name="strategy" ref="loginLogStrategy" /> | |
| 101 | - <property name="blockSize" value="10"/> | |
| 102 | - <property name="table" value="IDS"/> | |
| 103 | - <property name="tableName" value="LOGINLOG_ID"/> | |
| 104 | - </bean> | |
| 105 | - <!-- 접속로그 ID Generation Strategy Config --> | |
| 106 | - <bean name="loginLogStrategy" | |
| 107 | - class="egovframework.rte.fdl.idgnr.impl.strategy.EgovIdGnrStrategyImpl"> | |
| 108 | - <property name="prefix" value="LOGIN_" /> | |
| 109 | - <property name="cipers" value="14" /> | |
| 110 | - <property name="fillChar" value="0" /> | |
| 111 | - </bean> | |
| 112 | - | |
| 113 | - <!-- 사용자 ID Generation Config--> | |
| 114 | - <bean name="egovUsrCnfrmIdGnrService" | |
| 115 | - class="egovframework.rte.fdl.idgnr.impl.EgovTableIdGnrServiceImpl" | |
| 116 | - destroy-method="destroy"> | |
| 117 | - <property name="dataSource" ref="dataSource" /> | |
| 118 | - <property name="strategy" ref="usrCnfrmStrategy" /> | |
| 119 | - <property name="blockSize" value="10"/> | |
| 120 | - <property name="table" value="IDS"/> | |
| 121 | - <property name="tableName" value="USRCNFRM_ID"/> | |
| 122 | - </bean> | |
| 123 | - <!-- 사용자 ID Generation Strategy Config --> | |
| 124 | - <bean name="usrCnfrmStrategy" | |
| 125 | - class="egovframework.rte.fdl.idgnr.impl.strategy.EgovIdGnrStrategyImpl"> | |
| 126 | - <property name="prefix" value="USRCNFRM_" /> | |
| 127 | - <property name="cipers" value="11" /> | |
| 128 | - <property name="fillChar" value="0" /> | |
| 129 | - </bean> | |
| 130 | - | |
| 131 | - <!-- System Log... START--> | |
| 132 | - <bean name="egovSysLogIdGnrService" | |
| 133 | - class="egovframework.rte.fdl.idgnr.impl.EgovTableIdGnrServiceImpl" | |
| 134 | - destroy-method="destroy"> | |
| 135 | - <property name="dataSource" ref="dataSource" /> | |
| 136 | - <property name="strategy" ref="sysLogStrategy" /> | |
| 137 | - <property name="blockSize" value="10"/> | |
| 138 | - <property name="table" value="COMTECOPSEQ"/> | |
| 139 | - <property name="tableName" value="SYSLOG_ID"/> | |
| 140 | - </bean> | |
| 141 | - <bean name="sysLogStrategy" | |
| 142 | - class="egovframework.rte.fdl.idgnr.impl.strategy.EgovIdGnrStrategyImpl"> | |
| 143 | - <property name="prefix" value="SYSLOG_" /> | |
| 144 | - <property name="cipers" value="13" /> | |
| 145 | - <property name="fillChar" value="0" /> | |
| 146 | - </bean> | |
| 147 | - <!-- System Log... END--> | |
| 148 | - | |
| 149 | - | |
| 150 | - <!-- 공통컴포넌트 3차사업 IDGEN --> | |
| 151 | - <!-- 위키북마크 --> | |
| 152 | - <bean name="egovWikiBookmarkIdGnrService" | |
| 153 | - class="egovframework.rte.fdl.idgnr.impl.EgovTableIdGnrServiceImpl" | |
| 154 | - destroy-method="destroy"> | |
| 155 | - <property name="dataSource" ref="egov.dataSource" /> | |
| 156 | - <property name="strategy" ref="egovWikiBookmarkIdMsgtrategy" /> | |
| 157 | - <property name="blockSize" value="10"/> | |
| 158 | - <property name="table" value="COMTECOPSEQ"/> | |
| 159 | - <property name="tableName" value="WIKI_ID"/> | |
| 160 | - </bean> | |
| 161 | - <bean name="egovWikiBookmarkIdMsgtrategy" | |
| 162 | - class="egovframework.rte.fdl.idgnr.impl.strategy.EgovIdGnrStrategyImpl"> | |
| 163 | - <property name="prefix" value="WIKI" /> | |
| 164 | - <property name="cipers" value="16" /> | |
| 165 | - <property name="fillChar" value="0" /> | |
| 166 | - </bean> | |
| 167 | - | |
| 168 | - <!-- 지식정보제공/지식정보요청 --> | |
| 169 | - <bean name="egovRequestOfferIdGnrService" | |
| 170 | - class="egovframework.rte.fdl.idgnr.impl.EgovTableIdGnrServiceImpl" | |
| 171 | - destroy-method="destroy"> | |
| 172 | - <property name="dataSource" ref="egov.dataSource" /> | |
| 173 | - <property name="strategy" ref="egovRequestOfferIdMsgtrategy" /> | |
| 174 | - <property name="blockSize" value="10"/> | |
| 175 | - <property name="table" value="COMTECOPSEQ"/> | |
| 176 | - <property name="tableName" value="KNO_ID2"/> | |
| 177 | - </bean> | |
| 178 | - <bean name="egovRequestOfferIdMsgtrategy" | |
| 179 | - class="egovframework.rte.fdl.idgnr.impl.strategy.EgovIdGnrStrategyImpl"> | |
| 180 | - <property name="prefix" value="KNO_ID2" /> | |
| 181 | - <property name="cipers" value="13" /> | |
| 182 | - <property name="fillChar" value="0" /> | |
| 183 | - </bean> | |
| 184 | - <!-- RSS관리 --> | |
| 185 | - <bean name="egovRssTagManageIdGnrService" | |
| 186 | - class="egovframework.rte.fdl.idgnr.impl.EgovTableIdGnrServiceImpl" | |
| 187 | - destroy-method="destroy"> | |
| 188 | - <property name="dataSource" ref="egov.dataSource" /> | |
| 189 | - <property name="strategy" ref="egovRssTagManageIdMsgtrategy" /> | |
| 190 | - <property name="blockSize" value="10"/> | |
| 191 | - <property name="table" value="COMTECOPSEQ"/> | |
| 192 | - <property name="tableName" value="RSS_ID"/> | |
| 193 | - </bean> | |
| 194 | - <bean name="egovRssTagManageIdMsgtrategy" | |
| 195 | - class="egovframework.rte.fdl.idgnr.impl.strategy.EgovIdGnrStrategyImpl"> | |
| 196 | - <property name="prefix" value="RSS_ID" /> | |
| 197 | - <property name="cipers" value="14" /> | |
| 198 | - <property name="fillChar" value="0" /> | |
| 199 | - </bean> | |
| 200 | - | |
| 201 | - <!-- 쪽지관리 --> | |
| 202 | - <bean name="egovNoteManageIdGnrService" | |
| 203 | - class="egovframework.rte.fdl.idgnr.impl.EgovTableIdGnrServiceImpl" | |
| 204 | - destroy-method="destroy"> | |
| 205 | - <property name="dataSource" ref="egov.dataSource" /> | |
| 206 | - <property name="strategy" ref="egovNoteManageIdMsgtrategy" /> | |
| 207 | - <property name="blockSize" value="10"/> | |
| 208 | - <property name="table" value="COMTECOPSEQ"/> | |
| 209 | - <property name="tableName" value="NOTE_ID"/> | |
| 210 | - </bean> | |
| 211 | - <bean name="egovNoteManageIdMsgtrategy" | |
| 212 | - class="egovframework.rte.fdl.idgnr.impl.strategy.EgovIdGnrStrategyImpl"> | |
| 213 | - <property name="prefix" value="NOTE_ID" /> | |
| 214 | - <property name="cipers" value="13" /> | |
| 215 | - <property name="fillChar" value="0" /> | |
| 216 | - </bean> | |
| 217 | - | |
| 218 | - <!-- 보낸쪽지함관리 --> | |
| 219 | - <bean name="egovNoteTrnsmitIdGnrService" | |
| 220 | - class="egovframework.rte.fdl.idgnr.impl.EgovTableIdGnrServiceImpl" | |
| 221 | - destroy-method="destroy"> | |
| 222 | - <property name="dataSource" ref="egov.dataSource" /> | |
| 223 | - <property name="strategy" ref="egovNoteTrnsmitIdMsgtrategy" /> | |
| 224 | - <property name="blockSize" value="10"/> | |
| 225 | - <property name="table" value="COMTECOPSEQ"/> | |
| 226 | - <property name="tableName" value="NOTE_TRNSMIT_ID"/> | |
| 227 | - </bean> | |
| 228 | - <bean name="egovNoteTrnsmitIdMsgtrategy" | |
| 229 | - class="egovframework.rte.fdl.idgnr.impl.strategy.EgovIdGnrStrategyImpl"> | |
| 230 | - <property name="prefix" value="NOTE_TR" /> | |
| 231 | - <property name="cipers" value="13" /> | |
| 232 | - <property name="fillChar" value="0" /> | |
| 233 | - </bean> | |
| 234 | - | |
| 235 | - <!-- 받은쪽지함관리 --> | |
| 236 | - <bean name="egovNoteRecptnIdGnrService" | |
| 237 | - class="egovframework.rte.fdl.idgnr.impl.EgovTableIdGnrServiceImpl" | |
| 238 | - destroy-method="destroy"> | |
| 239 | - <property name="dataSource" ref="egov.dataSource" /> | |
| 240 | - <property name="strategy" ref="egovNoteRecptnIdMsgtrategy" /> | |
| 241 | - <property name="blockSize" value="10"/> | |
| 242 | - <property name="table" value="COMTECOPSEQ"/> | |
| 243 | - <property name="tableName" value="NOTE_RECPTN_ID"/> | |
| 244 | - </bean> | |
| 245 | - <bean name="egovNoteRecptnIdMsgtrategy" | |
| 246 | - class="egovframework.rte.fdl.idgnr.impl.strategy.EgovIdGnrStrategyImpl"> | |
| 247 | - <property name="prefix" value="NOTE_RE" /> | |
| 248 | - <property name="cipers" value="13" /> | |
| 249 | - <property name="fillChar" value="0" /> | |
| 250 | - </bean> | |
| 251 | - | |
| 252 | - <!-- 공통컴포넌트 2차사업 IDGEN --> | |
| 253 | - <!-- 시스템연계 --> | |
| 254 | - <bean name="egovSystemCntcIdGnrService" | |
| 255 | - class="egovframework.rte.fdl.idgnr.impl.EgovTableIdGnrServiceImpl" | |
| 256 | - destroy-method="destroy"> | |
| 257 | - <property name="dataSource" ref="egov.dataSource" /> | |
| 258 | - <property name="strategy" ref="egovSystemCntcIdMsgtrategy" /> | |
| 259 | - <property name="blockSize" value="10"/> | |
| 260 | - <property name="table" value="COMTECOPSEQ"/> | |
| 261 | - <property name="tableName" value="CNTC_ID"/> | |
| 262 | - </bean> | |
| 263 | - <bean name="egovSystemCntcIdMsgtrategy" | |
| 264 | - class="egovframework.rte.fdl.idgnr.impl.strategy.EgovIdGnrStrategyImpl"> | |
| 265 | - <property name="prefix" value="CNTC" /> | |
| 266 | - <property name="cipers" value="4" /> | |
| 267 | - <property name="fillChar" value="0" /> | |
| 268 | - </bean> | |
| 269 | - | |
| 270 | - <!-- 연계기관 --> | |
| 271 | - <bean name="egovCntcInsttIdGnrService" | |
| 272 | - class="egovframework.rte.fdl.idgnr.impl.EgovTableIdGnrServiceImpl" | |
| 273 | - destroy-method="destroy"> | |
| 274 | - <property name="dataSource" ref="egov.dataSource" /> | |
| 275 | - <property name="strategy" ref="egovCntcInsttIdMsgtrategy" /> | |
| 276 | - <property name="blockSize" value="10"/> | |
| 277 | - <property name="table" value="COMTECOPSEQ"/> | |
| 278 | - <property name="tableName" value="INSTT_ID"/> | |
| 279 | - </bean> | |
| 280 | - <bean name="egovCntcInsttIdMsgtrategy" | |
| 281 | - class="egovframework.rte.fdl.idgnr.impl.strategy.EgovIdGnrStrategyImpl"> | |
| 282 | - <property name="prefix" value="INS" /> | |
| 283 | - <property name="cipers" value="5" /> | |
| 284 | - <property name="fillChar" value="0" /> | |
| 285 | - </bean> | |
| 286 | - | |
| 287 | - <!-- 연계시스템 --> | |
| 288 | - <bean name="egovCntcSystemIdGnrService" | |
| 289 | - class="egovframework.rte.fdl.idgnr.impl.EgovTableIdGnrServiceImpl" | |
| 290 | - destroy-method="destroy"> | |
| 291 | - <property name="dataSource" ref="egov.dataSource" /> | |
| 292 | - <property name="strategy" ref="egovCntcSystemIdMsgtrategy" /> | |
| 293 | - <property name="blockSize" value="10"/> | |
| 294 | - <property name="table" value="COMTECOPSEQ"/> | |
| 295 | - <property name="tableName" value="SYS_ID"/> | |
| 296 | - </bean> | |
| 297 | - <bean name="egovCntcSystemIdMsgtrategy" | |
| 298 | - class="egovframework.rte.fdl.idgnr.impl.strategy.EgovIdGnrStrategyImpl"> | |
| 299 | - <property name="prefix" value="SYS" /> | |
| 300 | - <property name="cipers" value="5" /> | |
| 301 | - <property name="fillChar" value="0" /> | |
| 302 | - </bean> | |
| 303 | - | |
| 304 | - <!-- 연계서비스 --> | |
| 305 | - <bean name="egovCntcServiceIdGnrService" | |
| 306 | - class="egovframework.rte.fdl.idgnr.impl.EgovTableIdGnrServiceImpl" | |
| 307 | - destroy-method="destroy"> | |
| 308 | - <property name="dataSource" ref="egov.dataSource" /> | |
| 309 | - <property name="strategy" ref="egovCntcServiceIdMsgtrategy" /> | |
| 310 | - <property name="blockSize" value="10"/> | |
| 311 | - <property name="table" value="COMTECOPSEQ"/> | |
| 312 | - <property name="tableName" value="SVC_ID"/> | |
| 313 | - </bean> | |
| 314 | - <bean name="egovCntcServiceIdMsgtrategy" | |
| 315 | - class="egovframework.rte.fdl.idgnr.impl.strategy.EgovIdGnrStrategyImpl"> | |
| 316 | - <property name="prefix" value="SVC" /> | |
| 317 | - <property name="cipers" value="5" /> | |
| 318 | - <property name="fillChar" value="0" /> | |
| 319 | - </bean> | |
| 320 | - | |
| 321 | - <!-- 연계메시지 --> | |
| 322 | - <bean name="egovCntcMessageIdGnrService" | |
| 323 | - class="egovframework.rte.fdl.idgnr.impl.EgovTableIdGnrServiceImpl" | |
| 324 | - destroy-method="destroy"> | |
| 325 | - <property name="dataSource" ref="egov.dataSource" /> | |
| 326 | - <property name="strategy" ref="egovCntcMessageIdMsgtrategy" /> | |
| 327 | - <property name="blockSize" value="10"/> | |
| 328 | - <property name="table" value="COMTECOPSEQ"/> | |
| 329 | - <property name="tableName" value="CNTC_MESSAGE_ID"/> | |
| 330 | - </bean> | |
| 331 | - <bean name="egovCntcMessageIdMsgtrategy" | |
| 332 | - class="egovframework.rte.fdl.idgnr.impl.strategy.EgovIdGnrStrategyImpl"> | |
| 333 | - <property name="prefix" value="MSG" /> | |
| 334 | - <property name="cipers" value="17" /> | |
| 335 | - <property name="fillChar" value="0" /> | |
| 336 | - </bean> | |
| 337 | - | |
| 338 | - <!-- 연계메시지항목 --> | |
| 339 | - <bean name="egovCntcMessageItemIdGnrService" | |
| 340 | - class="egovframework.rte.fdl.idgnr.impl.EgovTableIdGnrServiceImpl" | |
| 341 | - destroy-method="destroy"> | |
| 342 | - <property name="dataSource" ref="egov.dataSource" /> | |
| 343 | - <property name="strategy" ref="egovCntcMessageItemIdMsgtrategy" /> | |
| 344 | - <property name="blockSize" value="10"/> | |
| 345 | - <property name="table" value="COMTECOPSEQ"/> | |
| 346 | - <property name="tableName" value="ITEM_ID"/> | |
| 347 | - </bean> | |
| 348 | - <bean name="egovCntcMessageItemIdMsgtrategy" | |
| 349 | - class="egovframework.rte.fdl.idgnr.impl.strategy.EgovIdGnrStrategyImpl"> | |
| 350 | - <property name="prefix" value="ITM" /> | |
| 351 | - <property name="cipers" value="17" /> | |
| 352 | - <property name="fillChar" value="0" /> | |
| 353 | - </bean> | |
| 354 | - | |
| 355 | - <!-- 기관코드 수신 작업일련번호 --> | |
| 356 | - <bean name="egovInsttCodeRecptnIdGnrService" | |
| 357 | - class="egovframework.rte.fdl.idgnr.impl.EgovTableIdGnrServiceImpl" | |
| 358 | - destroy-method="destroy"> | |
| 359 | - <property name="dataSource" ref="egov.dataSource" /> | |
| 360 | - <property name="blockSize" value="10"/> | |
| 361 | - <property name="table" value="COMTECOPSEQ"/> | |
| 362 | - <property name="tableName" value="INSTT_CODE_OPERT"/> | |
| 363 | - </bean> | |
| 364 | - | |
| 365 | - <!-- 행정코드 수신 작업일련번호 --> | |
| 366 | - <bean name="egovAdministCodeRecptnIdGnrService" | |
| 367 | - class="egovframework.rte.fdl.idgnr.impl.EgovTableIdGnrServiceImpl" | |
| 368 | - destroy-method="destroy"> | |
| 369 | - <property name="dataSource" ref="egov.dataSource" /> | |
| 370 | - <property name="blockSize" value="10"/> | |
| 371 | - <property name="table" value="COMTECOPSEQ"/> | |
| 372 | - <property name="tableName" value="ADMIN_CODE_OPERT"/> | |
| 373 | - </bean> | |
| 374 | - | |
| 375 | - <!-- 팝업창관리 --> | |
| 376 | - <bean name="egovPopupManageIdGnrService" | |
| 377 | - class="egovframework.rte.fdl.idgnr.impl.EgovTableIdGnrServiceImpl" | |
| 378 | - destroy-method="destroy"> | |
| 379 | - <property name="dataSource" ref="egov.dataSource" /> | |
| 380 | - <property name="strategy" ref="egovPopupManageIdMsgtrategy" /> | |
| 381 | - <property name="blockSize" value="10"/> | |
| 382 | - <property name="table" value="COMTECOPSEQ"/> | |
| 383 | - <property name="tableName" value="POPUP_ID"/> | |
| 384 | - </bean> | |
| 385 | - <bean name="egovPopupManageIdMsgtrategy" | |
| 386 | - class="egovframework.rte.fdl.idgnr.impl.strategy.EgovIdGnrStrategyImpl"> | |
| 387 | - <property name="prefix" value="POPUP_" /> | |
| 388 | - <property name="cipers" value="14" /> | |
| 389 | - <property name="fillChar" value="0" /> | |
| 390 | - </bean> | |
| 391 | - | |
| 392 | - <!-- 최근검색어관리 --> | |
| 393 | - <bean name="egovSrchwrdManageIdGnrService" | |
| 394 | - class="egovframework.rte.fdl.idgnr.impl.EgovTableIdGnrServiceImpl" | |
| 395 | - destroy-method="destroy"> | |
| 396 | - <property name="dataSource" ref="egov.dataSource" /> | |
| 397 | - <property name="strategy" ref="srchwrdManageIdMsgtrategy" /> | |
| 398 | - <property name="blockSize" value="10"/> | |
| 399 | - <property name="table" value="COMTECOPSEQ"/> | |
| 400 | - <property name="tableName" value="SRCHWRD_MANAGEID"/> | |
| 401 | - </bean> | |
| 402 | - <bean name="srchwrdManageIdMsgtrategy" | |
| 403 | - class="egovframework.rte.fdl.idgnr.impl.strategy.EgovIdGnrStrategyImpl"> | |
| 404 | - <property name="prefix" value="SRCMGR_" /> | |
| 405 | - <property name="cipers" value="13" /> | |
| 406 | - <property name="fillChar" value="0" /> | |
| 407 | - </bean> | |
| 408 | - <!-- 최근검색어 --> | |
| 409 | - <bean name="egovSrchwrdIdGnrService" | |
| 410 | - class="egovframework.rte.fdl.idgnr.impl.EgovTableIdGnrServiceImpl" | |
| 411 | - destroy-method="destroy"> | |
| 412 | - <property name="dataSource" ref="egov.dataSource" /> | |
| 413 | - <property name="strategy" ref="srchwrdIdMsgtrategy" /> | |
| 414 | - <property name="blockSize" value="10"/> | |
| 415 | - <property name="table" value="COMTECOPSEQ"/> | |
| 416 | - <property name="tableName" value="SRCHWRD_ID"/> | |
| 417 | - </bean> | |
| 418 | - <bean name="srchwrdIdMsgtrategy" | |
| 419 | - class="egovframework.rte.fdl.idgnr.impl.strategy.EgovIdGnrStrategyImpl"> | |
| 420 | - <property name="prefix" value="SRC_" /> | |
| 421 | - <property name="cipers" value="16" /> | |
| 422 | - <property name="fillChar" value="0" /> | |
| 423 | - </bean> | |
| 424 | - | |
| 425 | - | |
| 426 | - <!-- 행정전문용어사전 --> | |
| 427 | - <bean name="egovAdministrationWordIdGnrService" | |
| 428 | - class="egovframework.rte.fdl.idgnr.impl.EgovTableIdGnrServiceImpl" | |
| 429 | - destroy-method="destroy"> | |
| 430 | - <property name="dataSource" ref="egov.dataSource" /> | |
| 431 | - <property name="strategy" ref="administrationWordIdMsgtrategy" /> | |
| 432 | - <property name="blockSize" value="10"/> | |
| 433 | - <property name="table" value="COMTECOPSEQ"/> | |
| 434 | - <property name="tableName" value="ADMINIST_WORD_ID"/> | |
| 435 | - </bean> | |
| 436 | - <bean name="administrationWordIdMsgtrategy" | |
| 437 | - class="egovframework.rte.fdl.idgnr.impl.strategy.EgovIdGnrStrategyImpl"> | |
| 438 | - <property name="prefix" value="ADMINIST_" /> | |
| 439 | - <property name="cipers" value="11" /> | |
| 440 | - <property name="fillChar" value="0" /> | |
| 441 | - </bean> | |
| 442 | - | |
| 443 | - <!-- 개정정보보호정책확인 --> | |
| 444 | - <bean name="egovIndvdlInfoPolicyIdGnrService" | |
| 445 | - class="egovframework.rte.fdl.idgnr.impl.EgovTableIdGnrServiceImpl" | |
| 446 | - destroy-method="destroy"> | |
| 447 | - <property name="dataSource" ref="egov.dataSource" /> | |
| 448 | - <property name="strategy" ref="indvdlInfoPolicyIdMsgtrategy" /> | |
| 449 | - <property name="blockSize" value="10"/> | |
| 450 | - <property name="table" value="COMTECOPSEQ"/> | |
| 451 | - <property name="tableName" value="INDVDL_INFO_ID"/> | |
| 452 | - </bean> | |
| 453 | - <bean name="indvdlInfoPolicyIdMsgtrategy" | |
| 454 | - class="egovframework.rte.fdl.idgnr.impl.strategy.EgovIdGnrStrategyImpl"> | |
| 455 | - <property name="prefix" value="INDVDL_" /> | |
| 456 | - <property name="cipers" value="13" /> | |
| 457 | - <property name="fillChar" value="0" /> | |
| 458 | - </bean> | |
| 459 | - | |
| 460 | - <!-- 통합링크 --> | |
| 461 | - <bean name="egovUnityLinkIdGnrService" | |
| 462 | - class="egovframework.rte.fdl.idgnr.impl.EgovTableIdGnrServiceImpl" | |
| 463 | - destroy-method="destroy"> | |
| 464 | - <property name="dataSource" ref="egov.dataSource" /> | |
| 465 | - <property name="strategy" ref="unityLinkIdMsgtrategy" /> | |
| 466 | - <property name="blockSize" value="10"/> | |
| 467 | - <property name="table" value="COMTECOPSEQ"/> | |
| 468 | - <property name="tableName" value="UNITY_LINK_ID"/> | |
| 469 | - </bean> | |
| 470 | - <bean name="unityLinkIdMsgtrategy" | |
| 471 | - class="egovframework.rte.fdl.idgnr.impl.strategy.EgovIdGnrStrategyImpl"> | |
| 472 | - <property name="prefix" value="ULINK_" /> | |
| 473 | - <property name="cipers" value="14" /> | |
| 474 | - <property name="fillChar" value="0" /> | |
| 475 | - </bean> | |
| 476 | - | |
| 477 | - <!-- 온라인메뉴얼 --> | |
| 478 | - <bean name="egovOnlineMenualIdGnrService" | |
| 479 | - class="egovframework.rte.fdl.idgnr.impl.EgovTableIdGnrServiceImpl" | |
| 480 | - destroy-method="destroy"> | |
| 481 | - <property name="dataSource" ref="egov.dataSource" /> | |
| 482 | - <property name="strategy" ref="onlineMenualMsgtrategy" /> | |
| 483 | - <property name="blockSize" value="10"/> | |
| 484 | - <property name="table" value="COMTECOPSEQ"/> | |
| 485 | - <property name="tableName" value="ONLINE_MUL_ID"/> | |
| 486 | - </bean> | |
| 487 | - <bean name="onlineMenualMsgtrategy" | |
| 488 | - class="egovframework.rte.fdl.idgnr.impl.strategy.EgovIdGnrStrategyImpl"> | |
| 489 | - <property name="prefix" value="OMUL_" /> | |
| 490 | - <property name="cipers" value="15" /> | |
| 491 | - <property name="fillChar" value="0" /> | |
| 492 | - </bean> | |
| 493 | - | |
| 494 | - <!-- 온라인POLL관리 --> | |
| 495 | - <bean name="egovOnlinePollManageIdGnrService" | |
| 496 | - class="egovframework.rte.fdl.idgnr.impl.EgovTableIdGnrServiceImpl" | |
| 497 | - destroy-method="destroy"> | |
| 498 | - <property name="dataSource" ref="egov.dataSource" /> | |
| 499 | - <property name="strategy" ref="onlinePollManageMsgtrategy" /> | |
| 500 | - <property name="blockSize" value="10"/> | |
| 501 | - <property name="table" value="COMTECOPSEQ"/> | |
| 502 | - <property name="tableName" value="POLL_MGR_ID"/> | |
| 503 | - </bean> | |
| 504 | - <bean name="onlinePollManageMsgtrategy" | |
| 505 | - class="egovframework.rte.fdl.idgnr.impl.strategy.EgovIdGnrStrategyImpl"> | |
| 506 | - <property name="prefix" value="POLLMGR_" /> | |
| 507 | - <property name="cipers" value="12" /> | |
| 508 | - <property name="fillChar" value="0" /> | |
| 509 | - </bean> | |
| 510 | - <!-- 온라인POLL항목 --> | |
| 511 | - <bean name="egovOnlinePollItemIdGnrService" | |
| 512 | - class="egovframework.rte.fdl.idgnr.impl.EgovTableIdGnrServiceImpl" | |
| 513 | - destroy-method="destroy"> | |
| 514 | - <property name="dataSource" ref="egov.dataSource" /> | |
| 515 | - <property name="strategy" ref="onlinePollItemMsgtrategy" /> | |
| 516 | - <property name="blockSize" value="10"/> | |
| 517 | - <property name="table" value="COMTECOPSEQ"/> | |
| 518 | - <property name="tableName" value="POLL_IEM_ID"/> | |
| 519 | - </bean> | |
| 520 | - <bean name="onlinePollItemMsgtrategy" | |
| 521 | - class="egovframework.rte.fdl.idgnr.impl.strategy.EgovIdGnrStrategyImpl"> | |
| 522 | - <property name="prefix" value="POLLIEM_" /> | |
| 523 | - <property name="cipers" value="12" /> | |
| 524 | - <property name="fillChar" value="0" /> | |
| 525 | - </bean> | |
| 526 | - <!-- 온라인POLL결과--> | |
| 527 | - <bean name="egovOnlinePollResultIdGnrService" | |
| 528 | - class="egovframework.rte.fdl.idgnr.impl.EgovTableIdGnrServiceImpl" | |
| 529 | - destroy-method="destroy"> | |
| 530 | - <property name="dataSource" ref="egov.dataSource" /> | |
| 531 | - <property name="strategy" ref="onlinePollResultMsgtrategy" /> | |
| 532 | - <property name="blockSize" value="10"/> | |
| 533 | - <property name="table" value="COMTECOPSEQ"/> | |
| 534 | - <property name="tableName" value="POLL_RUT_ID"/> | |
| 535 | - </bean> | |
| 536 | - <bean name="onlinePollResultMsgtrategy" | |
| 537 | - class="egovframework.rte.fdl.idgnr.impl.strategy.EgovIdGnrStrategyImpl"> | |
| 538 | - <property name="prefix" value="POLLRUT_" /> | |
| 539 | - <property name="cipers" value="12" /> | |
| 540 | - <property name="fillChar" value="0" /> | |
| 541 | - </bean> | |
| 542 | - | |
| 543 | - <!-- TO BE DLEETED START--> | |
| 544 | - <bean name="egovIdGnrService" | |
| 545 | - class="egovframework.rte.fdl.idgnr.impl.EgovTableIdGnrServiceImpl" | |
| 546 | - destroy-method="destroy"> | |
| 547 | - <property name="dataSource" ref="egov.dataSource" /> | |
| 548 | - <property name="strategy" ref="mixPrefixSample" /> | |
| 549 | - <property name="blockSize" value="10"/> | |
| 550 | - <property name="table" value="ids"/> | |
| 551 | - <property name="tableName" value="COMTNWORDDICARYINFO"/> | |
| 552 | - </bean> | |
| 553 | - | |
| 554 | - <bean name="mixPrefixSample" | |
| 555 | - class="egovframework.rte.fdl.idgnr.impl.strategy.EgovIdGnrStrategyImpl"> | |
| 556 | - <property name="prefix" value="SAMPLE-" /> | |
| 557 | - <property name="cipers" value="5" /> | |
| 558 | - <property name="fillChar" value="0" /> | |
| 559 | - </bean> | |
| 560 | - <!-- TO BE DLEETED END--> | |
| 561 | - | |
| 562 | - <!-- 게시판용 NTT_ID 생성 --> | |
| 563 | - <bean name="egovNttIdGnrService" | |
| 564 | - class="egovframework.rte.fdl.idgnr.impl.EgovTableIdGnrServiceImpl" | |
| 565 | - destroy-method="destroy"> | |
| 566 | - <property name="dataSource" ref="egov.dataSource" /> | |
| 567 | - <property name="strategy" ref="nttIdStrategy" /> | |
| 568 | - <property name="blockSize" value="10"/> | |
| 569 | - <property name="table" value="COMTECOPSEQ"/> | |
| 570 | - <property name="tableName" value="NTT_ID"/> | |
| 571 | - </bean> | |
| 572 | - <bean name="nttIdStrategy" | |
| 573 | - class="egovframework.rte.fdl.idgnr.impl.strategy.EgovIdGnrStrategyImpl"> | |
| 574 | - <property name="cipers" value="20" /> | |
| 575 | - </bean> | |
| 576 | - | |
| 577 | - <bean name="egovClbIdGnrService" | |
| 578 | - class="egovframework.rte.fdl.idgnr.impl.EgovTableIdGnrServiceImpl" | |
| 579 | - destroy-method="destroy"> | |
| 580 | - <property name="dataSource" ref="egov.dataSource" /> | |
| 581 | - <property name="strategy" ref="clbStrategy" /> | |
| 582 | - <property name="blockSize" value="10"/> | |
| 583 | - <property name="table" value="COMTECOPSEQ"/> | |
| 584 | - <property name="tableName" value="CLB_ID"/> | |
| 585 | - </bean> | |
| 586 | - <bean name="clbStrategy" | |
| 587 | - class="egovframework.rte.fdl.idgnr.impl.strategy.EgovIdGnrStrategyImpl"> | |
| 588 | - <property name="prefix" value="CLB_" /> | |
| 589 | - <property name="cipers" value="16" /> | |
| 590 | - <property name="fillChar" value="0" /> | |
| 591 | - </bean> | |
| 592 | - | |
| 593 | - <bean name="egovCmmntyIdGnrService" | |
| 594 | - class="egovframework.rte.fdl.idgnr.impl.EgovTableIdGnrServiceImpl" | |
| 595 | - destroy-method="destroy"> | |
| 596 | - <property name="dataSource" ref="egov.dataSource" /> | |
| 597 | - <property name="strategy" ref="cmmntyStrategy" /> | |
| 598 | - <property name="blockSize" value="10"/> | |
| 599 | - <property name="table" value="COMTECOPSEQ"/> | |
| 600 | - <property name="tableName" value="CMMNTY_ID"/> | |
| 601 | - </bean> | |
| 602 | - <bean name="cmmntyStrategy" | |
| 603 | - class="egovframework.rte.fdl.idgnr.impl.strategy.EgovIdGnrStrategyImpl"> | |
| 604 | - <property name="prefix" value="CMMNTY_" /> | |
| 605 | - <property name="cipers" value="13" /> | |
| 606 | - <property name="fillChar" value="0" /> | |
| 607 | - </bean> | |
| 608 | - | |
| 609 | - <bean name="egovMailMsgIdGnrService" | |
| 610 | - class="egovframework.rte.fdl.idgnr.impl.EgovTableIdGnrServiceImpl" | |
| 611 | - destroy-method="destroy"> | |
| 612 | - <property name="dataSource" ref="egov.dataSource" /> | |
| 613 | - <property name="strategy" ref="mailMsgtrategy" /> | |
| 614 | - <property name="blockSize" value="10"/> | |
| 615 | - <property name="table" value="COMTECOPSEQ"/> | |
| 616 | - <property name="tableName" value="MAILMSG_ID"/> | |
| 617 | - </bean> | |
| 618 | - <bean name="mailMsgtrategy" | |
| 619 | - class="egovframework.rte.fdl.idgnr.impl.strategy.EgovIdGnrStrategyImpl"> | |
| 620 | - <property name="prefix" value="MAILMSG_" /> | |
| 621 | - <property name="cipers" value="12" /> | |
| 622 | - <property name="fillChar" value="0" /> | |
| 623 | - </bean> | |
| 624 | - | |
| 625 | - <bean name="egovRestDeIdGnrService" | |
| 626 | - class="egovframework.rte.fdl.idgnr.impl.EgovTableIdGnrServiceImpl" | |
| 627 | - destroy-method="destroy"> | |
| 628 | - <property name="dataSource" ref="egov.dataSource" /> | |
| 629 | - <property name="blockSize" value="10"/> | |
| 630 | - <property name="table" value="COMTECOPSEQ"/> | |
| 631 | - <property name="tableName" value="RESTDE_ID"/> | |
| 632 | - </bean> | |
| 633 | - | |
| 634 | - <!-- WordDicary... START--> | |
| 635 | - <bean name="egovWordDicaryIdGnrService" | |
| 636 | - class="egovframework.rte.fdl.idgnr.impl.EgovTableIdGnrServiceImpl" | |
| 637 | - destroy-method="destroy"> | |
| 638 | - <property name="dataSource" ref="egov.dataSource" /> | |
| 639 | - <property name="strategy" ref="wordDicaryStrategy" /> | |
| 640 | - <property name="blockSize" value="10"/> | |
| 641 | - <property name="table" value="COMTECOPSEQ"/> | |
| 642 | - <property name="tableName" value="WORD_ID"/> | |
| 643 | - </bean> | |
| 644 | - | |
| 645 | - <bean name="wordDicaryStrategy" | |
| 646 | - class="egovframework.rte.fdl.idgnr.impl.strategy.EgovIdGnrStrategyImpl"> | |
| 647 | - <property name="prefix" value="WORDDICARY_" /> | |
| 648 | - <property name="cipers" value="9" /> | |
| 649 | - <property name="fillChar" value="0" /> | |
| 650 | - </bean> | |
| 651 | - <!-- WordDicary... END--> | |
| 652 | - | |
| 653 | - <!-- 회의관리 --> | |
| 654 | - <bean name="egovMgtIdGnrService" | |
| 655 | - class="egovframework.rte.fdl.idgnr.impl.EgovTableIdGnrServiceImpl" | |
| 656 | - destroy-method="destroy"> | |
| 657 | - <property name="dataSource" ref="egov.dataSource" /> | |
| 658 | - <property name="strategy" ref="mgtMsgtrategy" /> | |
| 659 | - <property name="blockSize" value="10"/> | |
| 660 | - <property name="table" value="COMTECOPSEQ"/> | |
| 661 | - <property name="tableName" value="MTG_ID"/> | |
| 662 | - </bean> | |
| 663 | - <bean name="mgtMsgtrategy" | |
| 664 | - class="egovframework.rte.fdl.idgnr.impl.strategy.EgovIdGnrStrategyImpl"> | |
| 665 | - <property name="prefix" value="MTG_" /> | |
| 666 | - <property name="cipers" value="16" /> | |
| 667 | - <property name="fillChar" value="0" /> | |
| 668 | - </bean> | |
| 669 | - | |
| 670 | - <!-- 행사/이벤트/켐페인 --> | |
| 671 | - <bean name="egovEventInfoIdGnrService" | |
| 672 | - class="egovframework.rte.fdl.idgnr.impl.EgovTableIdGnrServiceImpl" | |
| 673 | - destroy-method="destroy"> | |
| 674 | - <property name="dataSource" ref="egov.dataSource" /> | |
| 675 | - <property name="strategy" ref="mgtEventInfotrategy" /> | |
| 676 | - <property name="blockSize" value="10"/> | |
| 677 | - <property name="table" value="COMTECOPSEQ"/> | |
| 678 | - <property name="tableName" value="EVENTINFO_ID"/> | |
| 679 | - </bean> | |
| 680 | - <bean name="mgtEventInfotrategy" | |
| 681 | - class="egovframework.rte.fdl.idgnr.impl.strategy.EgovIdGnrStrategyImpl"> | |
| 682 | - <property name="prefix" value="EVENT_" /> | |
| 683 | - <property name="cipers" value="14" /> | |
| 684 | - <property name="fillChar" value="0" /> | |
| 685 | - </bean> | |
| 686 | - | |
| 687 | - <!-- 외부인사정보 --> | |
| 688 | - <bean name="egovExtrlhrInfoIdGnrService" | |
| 689 | - class="egovframework.rte.fdl.idgnr.impl.EgovTableIdGnrServiceImpl" | |
| 690 | - destroy-method="destroy"> | |
| 691 | - <property name="dataSource" ref="egov.dataSource" /> | |
| 692 | - <property name="strategy" ref="mgtExtrlhrInfotrategy" /> | |
| 693 | - <property name="blockSize" value="10"/> | |
| 694 | - <property name="table" value="COMTECOPSEQ"/> | |
| 695 | - <property name="tableName" value="EXTRLHRINFO_ID"/> | |
| 696 | - </bean> | |
| 697 | - <bean name="mgtExtrlhrInfotrategy" | |
| 698 | - class="egovframework.rte.fdl.idgnr.impl.strategy.EgovIdGnrStrategyImpl"> | |
| 699 | - <property name="prefix" value="EXTRLHR_" /> | |
| 700 | - <property name="cipers" value="12" /> | |
| 701 | - <property name="fillChar" value="0" /> | |
| 702 | - </bean> | |
| 703 | - | |
| 704 | - <!-- 설문템플릿 --> | |
| 705 | - <bean name="egovQustnrTmplatManageIdGnrService" | |
| 706 | - class="egovframework.rte.fdl.idgnr.impl.EgovTableIdGnrServiceImpl" | |
| 707 | - destroy-method="destroy"> | |
| 708 | - <property name="dataSource" ref="egov.dataSource" /> | |
| 709 | - <property name="strategy" ref="QustnrTmplatManageInfotrategy" /> | |
| 710 | - <property name="blockSize" value="10"/> | |
| 711 | - <property name="table" value="COMTECOPSEQ"/> | |
| 712 | - <property name="tableName" value="QUSTNRTMPLA_ID"/> | |
| 713 | - </bean> | |
| 714 | - <bean name="QustnrTmplatManageInfotrategy" | |
| 715 | - class="egovframework.rte.fdl.idgnr.impl.strategy.EgovIdGnrStrategyImpl"> | |
| 716 | - <property name="prefix" value="QTMPLA_" /> | |
| 717 | - <property name="cipers" value="13" /> | |
| 718 | - <property name="fillChar" value="0" /> | |
| 719 | - </bean> | |
| 720 | - <!-- 설문관리 --> | |
| 721 | - <bean name="egovQustnrManageIdGnrService" | |
| 722 | - class="egovframework.rte.fdl.idgnr.impl.EgovTableIdGnrServiceImpl" | |
| 723 | - destroy-method="destroy"> | |
| 724 | - <property name="dataSource" ref="egov.dataSource" /> | |
| 725 | - <property name="strategy" ref="QustnrManageInfotrategy" /> | |
| 726 | - <property name="blockSize" value="10"/> | |
| 727 | - <property name="table" value="COMTECOPSEQ"/> | |
| 728 | - <property name="tableName" value="QUSTNRTMPLA_ID"/> | |
| 729 | - </bean> | |
| 730 | - <bean name="QustnrManageInfotrategy" | |
| 731 | - class="egovframework.rte.fdl.idgnr.impl.strategy.EgovIdGnrStrategyImpl"> | |
| 732 | - <property name="prefix" value="QMANAGE_" /> | |
| 733 | - <property name="cipers" value="12" /> | |
| 734 | - <property name="fillChar" value="0" /> | |
| 735 | - </bean> | |
| 736 | - <!-- 설문문항 --> | |
| 737 | - <bean name="egovQustnrQestnManageIdGnrService" | |
| 738 | - class="egovframework.rte.fdl.idgnr.impl.EgovTableIdGnrServiceImpl" | |
| 739 | - destroy-method="destroy"> | |
| 740 | - <property name="dataSource" ref="egov.dataSource" /> | |
| 741 | - <property name="strategy" ref="QustnrQestnManageInfotrategy" /> | |
| 742 | - <property name="blockSize" value="10"/> | |
| 743 | - <property name="table" value="COMTECOPSEQ"/> | |
| 744 | - <property name="tableName" value="QUSTNRQESTN_ID"/> | |
| 745 | - </bean> | |
| 746 | - <bean name="QustnrQestnManageInfotrategy" | |
| 747 | - class="egovframework.rte.fdl.idgnr.impl.strategy.EgovIdGnrStrategyImpl"> | |
| 748 | - <property name="prefix" value="QQESTN_" /> | |
| 749 | - <property name="cipers" value="13" /> | |
| 750 | - <property name="fillChar" value="0" /> | |
| 751 | - </bean> | |
| 752 | - <!-- 설문항목 --> | |
| 753 | - <bean name="egovQustnrItemManageIdGnrService" | |
| 754 | - class="egovframework.rte.fdl.idgnr.impl.EgovTableIdGnrServiceImpl" | |
| 755 | - destroy-method="destroy"> | |
| 756 | - <property name="dataSource" ref="egov.dataSource" /> | |
| 757 | - <property name="strategy" ref="QustnrItemManageInfotrategy" /> | |
| 758 | - <property name="blockSize" value="10"/> | |
| 759 | - <property name="table" value="COMTECOPSEQ"/> | |
| 760 | - <property name="tableName" value="QESTNR_QESITM_ID"/> | |
| 761 | - </bean> | |
| 762 | - <bean name="QustnrItemManageInfotrategy" | |
| 763 | - class="egovframework.rte.fdl.idgnr.impl.strategy.EgovIdGnrStrategyImpl"> | |
| 764 | - <property name="prefix" value="QESITM_" /> | |
| 765 | - <property name="cipers" value="13" /> | |
| 766 | - <property name="fillChar" value="0" /> | |
| 767 | - </bean> | |
| 768 | - <!-- 설문응답자정보 --> | |
| 769 | - <bean name="qustnrRespondManageIdGnrService" | |
| 770 | - class="egovframework.rte.fdl.idgnr.impl.EgovTableIdGnrServiceImpl" | |
| 771 | - destroy-method="destroy"> | |
| 772 | - <property name="dataSource" ref="egov.dataSource" /> | |
| 773 | - <property name="strategy" ref="QustnrRespondManageInfotrategy" /> | |
| 774 | - <property name="blockSize" value="10"/> | |
| 775 | - <property name="table" value="COMTECOPSEQ"/> | |
| 776 | - <property name="tableName" value="QESTNR_RPD_ID"/> | |
| 777 | - </bean> | |
| 778 | - <bean name="QustnrRespondManageInfotrategy" | |
| 779 | - class="egovframework.rte.fdl.idgnr.impl.strategy.EgovIdGnrStrategyImpl"> | |
| 780 | - <property name="prefix" value="QRPD_" /> | |
| 781 | - <property name="cipers" value="15" /> | |
| 782 | - <property name="fillChar" value="0" /> | |
| 783 | - </bean> | |
| 784 | - | |
| 785 | - <!-- 설문조사 --> | |
| 786 | - <bean name="qustnrRespondInfoIdGnrService" | |
| 787 | - class="egovframework.rte.fdl.idgnr.impl.EgovTableIdGnrServiceImpl" | |
| 788 | - destroy-method="destroy"> | |
| 789 | - <property name="dataSource" ref="egov.dataSource" /> | |
| 790 | - <property name="strategy" ref="QustnrRespondInfotrategy" /> | |
| 791 | - <property name="blockSize" value="10"/> | |
| 792 | - <property name="table" value="COMTECOPSEQ"/> | |
| 793 | - <property name="tableName" value="QESRSPNS_ID"/> | |
| 794 | - </bean> | |
| 795 | - <bean name="QustnrRespondInfotrategy" | |
| 796 | - class="egovframework.rte.fdl.idgnr.impl.strategy.EgovIdGnrStrategyImpl"> | |
| 797 | - <property name="prefix" value="QRSPNS_" /> | |
| 798 | - <property name="cipers" value="13" /> | |
| 799 | - <property name="fillChar" value="0" /> | |
| 800 | - </bean> | |
| 801 | - | |
| 802 | - <!-- 부서일정관리 --> | |
| 803 | - <bean name="deptSchdulManageIdGnrService" | |
| 804 | - class="egovframework.rte.fdl.idgnr.impl.EgovTableIdGnrServiceImpl" | |
| 805 | - destroy-method="destroy"> | |
| 806 | - <property name="dataSource" ref="egov.dataSource" /> | |
| 807 | - <property name="strategy" ref="DeptSchdulManageStrategy" /> | |
| 808 | - <property name="blockSize" value="10"/> | |
| 809 | - <property name="table" value="COMTECOPSEQ"/> | |
| 810 | - <property name="tableName" value="SCHDUL_ID"/> | |
| 811 | - </bean> | |
| 812 | - <bean name="DeptSchdulManageStrategy" | |
| 813 | - class="egovframework.rte.fdl.idgnr.impl.strategy.EgovIdGnrStrategyImpl"> | |
| 814 | - <property name="prefix" value="SCHDUL_" /> | |
| 815 | - <property name="cipers" value="13" /> | |
| 816 | - <property name="fillChar" value="0" /> | |
| 817 | - </bean> | |
| 818 | - <!-- 일정관리 --> | |
| 819 | - <bean name="diaryManageIdGnrService" | |
| 820 | - class="egovframework.rte.fdl.idgnr.impl.EgovTableIdGnrServiceImpl" | |
| 821 | - destroy-method="destroy"> | |
| 822 | - <property name="dataSource" ref="egov.dataSource" /> | |
| 823 | - <property name="strategy" ref="DiaryManageInfotrategy" /> | |
| 824 | - <property name="blockSize" value="10"/> | |
| 825 | - <property name="table" value="COMTECOPSEQ"/> | |
| 826 | - <property name="tableName" value="DIARY_ID"/> | |
| 827 | - </bean> | |
| 828 | - <bean name="DiaryManageInfotrategy" | |
| 829 | - class="egovframework.rte.fdl.idgnr.impl.strategy.EgovIdGnrStrategyImpl"> | |
| 830 | - <property name="prefix" value="DIARY_" /> | |
| 831 | - <property name="cipers" value="14" /> | |
| 832 | - <property name="fillChar" value="0" /> | |
| 833 | - </bean> | |
| 834 | - | |
| 835 | - <!-- SiteManage... START--> | |
| 836 | - <bean name="egovSiteManageIdGnrService" | |
| 837 | - class="egovframework.rte.fdl.idgnr.impl.EgovTableIdGnrServiceImpl" | |
| 838 | - destroy-method="destroy"> | |
| 839 | - <property name="dataSource" ref="egov.dataSource" /> | |
| 840 | - <property name="strategy" ref="siteManageStrategy" /> | |
| 841 | - <property name="blockSize" value="10"/> | |
| 842 | - <property name="table" value="COMTECOPSEQ"/> | |
| 843 | - <property name="tableName" value="SITE_ID"/> | |
| 844 | - </bean> | |
| 845 | - | |
| 846 | - <bean name="siteManageStrategy" | |
| 847 | - class="egovframework.rte.fdl.idgnr.impl.strategy.EgovIdGnrStrategyImpl"> | |
| 848 | - <property name="prefix" value="SITE_" /> | |
| 849 | - <property name="cipers" value="15" /> | |
| 850 | - <property name="fillChar" value="0" /> | |
| 851 | - </bean> | |
| 852 | - <!-- SiteManage... END--> | |
| 853 | - | |
| 854 | - <!-- RecomendSiteManage... START--> | |
| 855 | - <bean name="egovRecomendSiteManageIdGnrService" | |
| 856 | - class="egovframework.rte.fdl.idgnr.impl.EgovTableIdGnrServiceImpl" | |
| 857 | - destroy-method="destroy"> | |
| 858 | - <property name="dataSource" ref="egov.dataSource" /> | |
| 859 | - <property name="strategy" ref="recomendSiteManageStrategy" /> | |
| 860 | - <property name="blockSize" value="10"/> | |
| 861 | - <property name="table" value="COMTECOPSEQ"/> | |
| 862 | - <property name="tableName" value="RECOMEND_SITE_ID"/> | |
| 863 | - </bean> | |
| 864 | - | |
| 865 | - <bean name="recomendSiteManageStrategy" | |
| 866 | - class="egovframework.rte.fdl.idgnr.impl.strategy.EgovIdGnrStrategyImpl"> | |
| 867 | - <property name="prefix" value="RECOMEND_" /> | |
| 868 | - <property name="cipers" value="11" /> | |
| 869 | - <property name="fillChar" value="0" /> | |
| 870 | - </bean> | |
| 871 | - <!-- RecomendSiteManage... END--> | |
| 872 | - | |
| 873 | - <!-- HPCMManage... START--> | |
| 874 | - <bean name="egovHpcmManageIdGnrService" | |
| 875 | - class="egovframework.rte.fdl.idgnr.impl.EgovTableIdGnrServiceImpl" | |
| 876 | - destroy-method="destroy"> | |
| 877 | - <property name="dataSource" ref="egov.dataSource" /> | |
| 878 | - <property name="strategy" ref="hpcmManageStrategy" /> | |
| 879 | - <property name="blockSize" value="10"/> | |
| 880 | - <property name="table" value="COMTECOPSEQ"/> | |
| 881 | - <property name="tableName" value="HPCM_ID"/> | |
| 882 | - </bean> | |
| 883 | - | |
| 884 | - <bean name="hpcmManageStrategy" | |
| 885 | - class="egovframework.rte.fdl.idgnr.impl.strategy.EgovIdGnrStrategyImpl"> | |
| 886 | - <property name="prefix" value="HPCM_" /> | |
| 887 | - <property name="cipers" value="15" /> | |
| 888 | - <property name="fillChar" value="0" /> | |
| 889 | - </bean> | |
| 890 | - <!-- HPCMManage... END--> | |
| 891 | - | |
| 892 | - <!-- NewsManage... START--> | |
| 893 | - <bean name="egovNewsManageIdGnrService" | |
| 894 | - class="egovframework.rte.fdl.idgnr.impl.EgovTableIdGnrServiceImpl" | |
| 895 | - destroy-method="destroy"> | |
| 896 | - <property name="dataSource" ref="egov.dataSource" /> | |
| 897 | - <property name="strategy" ref="newsManageStrategy" /> | |
| 898 | - <property name="blockSize" value="10"/> | |
| 899 | - <property name="table" value="COMTECOPSEQ"/> | |
| 900 | - <property name="tableName" value="NEWS_ID"/> | |
| 901 | - </bean> | |
| 902 | - | |
| 903 | - <bean name="newsManageStrategy" | |
| 904 | - class="egovframework.rte.fdl.idgnr.impl.strategy.EgovIdGnrStrategyImpl"> | |
| 905 | - <property name="prefix" value="NEWS_" /> | |
| 906 | - <property name="cipers" value="15" /> | |
| 907 | - <property name="fillChar" value="0" /> | |
| 908 | - </bean> | |
| 909 | - <!-- NewsManage... END--> | |
| 910 | - | |
| 911 | - <!-- FaqManage... START--> | |
| 912 | - <bean name="egovFaqManageIdGnrService" | |
| 913 | - class="egovframework.rte.fdl.idgnr.impl.EgovTableIdGnrServiceImpl" | |
| 914 | - destroy-method="destroy"> | |
| 915 | - <property name="dataSource" ref="egov.dataSource" /> | |
| 916 | - <property name="strategy" ref="faqManageStrategy" /> | |
| 917 | - <property name="blockSize" value="10"/> | |
| 918 | - <property name="table" value="COMTECOPSEQ"/> | |
| 919 | - <property name="tableName" value="FAQ_ID"/> | |
| 920 | - </bean> | |
| 921 | - | |
| 922 | - <bean name="faqManageStrategy" | |
| 923 | - class="egovframework.rte.fdl.idgnr.impl.strategy.EgovIdGnrStrategyImpl"> | |
| 924 | - <property name="prefix" value="FAQ_" /> | |
| 925 | - <property name="cipers" value="16" /> | |
| 926 | - <property name="fillChar" value="0" /> | |
| 927 | - </bean> | |
| 928 | - <!-- FaqManage... END--> | |
| 929 | - | |
| 930 | - <!-- 명함 --> | |
| 931 | - <bean name="egovNcrdIdGnrService" | |
| 932 | - class="egovframework.rte.fdl.idgnr.impl.EgovTableIdGnrServiceImpl" | |
| 933 | - destroy-method="destroy"> | |
| 934 | - <property name="dataSource" ref="egov.dataSource" /> | |
| 935 | - <property name="strategy" ref="ncrdIdStrategy" /> | |
| 936 | - <property name="blockSize" value="10"/> | |
| 937 | - <property name="table" value="COMTECOPSEQ"/> | |
| 938 | - <property name="tableName" value="NCRD_ID"/> | |
| 939 | - </bean> | |
| 940 | - | |
| 941 | - <bean name="ncrdIdStrategy" | |
| 942 | - class="egovframework.rte.fdl.idgnr.impl.strategy.EgovIdGnrStrategyImpl"> | |
| 943 | - <property name="prefix" value="NCRD_" /> | |
| 944 | - <property name="cipers" value="15" /> | |
| 945 | - <property name="fillChar" value="0" /> | |
| 946 | - </bean> | |
| 947 | - <!-- 주소록 --> | |
| 948 | - <bean name="egovAdbkIdGnrService" | |
| 949 | - class="egovframework.rte.fdl.idgnr.impl.EgovTableIdGnrServiceImpl" | |
| 950 | - destroy-method="destroy"> | |
| 951 | - <property name="dataSource" ref="egov.dataSource" /> | |
| 952 | - <property name="strategy" ref="adbkIdStrategy" /> | |
| 953 | - <property name="blockSize" value="10"/> | |
| 954 | - <property name="table" value="COMTECOPSEQ"/> | |
| 955 | - <property name="tableName" value="ADBK_ID"/> | |
| 956 | - </bean> | |
| 957 | - <bean name="adbkIdStrategy" | |
| 958 | - class="egovframework.rte.fdl.idgnr.impl.strategy.EgovIdGnrStrategyImpl"> | |
| 959 | - <property name="prefix" value="ADBK_" /> | |
| 960 | - <property name="cipers" value="15" /> | |
| 961 | - <property name="fillChar" value="0" /> | |
| 962 | - </bean> | |
| 963 | - <bean name="egovAdbkUserIdGnrService" | |
| 964 | - class="egovframework.rte.fdl.idgnr.impl.EgovTableIdGnrServiceImpl" | |
| 965 | - destroy-method="destroy"> | |
| 966 | - <property name="dataSource" ref="egov.dataSource" /> | |
| 967 | - <property name="strategy" ref="adbkUserIdStrategy" /> | |
| 968 | - <property name="blockSize" value="10"/> | |
| 969 | - <property name="table" value="COMTECOPSEQ"/> | |
| 970 | - <property name="tableName" value="ADBKUSER_ID"/> | |
| 971 | - </bean> | |
| 972 | - <bean name="adbkUserIdStrategy" | |
| 973 | - class="egovframework.rte.fdl.idgnr.impl.strategy.EgovIdGnrStrategyImpl"> | |
| 974 | - <property name="prefix" value="ADBKUSER_" /> | |
| 975 | - <property name="cipers" value="11" /> | |
| 976 | - <property name="fillChar" value="0" /> | |
| 977 | - </bean> | |
| 978 | - | |
| 979 | - <!-- StplatManage... START--> | |
| 980 | - <bean name="egovStplatManageIdGnrService" | |
| 981 | - class="egovframework.rte.fdl.idgnr.impl.EgovTableIdGnrServiceImpl" | |
| 982 | - destroy-method="destroy"> | |
| 983 | - <property name="dataSource" ref="egov.dataSource" /> | |
| 984 | - <property name="strategy" ref="stplatManageStrategy" /> | |
| 985 | - <property name="blockSize" value="10"/> | |
| 986 | - <property name="table" value="COMTECOPSEQ"/> | |
| 987 | - <property name="tableName" value="USE_STPLAT_ID"/> | |
| 988 | - </bean> | |
| 989 | - | |
| 990 | - <bean name="stplatManageStrategy" | |
| 991 | - class="egovframework.rte.fdl.idgnr.impl.strategy.EgovIdGnrStrategyImpl"> | |
| 992 | - <property name="prefix" value="STPLAT_" /> | |
| 993 | - <property name="cipers" value="13" /> | |
| 994 | - <property name="fillChar" value="0" /> | |
| 995 | - </bean> | |
| 996 | - <!-- StplatManage... END--> | |
| 997 | - | |
| 998 | - <!-- CpyrhtPrtcPolicy... START--> | |
| 999 | - <bean name="egovCpyrhtPrtcPolicyIdGnrService" | |
| 1000 | - class="egovframework.rte.fdl.idgnr.impl.EgovTableIdGnrServiceImpl" | |
| 1001 | - destroy-method="destroy"> | |
| 1002 | - <property name="dataSource" ref="egov.dataSource" /> | |
| 1003 | - <property name="strategy" ref="cpyrhtPrtcPolicyStrategy" /> | |
| 1004 | - <property name="blockSize" value="10"/> | |
| 1005 | - <property name="table" value="COMTECOPSEQ"/> | |
| 1006 | - <property name="tableName" value="CPYRHT_ID"/> | |
| 1007 | - </bean> | |
| 1008 | - | |
| 1009 | - <bean name="cpyrhtPrtcPolicyStrategy" | |
| 1010 | - class="egovframework.rte.fdl.idgnr.impl.strategy.EgovIdGnrStrategyImpl"> | |
| 1011 | - <property name="prefix" value="CPYRHT_" /> | |
| 1012 | - <property name="cipers" value="13" /> | |
| 1013 | - <property name="fillChar" value="0" /> | |
| 1014 | - </bean> | |
| 1015 | - <!-- CpyrhtPrtcPolicy... END--> | |
| 1016 | - | |
| 1017 | - <!-- Qna... START--> | |
| 1018 | - <bean name="egovQnaManageIdGnrService" | |
| 1019 | - class="egovframework.rte.fdl.idgnr.impl.EgovTableIdGnrServiceImpl" | |
| 1020 | - destroy-method="destroy"> | |
| 1021 | - <property name="dataSource" ref="egov.dataSource" /> | |
| 1022 | - <property name="strategy" ref="qnaManageStrategy" /> | |
| 1023 | - <property name="blockSize" value="10"/> | |
| 1024 | - <property name="table" value="COMTECOPSEQ"/> | |
| 1025 | - <property name="tableName" value="QA_ID"/> | |
| 1026 | - </bean> | |
| 1027 | - | |
| 1028 | - <bean name="qnaManageStrategy" | |
| 1029 | - class="egovframework.rte.fdl.idgnr.impl.strategy.EgovIdGnrStrategyImpl"> | |
| 1030 | - <property name="prefix" value="QA_" /> | |
| 1031 | - <property name="cipers" value="17" /> | |
| 1032 | - <property name="fillChar" value="0" /> | |
| 1033 | - </bean> | |
| 1034 | - <!-- Qna... END--> | |
| 1035 | - | |
| 1036 | - <!-- Cnslt... START--> | |
| 1037 | - <bean name="egovCnsltManageIdGnrService" | |
| 1038 | - class="egovframework.rte.fdl.idgnr.impl.EgovTableIdGnrServiceImpl" | |
| 1039 | - destroy-method="destroy"> | |
| 1040 | - <property name="dataSource" ref="egov.dataSource" /> | |
| 1041 | - <property name="strategy" ref="cnsltManageStrategy" /> | |
| 1042 | - <property name="blockSize" value="10"/> | |
| 1043 | - <property name="table" value="COMTECOPSEQ"/> | |
| 1044 | - <property name="tableName" value="CNSLT_ID"/> | |
| 1045 | - </bean> | |
| 1046 | - | |
| 1047 | - <bean name="cnsltManageStrategy" | |
| 1048 | - class="egovframework.rte.fdl.idgnr.impl.strategy.EgovIdGnrStrategyImpl"> | |
| 1049 | - <property name="prefix" value="CNSLT_" /> | |
| 1050 | - <property name="cipers" value="14" /> | |
| 1051 | - <property name="fillChar" value="0" /> | |
| 1052 | - </bean> | |
| 1053 | - <!-- Cnslt... END--> | |
| 1054 | - | |
| 1055 | - <!-- Web Log... START--> | |
| 1056 | - <bean name="egovWebLogIdGnrService" | |
| 1057 | - class="egovframework.rte.fdl.idgnr.impl.EgovTableIdGnrServiceImpl" | |
| 1058 | - destroy-method="destroy"> | |
| 1059 | - <property name="dataSource" ref="egov.dataSource" /> | |
| 1060 | - <property name="strategy" ref="webLogStrategy" /> | |
| 1061 | - <property name="blockSize" value="10"/> | |
| 1062 | - <property name="table" value="COMTECOPSEQ"/> | |
| 1063 | - <property name="tableName" value="WEBLOG_ID"/> | |
| 1064 | - </bean> | |
| 1065 | - | |
| 1066 | - <bean name="webLogStrategy" | |
| 1067 | - class="egovframework.rte.fdl.idgnr.impl.strategy.EgovIdGnrStrategyImpl"> | |
| 1068 | - <property name="prefix" value="WEBLOG_" /> | |
| 1069 | - <property name="cipers" value="13" /> | |
| 1070 | - <property name="fillChar" value="0" /> | |
| 1071 | - </bean> | |
| 1072 | - <!-- Web Log... END--> | |
| 1073 | - | |
| 1074 | - <!-- Trsmrcv Log... START--> | |
| 1075 | - <bean name="egovTrsmrcvLogIdGnrService" | |
| 1076 | - class="egovframework.rte.fdl.idgnr.impl.EgovTableIdGnrServiceImpl" | |
| 1077 | - destroy-method="destroy"> | |
| 1078 | - <property name="dataSource" ref="egov.dataSource" /> | |
| 1079 | - <property name="strategy" ref="trsmrcvLogStrategy" /> | |
| 1080 | - <property name="blockSize" value="10"/> | |
| 1081 | - <property name="table" value="COMTECOPSEQ"/> | |
| 1082 | - <property name="tableName" value="TRSMRCVLOG_ID"/> | |
| 1083 | - </bean> | |
| 1084 | - | |
| 1085 | - <bean name="trsmrcvLogStrategy" | |
| 1086 | - class="egovframework.rte.fdl.idgnr.impl.strategy.EgovIdGnrStrategyImpl"> | |
| 1087 | - <property name="prefix" value="TRSMRCV_" /> | |
| 1088 | - <property name="cipers" value="12" /> | |
| 1089 | - <property name="fillChar" value="0" /> | |
| 1090 | - </bean> | |
| 1091 | - <!-- Trsmrcv Log... END--> | |
| 1092 | - | |
| 1093 | - <!-- 배너 ID --> | |
| 1094 | - <bean name="egovBannerIdGnrService" | |
| 1095 | - class="egovframework.rte.fdl.idgnr.impl.EgovTableIdGnrServiceImpl" | |
| 1096 | - destroy-method="destroy"> | |
| 1097 | - <property name="dataSource" ref="egov.dataSource" /> | |
| 1098 | - <property name="strategy" ref="bannerIdStrategy" /> | |
| 1099 | - <property name="blockSize" value="10"/> | |
| 1100 | - <property name="table" value="COMTECOPSEQ"/> | |
| 1101 | - <property name="tableName" value="BANNER_ID"/> | |
| 1102 | - </bean> | |
| 1103 | - | |
| 1104 | - <bean name="bannerIdStrategy" | |
| 1105 | - class="egovframework.rte.fdl.idgnr.impl.strategy.EgovIdGnrStrategyImpl"> | |
| 1106 | - <property name="prefix" value="BANNER_" /> | |
| 1107 | - <property name="cipers" value="13" /> | |
| 1108 | - <property name="fillChar" value="0" /> | |
| 1109 | - </bean> | |
| 1110 | - <!-- 배너 ID --> | |
| 1111 | - | |
| 1112 | - <!-- 로그인화면이미지 ID --> | |
| 1113 | - <bean name="egovLoginScrinImageIdGnrService" | |
| 1114 | - class="egovframework.rte.fdl.idgnr.impl.EgovTableIdGnrServiceImpl" | |
| 1115 | - destroy-method="destroy"> | |
| 1116 | - <property name="dataSource" ref="egov.dataSource" /> | |
| 1117 | - <property name="strategy" ref="loginScrinImageIdStrategy" /> | |
| 1118 | - <property name="blockSize" value="10"/> | |
| 1119 | - <property name="table" value="COMTECOPSEQ"/> | |
| 1120 | - <property name="tableName" value="LSI_ID"/> | |
| 1121 | - </bean> | |
| 1122 | - | |
| 1123 | - <bean name="loginScrinImageIdStrategy" | |
| 1124 | - class="egovframework.rte.fdl.idgnr.impl.strategy.EgovIdGnrStrategyImpl"> | |
| 1125 | - <property name="prefix" value="LSI_" /> | |
| 1126 | - <property name="cipers" value="16" /> | |
| 1127 | - <property name="fillChar" value="0" /> | |
| 1128 | - </bean> | |
| 1129 | - <!-- 로그인화면이미지 ID --> | |
| 1130 | - | |
| 1131 | - <!-- 메인화면이미지 ID --> | |
| 1132 | - <bean name="egovMainImageIdGnrService" | |
| 1133 | - class="egovframework.rte.fdl.idgnr.impl.EgovTableIdGnrServiceImpl" | |
| 1134 | - destroy-method="destroy"> | |
| 1135 | - <property name="dataSource" ref="egov.dataSource" /> | |
| 1136 | - <property name="strategy" ref="mainImageIdStrategy" /> | |
| 1137 | - <property name="blockSize" value="10"/> | |
| 1138 | - <property name="table" value="COMTECOPSEQ"/> | |
| 1139 | - <property name="tableName" value="MSI_ID"/> | |
| 1140 | - </bean> | |
| 1141 | - | |
| 1142 | - <bean name="mainImageIdStrategy" | |
| 1143 | - class="egovframework.rte.fdl.idgnr.impl.strategy.EgovIdGnrStrategyImpl"> | |
| 1144 | - <property name="prefix" value="MSI_" /> | |
| 1145 | - <property name="cipers" value="16" /> | |
| 1146 | - <property name="fillChar" value="0" /> | |
| 1147 | - </bean> | |
| 1148 | - <!-- 메인화면이미지 ID --> | |
| 1149 | - | |
| 1150 | - <!-- 인터넷서비스안내 ID --> | |
| 1151 | - <bean name="egovIntnetSvcGuidanceIdGnrService" | |
| 1152 | - class="egovframework.rte.fdl.idgnr.impl.EgovTableIdGnrServiceImpl" | |
| 1153 | - destroy-method="destroy"> | |
| 1154 | - <property name="dataSource" ref="egov.dataSource" /> | |
| 1155 | - <property name="strategy" ref="mainImageIdStrategy" /> | |
| 1156 | - <property name="blockSize" value="10"/> | |
| 1157 | - <property name="table" value="COMTECOPSEQ"/> | |
| 1158 | - <property name="tableName" value="ISG_ID"/> | |
| 1159 | - </bean> | |
| 1160 | - | |
| 1161 | - <bean name="intnetSvcGuidanceIdStrategy" | |
| 1162 | - class="egovframework.rte.fdl.idgnr.impl.strategy.EgovIdGnrStrategyImpl"> | |
| 1163 | - <property name="prefix" value="ISG_" /> | |
| 1164 | - <property name="cipers" value="16" /> | |
| 1165 | - <property name="fillChar" value="0" /> | |
| 1166 | - </bean> | |
| 1167 | - <!-- 인터넷서비스안내 ID --> | |
| 1168 | - | |
| 1169 | - <!-- 마이페이지 컨텐츠 ID --> | |
| 1170 | - <bean name="egovIndvdlPgeIdGnrService" | |
| 1171 | - class="egovframework.rte.fdl.idgnr.impl.EgovTableIdGnrServiceImpl" | |
| 1172 | - destroy-method="destroy"> | |
| 1173 | - <property name="dataSource" ref="egov.dataSource" /> | |
| 1174 | - <property name="strategy" ref="cntntsIdStrategy" /> | |
| 1175 | - <property name="blockSize" value="10"/> | |
| 1176 | - <property name="table" value="COMTECOPSEQ"/> | |
| 1177 | - <property name="tableName" value="CNTNTS_ID"/> | |
| 1178 | - </bean> | |
| 1179 | - <bean name="cntntsIdStrategy" | |
| 1180 | - class="egovframework.rte.fdl.idgnr.impl.strategy.EgovIdGnrStrategyImpl"> | |
| 1181 | - <property name="prefix" value="C" /> | |
| 1182 | - <property name="cipers" value="19" /> | |
| 1183 | - <property name="fillChar" value="0" /> | |
| 1184 | - </bean> | |
| 1185 | - <!-- 마이페이지 컨텐츠 ID --> | |
| 1186 | - | |
| 1187 | - <!-- 보고서통계 ID --> | |
| 1188 | - <bean name="egovReprtStatsIdGnrService" | |
| 1189 | - class="egovframework.rte.fdl.idgnr.impl.EgovTableIdGnrServiceImpl" | |
| 1190 | - destroy-method="destroy"> | |
| 1191 | - <property name="dataSource" ref="egov.dataSource" /> | |
| 1192 | - <property name="strategy" ref="reprtStatsIdStrategy" /> | |
| 1193 | - <property name="blockSize" value="10"/> | |
| 1194 | - <property name="table" value="COMTECOPSEQ"/> | |
| 1195 | - <property name="tableName" value="RS_ID"/> | |
| 1196 | - </bean> | |
| 1197 | - | |
| 1198 | - <bean name="reprtStatsIdStrategy" | |
| 1199 | - class="egovframework.rte.fdl.idgnr.impl.strategy.EgovIdGnrStrategyImpl"> | |
| 1200 | - <property name="prefix" value="RS_" /> | |
| 1201 | - <property name="cipers" value="3" /> | |
| 1202 | - <property name="fillChar" value="0" /> | |
| 1203 | - </bean> | |
| 1204 | - <!-- 보고서통계 ID --> | |
| 1205 | - | |
| 1206 | - <!-- 자료이용현황통계 ID --> | |
| 1207 | - <bean name="egovDtaUseStatsIdGnrService" | |
| 1208 | - class="egovframework.rte.fdl.idgnr.impl.EgovTableIdGnrServiceImpl" | |
| 1209 | - destroy-method="destroy"> | |
| 1210 | - <property name="dataSource" ref="egov.dataSource" /> | |
| 1211 | - <property name="strategy" ref="dtaUseStatsIdStrategy" /> | |
| 1212 | - <property name="blockSize" value="10"/> | |
| 1213 | - <property name="table" value="COMTECOPSEQ"/> | |
| 1214 | - <property name="tableName" value="DUS_ID"/> | |
| 1215 | - </bean> | |
| 1216 | - | |
| 1217 | - <bean name="dtaUseStatsIdStrategy" | |
| 1218 | - class="egovframework.rte.fdl.idgnr.impl.strategy.EgovIdGnrStrategyImpl"> | |
| 1219 | - <property name="prefix" value="DUS_" /> | |
| 1220 | - <property name="cipers" value="16" /> | |
| 1221 | - <property name="fillChar" value="0" /> | |
| 1222 | - </bean> | |
| 1223 | - <!-- 자료이용현황통계 ID --> | |
| 1224 | - | |
| 1225 | - <bean name="egovSmsIdGnrService" | |
| 1226 | - class="egovframework.rte.fdl.idgnr.impl.EgovTableIdGnrServiceImpl" | |
| 1227 | - destroy-method="destroy"> | |
| 1228 | - <property name="dataSource" ref="egov.dataSource" /> | |
| 1229 | - <property name="strategy" ref="smsStrategy" /> | |
| 1230 | - <property name="blockSize" value="10"/> | |
| 1231 | - <property name="table" value="COMTECOPSEQ"/> | |
| 1232 | - <property name="tableName" value="SMS_ID"/> | |
| 1233 | - </bean> | |
| 1234 | - <bean name="smsStrategy" | |
| 1235 | - class="egovframework.rte.fdl.idgnr.impl.strategy.EgovIdGnrStrategyImpl"> | |
| 1236 | - <property name="prefix" value="SMS_" /> | |
| 1237 | - <property name="cipers" value="16" /> | |
| 1238 | - <property name="fillChar" value="0" /> | |
| 1239 | - </bean> | |
| 1240 | - | |
| 1241 | - <bean name="egovScrapIdGnrService" | |
| 1242 | - class="egovframework.rte.fdl.idgnr.impl.EgovTableIdGnrServiceImpl" | |
| 1243 | - destroy-method="destroy"> | |
| 1244 | - <property name="dataSource" ref="egov.dataSource" /> | |
| 1245 | - <property name="strategy" ref="scrapStrategy" /> | |
| 1246 | - <property name="blockSize" value="10"/> | |
| 1247 | - <property name="table" value="COMTECOPSEQ"/> | |
| 1248 | - <property name="tableName" value="SCRAP_ID"/> | |
| 1249 | - </bean> | |
| 1250 | - <bean name="scrapStrategy" | |
| 1251 | - class="egovframework.rte.fdl.idgnr.impl.strategy.EgovIdGnrStrategyImpl"> | |
| 1252 | - <property name="prefix" value="SCRIP_" /> | |
| 1253 | - <property name="cipers" value="14" /> | |
| 1254 | - <property name="fillChar" value="0" /> | |
| 1255 | - </bean> | |
| 1256 | - | |
| 1257 | - <!-- 부서 ID --> | |
| 1258 | - <bean name="egovDeptManageIdGnrService" | |
| 1259 | - class="egovframework.rte.fdl.idgnr.impl.EgovTableIdGnrServiceImpl" | |
| 1260 | - destroy-method="destroy"> | |
| 1261 | - <property name="dataSource" ref="egov.dataSource" /> | |
| 1262 | - <property name="strategy" ref="orgnztIdStrategy" /> | |
| 1263 | - <property name="blockSize" value="10"/> | |
| 1264 | - <property name="table" value="COMTECOPSEQ"/> | |
| 1265 | - <property name="tableName" value="ORGNZT_ID"/> | |
| 1266 | - </bean> | |
| 1267 | - | |
| 1268 | - <bean name="orgnztIdStrategy" | |
| 1269 | - class="egovframework.rte.fdl.idgnr.impl.strategy.EgovIdGnrStrategyImpl"> | |
| 1270 | - <property name="prefix" value="ORGNZT_" /> | |
| 1271 | - <property name="cipers" value="13" /> | |
| 1272 | - <property name="fillChar" value="0" /> | |
| 1273 | - </bean> | |
| 1274 | - <!-- 부서 ID --> | |
| 1275 | - | |
| 1276 | - <!-- 네트워크 ID --> | |
| 1277 | - <bean name="egovNtwrkIdGnrService" | |
| 1278 | - class="egovframework.rte.fdl.idgnr.impl.EgovTableIdGnrServiceImpl" | |
| 1279 | - destroy-method="destroy"> | |
| 1280 | - <property name="dataSource" ref="egov.dataSource" /> | |
| 1281 | - <property name="strategy" ref="ntwrkIdStrategy" /> | |
| 1282 | - <property name="blockSize" value="10"/> | |
| 1283 | - <property name="table" value="COMTECOPSEQ"/> | |
| 1284 | - <property name="tableName" value="NTWRK_ID"/> | |
| 1285 | - </bean> | |
| 1286 | - | |
| 1287 | - <bean name="ntwrkIdStrategy" | |
| 1288 | - class="egovframework.rte.fdl.idgnr.impl.strategy.EgovIdGnrStrategyImpl"> | |
| 1289 | - <property name="prefix" value="NID_" /> | |
| 1290 | - <property name="cipers" value="16" /> | |
| 1291 | - <property name="fillChar" value="0" /> | |
| 1292 | - </bean> | |
| 1293 | - <!-- 네트워크 ID --> | |
| 1294 | - | |
| 1295 | - <!-- 서버장비 ID --> | |
| 1296 | - <bean name="egovServerEqpmnIdGnrService" | |
| 1297 | - class="egovframework.rte.fdl.idgnr.impl.EgovTableIdGnrServiceImpl" | |
| 1298 | - destroy-method="destroy"> | |
| 1299 | - <property name="dataSource" ref="egov.dataSource" /> | |
| 1300 | - <property name="strategy" ref="ServerEqpmnIdStrategy" /> | |
| 1301 | - <property name="blockSize" value="10"/> | |
| 1302 | - <property name="table" value="COMTECOPSEQ"/> | |
| 1303 | - <property name="tableName" value="SEVEQ_ID"/> | |
| 1304 | - </bean> | |
| 1305 | - | |
| 1306 | - <bean name="ServerEqpmnIdStrategy" | |
| 1307 | - class="egovframework.rte.fdl.idgnr.impl.strategy.EgovIdGnrStrategyImpl"> | |
| 1308 | - <property name="prefix" value="SVE_" /> | |
| 1309 | - <property name="cipers" value="16" /> | |
| 1310 | - <property name="fillChar" value="0" /> | |
| 1311 | - </bean> | |
| 1312 | - <!-- 서버장비 ID --> | |
| 1313 | - | |
| 1314 | - <!-- 서버 ID --> | |
| 1315 | - <bean name="egovServerIdGnrService" | |
| 1316 | - class="egovframework.rte.fdl.idgnr.impl.EgovTableIdGnrServiceImpl" | |
| 1317 | - destroy-method="destroy"> | |
| 1318 | - <property name="dataSource" ref="egov.dataSource" /> | |
| 1319 | - <property name="strategy" ref="ServerIdStrategy" /> | |
| 1320 | - <property name="blockSize" value="10"/> | |
| 1321 | - <property name="table" value="COMTECOPSEQ"/> | |
| 1322 | - <property name="tableName" value="SERVER_ID"/> | |
| 1323 | - </bean> | |
| 1324 | - | |
| 1325 | - <bean name="ServerIdStrategy" | |
| 1326 | - class="egovframework.rte.fdl.idgnr.impl.strategy.EgovIdGnrStrategyImpl"> | |
| 1327 | - <property name="prefix" value="SRV_" /> | |
| 1328 | - <property name="cipers" value="16" /> | |
| 1329 | - <property name="fillChar" value="0" /> | |
| 1330 | - </bean> | |
| 1331 | - <!-- 서버 ID --> | |
| 1332 | - | |
| 1333 | - <!-- 장애 ID --> | |
| 1334 | - <bean name="egovTroblIdGnrService" | |
| 1335 | - class="egovframework.rte.fdl.idgnr.impl.EgovTableIdGnrServiceImpl" | |
| 1336 | - destroy-method="destroy"> | |
| 1337 | - <property name="dataSource" ref="egov.dataSource" /> | |
| 1338 | - <property name="strategy" ref="TroblIdStrategy" /> | |
| 1339 | - <property name="blockSize" value="10"/> | |
| 1340 | - <property name="table" value="COMTECOPSEQ"/> | |
| 1341 | - <property name="tableName" value="TROBL_ID"/> | |
| 1342 | - </bean> | |
| 1343 | - | |
| 1344 | - <bean name="TroblIdStrategy" | |
| 1345 | - class="egovframework.rte.fdl.idgnr.impl.strategy.EgovIdGnrStrategyImpl"> | |
| 1346 | - <property name="prefix" value="TBM_" /> | |
| 1347 | - <property name="cipers" value="16" /> | |
| 1348 | - <property name="fillChar" value="0" /> | |
| 1349 | - </bean> | |
| 1350 | - <!-- 장애 ID --> | |
| 1351 | - | |
| 1352 | - | |
| 1353 | - <!-- 동기화대상 서버 ID --> | |
| 1354 | - <bean name="egovSynchrnServerIdGnrService" | |
| 1355 | - class="egovframework.rte.fdl.idgnr.impl.EgovTableIdGnrServiceImpl" | |
| 1356 | - destroy-method="destroy"> | |
| 1357 | - <property name="dataSource" ref="egov.dataSource" /> | |
| 1358 | - <property name="strategy" ref="SynchrnServerIdStrategy" /> | |
| 1359 | - <property name="blockSize" value="10"/> | |
| 1360 | - <property name="table" value="COMTECOPSEQ"/> | |
| 1361 | - <property name="tableName" value="SYNCHRNSERVER_ID"/> | |
| 1362 | - </bean> | |
| 1363 | - | |
| 1364 | - <bean name="SynchrnServerIdStrategy" | |
| 1365 | - class="egovframework.rte.fdl.idgnr.impl.strategy.EgovIdGnrStrategyImpl"> | |
| 1366 | - <property name="prefix" value="SSY_" /> | |
| 1367 | - <property name="cipers" value="16" /> | |
| 1368 | - <property name="fillChar" value="0" /> | |
| 1369 | - </bean> | |
| 1370 | - <!-- 동기화대상 서버 ID --> | |
| 1371 | - | |
| 1372 | - | |
| 1373 | - <!-- 회의실관리 ID --> | |
| 1374 | - <bean name="egovMtgPlaceManageIdGnrService" | |
| 1375 | - class="egovframework.rte.fdl.idgnr.impl.EgovTableIdGnrServiceImpl" | |
| 1376 | - destroy-method="destroy"> | |
| 1377 | - <property name="dataSource" ref="egov.dataSource" /> | |
| 1378 | - <property name="strategy" ref="mtgPlaceManageIdStrategy" /> | |
| 1379 | - <property name="blockSize" value="10"/> | |
| 1380 | - <property name="table" value="COMTECOPSEQ"/> | |
| 1381 | - <property name="tableName" value="MTG_PLACE_ID"/> | |
| 1382 | - </bean> | |
| 1383 | - | |
| 1384 | - <bean name="mtgPlaceManageIdStrategy" | |
| 1385 | - class="egovframework.rte.fdl.idgnr.impl.strategy.EgovIdGnrStrategyImpl"> | |
| 1386 | - <property name="prefix" value="MTGP_" /> | |
| 1387 | - <property name="cipers" value="15" /> | |
| 1388 | - <property name="fillChar" value="0" /> | |
| 1389 | - </bean> | |
| 1390 | - <!-- 회의실관리 ID --> | |
| 1391 | - | |
| 1392 | - <!-- 회의실예약 ID --> | |
| 1393 | - <bean name="egovMtgPlaceResveIdGnrService" | |
| 1394 | - class="egovframework.rte.fdl.idgnr.impl.EgovTableIdGnrServiceImpl" | |
| 1395 | - destroy-method="destroy"> | |
| 1396 | - <property name="dataSource" ref="egov.dataSource" /> | |
| 1397 | - <property name="strategy" ref="mtgPlaceResveIdStrategy" /> | |
| 1398 | - <property name="blockSize" value="10"/> | |
| 1399 | - <property name="table" value="COMTECOPSEQ"/> | |
| 1400 | - <property name="tableName" value="RESVE_ID"/> | |
| 1401 | - </bean> | |
| 1402 | - | |
| 1403 | - <bean name="mtgPlaceResveIdStrategy" | |
| 1404 | - class="egovframework.rte.fdl.idgnr.impl.strategy.EgovIdGnrStrategyImpl"> | |
| 1405 | - <property name="prefix" value="RESVE_" /> | |
| 1406 | - <property name="cipers" value="14" /> | |
| 1407 | - <property name="fillChar" value="0" /> | |
| 1408 | - </bean> | |
| 1409 | - <!-- 회의실예약 ID --> | |
| 1410 | - | |
| 1411 | - <!-- 행사 ID --> | |
| 1412 | - <bean name="egovEventManageIdGnrService" | |
| 1413 | - class="egovframework.rte.fdl.idgnr.impl.EgovTableIdGnrServiceImpl" | |
| 1414 | - destroy-method="destroy"> | |
| 1415 | - <property name="dataSource" ref="egov.dataSource" /> | |
| 1416 | - <property name="strategy" ref="eventManageEventIdStrategy" /> | |
| 1417 | - <property name="blockSize" value="10"/> | |
| 1418 | - <property name="table" value="COMTECOPSEQ"/> | |
| 1419 | - <property name="tableName" value="EVENT_ID"/> | |
| 1420 | - </bean> | |
| 1421 | - | |
| 1422 | - <bean name="eventManageEventIdStrategy" | |
| 1423 | - class="egovframework.rte.fdl.idgnr.impl.strategy.EgovIdGnrStrategyImpl"> | |
| 1424 | - <property name="prefix" value="EVENT_" /> | |
| 1425 | - <property name="cipers" value="14" /> | |
| 1426 | - <property name="fillChar" value="0" /> | |
| 1427 | - </bean> | |
| 1428 | - <!-- 행사 ID --> | |
| 1429 | - | |
| 1430 | - <!-- 행사접수 ID --> | |
| 1431 | - <bean name="egovEventAtdrnIdGnrService" | |
| 1432 | - class="egovframework.rte.fdl.idgnr.impl.EgovTableIdGnrServiceImpl" | |
| 1433 | - destroy-method="destroy"> | |
| 1434 | - <property name="dataSource" ref="egov.dataSource" /> | |
| 1435 | - <property name="strategy" ref="eventAtdrnApplcntIdStrategy" /> | |
| 1436 | - <property name="blockSize" value="10"/> | |
| 1437 | - <property name="table" value="COMTECOPSEQ"/> | |
| 1438 | - <property name="tableName" value="APPLCNT_ID"/> | |
| 1439 | - </bean> | |
| 1440 | - | |
| 1441 | - <bean name="eventAtdrnApplcntIdStrategy" | |
| 1442 | - class="egovframework.rte.fdl.idgnr.impl.strategy.EgovIdGnrStrategyImpl"> | |
| 1443 | - <property name="prefix" value="APPLCNT_" /> | |
| 1444 | - <property name="cipers" value="12" /> | |
| 1445 | - <property name="fillChar" value="0" /> | |
| 1446 | - </bean> | |
| 1447 | - <!-- 행사접수 ID --> | |
| 1448 | - | |
| 1449 | - <!-- 포상 ID --> | |
| 1450 | - <bean name="egovRwardManageIdGnrService" | |
| 1451 | - class="egovframework.rte.fdl.idgnr.impl.EgovTableIdGnrServiceImpl" | |
| 1452 | - destroy-method="destroy"> | |
| 1453 | - <property name="dataSource" ref="egov.dataSource" /> | |
| 1454 | - <property name="strategy" ref="rwardManageIdStrategy" /> | |
| 1455 | - <property name="blockSize" value="10"/> | |
| 1456 | - <property name="table" value="COMTECOPSEQ"/> | |
| 1457 | - <property name="tableName" value="RWARD_ID"/> | |
| 1458 | - </bean> | |
| 1459 | - | |
| 1460 | - <bean name="rwardManageIdStrategy" | |
| 1461 | - class="egovframework.rte.fdl.idgnr.impl.strategy.EgovIdGnrStrategyImpl"> | |
| 1462 | - <property name="prefix" value="RWARD_" /> | |
| 1463 | - <property name="cipers" value="14" /> | |
| 1464 | - <property name="fillChar" value="0" /> | |
| 1465 | - </bean> | |
| 1466 | - <!-- 포상 ID --> | |
| 1467 | - | |
| 1468 | - <!-- 경조사 ID --> | |
| 1469 | - <bean name="egovCtsnnManageIdGnrService" | |
| 1470 | - class="egovframework.rte.fdl.idgnr.impl.EgovTableIdGnrServiceImpl" | |
| 1471 | - destroy-method="destroy"> | |
| 1472 | - <property name="dataSource" ref="egov.dataSource" /> | |
| 1473 | - <property name="strategy" ref="ctsnnManageIdStrategy" /> | |
| 1474 | - <property name="blockSize" value="10"/> | |
| 1475 | - <property name="table" value="COMTECOPSEQ"/> | |
| 1476 | - <property name="tableName" value="CTSNN_ID"/> | |
| 1477 | - </bean> | |
| 1478 | - | |
| 1479 | - <bean name="ctsnnManageIdStrategy" | |
| 1480 | - class="egovframework.rte.fdl.idgnr.impl.strategy.EgovIdGnrStrategyImpl"> | |
| 1481 | - <property name="prefix" value="CTSNN_" /> | |
| 1482 | - <property name="cipers" value="14" /> | |
| 1483 | - <property name="fillChar" value="0" /> | |
| 1484 | - </bean> | |
| 1485 | - <!-- 경조사 ID --> | |
| 1486 | - | |
| 1487 | - <!-- 기념일 ID --> | |
| 1488 | - <bean name="egovAnnvrsryManageIdGnrService" | |
| 1489 | - class="egovframework.rte.fdl.idgnr.impl.EgovTableIdGnrServiceImpl" | |
| 1490 | - destroy-method="destroy"> | |
| 1491 | - <property name="dataSource" ref="egov.dataSource" /> | |
| 1492 | - <property name="strategy" ref="annvrsryManageIdStrategy" /> | |
| 1493 | - <property name="blockSize" value="10"/> | |
| 1494 | - <property name="table" value="COMTECOPSEQ"/> | |
| 1495 | - <property name="tableName" value="ANN_ID"/> | |
| 1496 | - </bean> | |
| 1497 | - | |
| 1498 | - <bean name="annvrsryManageIdStrategy" | |
| 1499 | - class="egovframework.rte.fdl.idgnr.impl.strategy.EgovIdGnrStrategyImpl"> | |
| 1500 | - <property name="prefix" value="ANN_" /> | |
| 1501 | - <property name="cipers" value="16" /> | |
| 1502 | - <property name="fillChar" value="0" /> | |
| 1503 | - </bean> | |
| 1504 | - <!-- 기념일 ID --> | |
| 1505 | - | |
| 1506 | - | |
| 1507 | - <!-- 간부일정 --> | |
| 1508 | - <bean name="egovLeaderSchdulIdGnrService" | |
| 1509 | - class="egovframework.rte.fdl.idgnr.impl.EgovTableIdGnrServiceImpl" | |
| 1510 | - destroy-method="destroy"> | |
| 1511 | - <property name="dataSource" ref="egov.dataSource" /> | |
| 1512 | - <property name="strategy" ref="LeaderSchdulStrategy" /> | |
| 1513 | - <property name="blockSize" value="10"/> | |
| 1514 | - <property name="table" value="COMTECOPSEQ"/> | |
| 1515 | - <property name="tableName" value="LEADER_SCHDUL_ID"/> | |
| 1516 | - </bean> | |
| 1517 | - <bean name="LeaderSchdulStrategy" | |
| 1518 | - class="egovframework.rte.fdl.idgnr.impl.strategy.EgovIdGnrStrategyImpl"> | |
| 1519 | - <property name="prefix" value="LDSCHDUL_" /> | |
| 1520 | - <property name="cipers" value="11" /> | |
| 1521 | - <property name="fillChar" value="0" /> | |
| 1522 | - </bean> | |
| 1523 | - <!-- 간부일정 --> | |
| 1524 | - | |
| 1525 | - <!-- 부서업무함 --> | |
| 1526 | - <bean name="egovDeptJobBxIdGnrService" | |
| 1527 | - class="egovframework.rte.fdl.idgnr.impl.EgovTableIdGnrServiceImpl" | |
| 1528 | - destroy-method="destroy"> | |
| 1529 | - <property name="dataSource" ref="egov.dataSource" /> | |
| 1530 | - <property name="strategy" ref="DeptJobBxStrategy" /> | |
| 1531 | - <property name="blockSize" value="10"/> | |
| 1532 | - <property name="table" value="COMTECOPSEQ"/> | |
| 1533 | - <property name="tableName" value="DEPT_JOB_BX_ID"/> | |
| 1534 | - </bean> | |
| 1535 | - <bean name="DeptJobBxStrategy" | |
| 1536 | - class="egovframework.rte.fdl.idgnr.impl.strategy.EgovIdGnrStrategyImpl"> | |
| 1537 | - <property name="prefix" value="DX_" /> | |
| 1538 | - <property name="cipers" value="3" /> | |
| 1539 | - <property name="fillChar" value="0" /> | |
| 1540 | - </bean> | |
| 1541 | - <!-- 부서업무함 --> | |
| 1542 | - | |
| 1543 | - <!-- 부서업무 --> | |
| 1544 | - <bean name="egovDeptJobIdGnrService" | |
| 1545 | - class="egovframework.rte.fdl.idgnr.impl.EgovTableIdGnrServiceImpl" | |
| 1546 | - destroy-method="destroy"> | |
| 1547 | - <property name="dataSource" ref="egov.dataSource" /> | |
| 1548 | - <property name="strategy" ref="DeptJobStrategy" /> | |
| 1549 | - <property name="blockSize" value="10"/> | |
| 1550 | - <property name="table" value="COMTECOPSEQ"/> | |
| 1551 | - <property name="tableName" value="DEPT_JOB_ID"/> | |
| 1552 | - </bean> | |
| 1553 | - <bean name="DeptJobStrategy" | |
| 1554 | - class="egovframework.rte.fdl.idgnr.impl.strategy.EgovIdGnrStrategyImpl"> | |
| 1555 | - <property name="prefix" value="DEPTJOB_" /> | |
| 1556 | - <property name="cipers" value="12" /> | |
| 1557 | - <property name="fillChar" value="0" /> | |
| 1558 | - </bean> | |
| 1559 | - <!-- 부서업무 --> | |
| 1560 | - | |
| 1561 | - <!-- 주간/월간 보고 --> | |
| 1562 | - <bean name="egovWikMnthngReprtIdGnrService" | |
| 1563 | - class="egovframework.rte.fdl.idgnr.impl.EgovTableIdGnrServiceImpl" | |
| 1564 | - destroy-method="destroy"> | |
| 1565 | - <property name="dataSource" ref="egov.dataSource" /> | |
| 1566 | - <property name="strategy" ref="WikMnthngReprtStrategy" /> | |
| 1567 | - <property name="blockSize" value="10"/> | |
| 1568 | - <property name="table" value="COMTECOPSEQ"/> | |
| 1569 | - <property name="tableName" value="WIKMNTHNG_REPRT"/> | |
| 1570 | - </bean> | |
| 1571 | - <bean name="WikMnthngReprtStrategy" | |
| 1572 | - class="egovframework.rte.fdl.idgnr.impl.strategy.EgovIdGnrStrategyImpl"> | |
| 1573 | - <property name="prefix" value="WR" /> | |
| 1574 | - <property name="cipers" value="4" /> | |
| 1575 | - <property name="fillChar" value="0" /> | |
| 1576 | - </bean> | |
| 1577 | - <!-- 주간/월간 보고 --> | |
| 1578 | - | |
| 1579 | - <!-- 메모 할일 --> | |
| 1580 | - <bean name="egovMemoTodoIdGnrService" | |
| 1581 | - class="egovframework.rte.fdl.idgnr.impl.EgovTableIdGnrServiceImpl" | |
| 1582 | - destroy-method="destroy"> | |
| 1583 | - <property name="dataSource" ref="egov.dataSource" /> | |
| 1584 | - <property name="strategy" ref="MemoTodoStrategy" /> | |
| 1585 | - <property name="blockSize" value="10"/> | |
| 1586 | - <property name="table" value="COMTECOPSEQ"/> | |
| 1587 | - <property name="tableName" value="MEMO_TODO_ID"/> | |
| 1588 | - </bean> | |
| 1589 | - <bean name="MemoTodoStrategy" | |
| 1590 | - class="egovframework.rte.fdl.idgnr.impl.strategy.EgovIdGnrStrategyImpl"> | |
| 1591 | - <property name="prefix" value="MEMOTODO_" /> | |
| 1592 | - <property name="cipers" value="11" /> | |
| 1593 | - <property name="fillChar" value="0" /> | |
| 1594 | - </bean> | |
| 1595 | - <!-- 메모 할일 --> | |
| 1596 | - | |
| 1597 | - <!-- 메모 보고 --> | |
| 1598 | - <bean name="egovMemoReprtIdGnrService" | |
| 1599 | - class="egovframework.rte.fdl.idgnr.impl.EgovTableIdGnrServiceImpl" | |
| 1600 | - destroy-method="destroy"> | |
| 1601 | - <property name="dataSource" ref="egov.dataSource" /> | |
| 1602 | - <property name="strategy" ref="MemoReprtStrategy" /> | |
| 1603 | - <property name="blockSize" value="10"/> | |
| 1604 | - <property name="table" value="COMTECOPSEQ"/> | |
| 1605 | - <property name="tableName" value="MEMO_REPRT"/> | |
| 1606 | - </bean> | |
| 1607 | - <bean name="MemoReprtStrategy" | |
| 1608 | - class="egovframework.rte.fdl.idgnr.impl.strategy.EgovIdGnrStrategyImpl"> | |
| 1609 | - <property name="prefix" value="MR" /> | |
| 1610 | - <property name="cipers" value="4" /> | |
| 1611 | - <property name="fillChar" value="0" /> | |
| 1612 | - </bean> | |
| 1613 | - <!-- 메모 보고 --> | |
| 1614 | - | |
| 1615 | - <!-- 약식 결재 --> | |
| 1616 | - <bean name="egovInfrmlSanctnIdGnrService" | |
| 1617 | - class="egovframework.rte.fdl.idgnr.impl.EgovTableIdGnrServiceImpl" | |
| 1618 | - destroy-method="destroy"> | |
| 1619 | - <property name="dataSource" ref="egov.dataSource" /> | |
| 1620 | - <property name="strategy" ref="InfrmlSanctnStrategy" /> | |
| 1621 | - <property name="blockSize" value="10"/> | |
| 1622 | - <property name="table" value="COMTECOPSEQ"/> | |
| 1623 | - <property name="tableName" value="INFRML_SANCTN"/> | |
| 1624 | - </bean> | |
| 1625 | - <bean name="InfrmlSanctnStrategy" | |
| 1626 | - class="egovframework.rte.fdl.idgnr.impl.strategy.EgovIdGnrStrategyImpl"> | |
| 1627 | - <property name="prefix" value="SANCTN_" /> | |
| 1628 | - <property name="cipers" value="13" /> | |
| 1629 | - <property name="fillChar" value="0" /> | |
| 1630 | - </bean> | |
| 1631 | - <!-- 약식 결재 --> | |
| 1632 | - | |
| 1633 | - <!-- DB서비스모니터링 ID --> | |
| 1634 | - <bean name="egovDbMntrngLogIdGnrService" | |
| 1635 | - class="egovframework.rte.fdl.idgnr.impl.EgovTableIdGnrServiceImpl" | |
| 1636 | - destroy-method="destroy"> | |
| 1637 | - <property name="dataSource" ref="egov.dataSource" /> | |
| 1638 | - <property name="strategy" ref="dbMntrngLogIdStrategy" /> | |
| 1639 | - <property name="blockSize" value="10"/> | |
| 1640 | - <property name="table" value="COMTECOPSEQ"/> | |
| 1641 | - <property name="tableName" value="DB_MNTRNG_LOG_ID"/> | |
| 1642 | - </bean> | |
| 1643 | - | |
| 1644 | - <bean name="dbMntrngLogIdStrategy" | |
| 1645 | - class="egovframework.rte.fdl.idgnr.impl.strategy.EgovIdGnrStrategyImpl"> | |
| 1646 | - <property name="prefix" value="" /> | |
| 1647 | - <property name="cipers" value="20" /> | |
| 1648 | - <property name="fillChar" value="0" /> | |
| 1649 | - </bean> | |
| 1650 | - <!-- DB서비스모니터링 ID --> | |
| 1651 | - | |
| 1652 | - <!-- 송수신모니터링 ID --> | |
| 1653 | - <bean name="egovTrsmrcvMntrngLogIdGnrService" | |
| 1654 | - class="egovframework.rte.fdl.idgnr.impl.EgovTableIdGnrServiceImpl" | |
| 1655 | - destroy-method="destroy"> | |
| 1656 | - <property name="dataSource" ref="egov.dataSource" /> | |
| 1657 | - <property name="strategy" ref="trsmrcvMntrngLogIdStrategy" /> | |
| 1658 | - <property name="blockSize" value="10"/> | |
| 1659 | - <property name="table" value="COMTECOPSEQ"/> | |
| 1660 | - <property name="tableName" value="TR_MNTRNG_LOG_ID"/> | |
| 1661 | - </bean> | |
| 1662 | - | |
| 1663 | - <bean name="trsmrcvMntrngLogIdStrategy" | |
| 1664 | - class="egovframework.rte.fdl.idgnr.impl.strategy.EgovIdGnrStrategyImpl"> | |
| 1665 | - <property name="prefix" value="" /> | |
| 1666 | - <property name="cipers" value="20" /> | |
| 1667 | - <property name="fillChar" value="0" /> | |
| 1668 | - </bean> | |
| 1669 | - <!-- 송수신모니터링 ID --> | |
| 1670 | - | |
| 1671 | - <!-- 배치작업 ID --> | |
| 1672 | - <bean name="egovBatchOpertIdGnrService" | |
| 1673 | - class="egovframework.rte.fdl.idgnr.impl.EgovTableIdGnrServiceImpl" | |
| 1674 | - destroy-method="destroy"> | |
| 1675 | - <property name="dataSource" ref="egov.dataSource" /> | |
| 1676 | - <property name="strategy" ref="batchOpertIdStrategy" /> | |
| 1677 | - <property name="blockSize" value="10"/> | |
| 1678 | - <property name="table" value="COMTECOPSEQ"/> | |
| 1679 | - <property name="tableName" value="BATCH_OPERT_ID"/> | |
| 1680 | - </bean> | |
| 1681 | - <bean name="batchOpertIdStrategy" | |
| 1682 | - class="egovframework.rte.fdl.idgnr.impl.strategy.EgovIdGnrStrategyImpl"> | |
| 1683 | - <property name="prefix" value="BAT" /> | |
| 1684 | - <property name="cipers" value="17" /> | |
| 1685 | - <property name="fillChar" value="0" /> | |
| 1686 | - </bean> | |
| 1687 | - <!-- 배치작업 ID --> | |
| 1688 | - | |
| 1689 | - <!-- 배치스케줄 ID --> | |
| 1690 | - <bean name="egovBatchSchdulIdGnrService" | |
| 1691 | - class="egovframework.rte.fdl.idgnr.impl.EgovTableIdGnrServiceImpl" | |
| 1692 | - destroy-method="destroy"> | |
| 1693 | - <property name="dataSource" ref="egov.dataSource" /> | |
| 1694 | - <property name="strategy" ref="batchSchdulIdStrategy" /> | |
| 1695 | - <property name="blockSize" value="10"/> | |
| 1696 | - <property name="table" value="COMTECOPSEQ"/> | |
| 1697 | - <property name="tableName" value="BATCH_SCHDUL_ID"/> | |
| 1698 | - </bean> | |
| 1699 | - <bean name="batchSchdulIdStrategy" | |
| 1700 | - class="egovframework.rte.fdl.idgnr.impl.strategy.EgovIdGnrStrategyImpl"> | |
| 1701 | - <property name="prefix" value="BSC" /> | |
| 1702 | - <property name="cipers" value="17" /> | |
| 1703 | - <property name="fillChar" value="0" /> | |
| 1704 | - </bean> | |
| 1705 | - <!-- 배치스케줄 ID --> | |
| 1706 | - | |
| 1707 | - <!-- 배치결과 ID --> | |
| 1708 | - <bean name="egovBatchResultIdGnrService" | |
| 1709 | - class="egovframework.rte.fdl.idgnr.impl.EgovTableIdGnrServiceImpl" | |
| 1710 | - destroy-method="destroy"> | |
| 1711 | - <property name="dataSource" ref="egov.dataSource" /> | |
| 1712 | - <property name="strategy" ref="batchResultIdStrategy" /> | |
| 1713 | - <property name="blockSize" value="10"/> | |
| 1714 | - <property name="table" value="COMTECOPSEQ"/> | |
| 1715 | - <property name="tableName" value="BATCH_RESULT_ID"/> | |
| 1716 | - </bean> | |
| 1717 | - <bean name="batchResultIdStrategy" | |
| 1718 | - class="egovframework.rte.fdl.idgnr.impl.strategy.EgovIdGnrStrategyImpl"> | |
| 1719 | - <property name="prefix" value="BRT" /> | |
| 1720 | - <property name="cipers" value="17" /> | |
| 1721 | - <property name="fillChar" value="0" /> | |
| 1722 | - </bean> | |
| 1723 | - <!-- 배치결과 ID --> | |
| 1724 | - | |
| 1725 | - <!-- 파일시스템모니터링 ID --> | |
| 1726 | - <bean name="egovFileSysMntrngIdGnrService" | |
| 1727 | - class="egovframework.rte.fdl.idgnr.impl.EgovTableIdGnrServiceImpl" | |
| 1728 | - destroy-method="destroy"> | |
| 1729 | - <property name="dataSource" ref="egov.dataSource" /> | |
| 1730 | - <property name="strategy" ref="fileSysMntrngIdStrategy" /> | |
| 1731 | - <property name="blockSize" value="10"/> | |
| 1732 | - <property name="table" value="COMTECOPSEQ"/> | |
| 1733 | - <property name="tableName" value="FILESYS_MNTRNG"/> | |
| 1734 | - </bean> | |
| 1735 | - | |
| 1736 | - <bean name="fileSysMntrngIdStrategy" | |
| 1737 | - class="egovframework.rte.fdl.idgnr.impl.strategy.EgovIdGnrStrategyImpl"> | |
| 1738 | - <property name="prefix" value="FILESYS_" /> | |
| 1739 | - <property name="cipers" value="12" /> | |
| 1740 | - <property name="fillChar" value="0" /> | |
| 1741 | - </bean> | |
| 1742 | - <!-- 파일시스템모니터링 ID --> | |
| 1743 | - | |
| 1744 | - <!-- 네트워크서비스모니터링 로그 ID --> | |
| 1745 | - <bean name="egovNtwrkSvcMntrngLogIdGnrService" | |
| 1746 | - class="egovframework.rte.fdl.idgnr.impl.EgovTableIdGnrServiceImpl" | |
| 1747 | - destroy-method="destroy"> | |
| 1748 | - <property name="dataSource" ref="egov.dataSource" /> | |
| 1749 | - <property name="strategy" ref="ntwrkSvcMntrngLogIdStrategy" /> | |
| 1750 | - <property name="blockSize" value="10"/> | |
| 1751 | - <property name="table" value="COMTECOPSEQ"/> | |
| 1752 | - <property name="tableName" value="NTWRKSVC_LOGID"/> | |
| 1753 | - </bean> | |
| 1754 | - | |
| 1755 | - <bean name="ntwrkSvcMntrngLogIdStrategy" | |
| 1756 | - class="egovframework.rte.fdl.idgnr.impl.strategy.EgovIdGnrStrategyImpl"> | |
| 1757 | - <property name="prefix" value="" /> | |
| 1758 | - <property name="cipers" value="20" /> | |
| 1759 | - <property name="fillChar" value="0" /> | |
| 1760 | - </bean> | |
| 1761 | - <!-- 네트워크서비스모니터링 로그 ID --> | |
| 1762 | - | |
| 1763 | - <!-- 파일시스템모니터링 로그 ID --> | |
| 1764 | - <bean name="egovFileSysMntrngLogIdGnrService" | |
| 1765 | - class="egovframework.rte.fdl.idgnr.impl.EgovTableIdGnrServiceImpl" | |
| 1766 | - destroy-method="destroy"> | |
| 1767 | - <property name="dataSource" ref="egov.dataSource" /> | |
| 1768 | - <property name="strategy" ref="fileSysMntrngLogIdStrategy" /> | |
| 1769 | - <property name="blockSize" value="10"/> | |
| 1770 | - <property name="table" value="COMTECOPSEQ"/> | |
| 1771 | - <property name="tableName" value="FILESYS_LOGID"/> | |
| 1772 | - </bean> | |
| 1773 | - | |
| 1774 | - <bean name="fileSysMntrngLogIdStrategy" | |
| 1775 | - class="egovframework.rte.fdl.idgnr.impl.strategy.EgovIdGnrStrategyImpl"> | |
| 1776 | - <property name="prefix" value="" /> | |
| 1777 | - <property name="cipers" value="20" /> | |
| 1778 | - <property name="fillChar" value="0" /> | |
| 1779 | - </bean> | |
| 1780 | - <!-- 파일시스템모니터링 로그 ID --> | |
| 1781 | - | |
| 1782 | - <!-- 프록시서비스 ID --> | |
| 1783 | - <bean name="egovProxySvcIdGnrService" | |
| 1784 | - class="egovframework.rte.fdl.idgnr.impl.EgovTableIdGnrServiceImpl" | |
| 1785 | - destroy-method="destroy"> | |
| 1786 | - <property name="dataSource" ref="egov.dataSource" /> | |
| 1787 | - <property name="strategy" ref="ProxySvcIdStrategy" /> | |
| 1788 | - <property name="blockSize" value="10"/> | |
| 1789 | - <property name="table" value="COMTECOPSEQ"/> | |
| 1790 | - <property name="tableName" value="PROXYSVC_ID"/> | |
| 1791 | - </bean> | |
| 1792 | - | |
| 1793 | - <bean name="ProxySvcIdStrategy" | |
| 1794 | - class="egovframework.rte.fdl.idgnr.impl.strategy.EgovIdGnrStrategyImpl"> | |
| 1795 | - <property name="prefix" value="PXY_" /> | |
| 1796 | - <property name="cipers" value="16" /> | |
| 1797 | - <property name="fillChar" value="0" /> | |
| 1798 | - </bean> | |
| 1799 | - <!-- 프록시서비스 ID --> | |
| 1800 | - | |
| 1801 | - <!-- 프록시Log ID --> | |
| 1802 | - <bean name="egovProxyLogIdGnrService" | |
| 1803 | - class="egovframework.rte.fdl.idgnr.impl.EgovTableIdGnrServiceImpl" | |
| 1804 | - destroy-method="destroy"> | |
| 1805 | - <property name="dataSource" ref="egov.dataSource" /> | |
| 1806 | - <property name="strategy" ref="ProxyLogIdStrategy" /> | |
| 1807 | - <property name="blockSize" value="10"/> | |
| 1808 | - <property name="table" value="COMTECOPSEQ"/> | |
| 1809 | - <property name="tableName" value="PROXYLOG_ID"/> | |
| 1810 | - </bean> | |
| 1811 | - | |
| 1812 | - <bean name="ProxyLogIdStrategy" | |
| 1813 | - class="egovframework.rte.fdl.idgnr.impl.strategy.EgovIdGnrStrategyImpl"> | |
| 1814 | - <property name="prefix" value="PLG_" /> | |
| 1815 | - <property name="cipers" value="16" /> | |
| 1816 | - <property name="fillChar" value="0" /> | |
| 1817 | - </bean> | |
| 1818 | - <!-- 프록시Log ID --> | |
| 1819 | - | |
| 1820 | - <!-- knoManage... START--> | |
| 1821 | - <bean name="egovDamManageIdGnrService" | |
| 1822 | - class="egovframework.rte.fdl.idgnr.impl.EgovTableIdGnrServiceImpl" | |
| 1823 | - destroy-method="destroy"> | |
| 1824 | - <property name="dataSource" ref="egov.dataSource" /> | |
| 1825 | - <property name="strategy" ref="damManageStrategy" /> | |
| 1826 | - <property name="blockSize" value="10"/> | |
| 1827 | - <property name="table" value="COMTECOPSEQ"/> | |
| 1828 | - <property name="tableName" value="DAM_ID"/> | |
| 1829 | - </bean> | |
| 1830 | - | |
| 1831 | - <bean name="damManageStrategy" | |
| 1832 | - class="egovframework.rte.fdl.idgnr.impl.strategy.EgovIdGnrStrategyImpl"> | |
| 1833 | - <property name="prefix" value="DMID_" /> | |
| 1834 | - <property name="cipers" value="15" /> | |
| 1835 | - <property name="fillChar" value="0" /> | |
| 1836 | - </bean> | |
| 1837 | - <!-- NewsManage... END--> | |
| 1838 | - | |
| 1839 | - <!-- 백업작업 ID --> | |
| 1840 | - <bean name="egovBackupOpertIdGnrService" | |
| 1841 | - class="egovframework.rte.fdl.idgnr.impl.EgovTableIdGnrServiceImpl" | |
| 1842 | - destroy-method="destroy"> | |
| 1843 | - <property name="dataSource" ref="egov.dataSource" /> | |
| 1844 | - <property name="strategy" ref="backupOpertIdStrategy" /> | |
| 1845 | - <property name="blockSize" value="10"/> | |
| 1846 | - <property name="table" value="COMTECOPSEQ"/> | |
| 1847 | - <property name="tableName" value="BACKUP_OPERT_ID"/> | |
| 1848 | - </bean> | |
| 1849 | - <bean name="backupOpertIdStrategy" | |
| 1850 | - class="egovframework.rte.fdl.idgnr.impl.strategy.EgovIdGnrStrategyImpl"> | |
| 1851 | - <property name="prefix" value="BAK" /> | |
| 1852 | - <property name="cipers" value="17" /> | |
| 1853 | - <property name="fillChar" value="0" /> | |
| 1854 | - </bean> | |
| 1855 | - <!-- 백업작업 ID --> | |
| 1856 | - | |
| 1857 | - <!-- 백업결과 ID --> | |
| 1858 | - <bean name="egovBackupResultIdGnrService" | |
| 1859 | - class="egovframework.rte.fdl.idgnr.impl.EgovTableIdGnrServiceImpl" | |
| 1860 | - destroy-method="destroy"> | |
| 1861 | - <property name="dataSource" ref="egov.dataSource" /> | |
| 1862 | - <property name="strategy" ref="backupResultIdStrategy" /> | |
| 1863 | - <property name="blockSize" value="10"/> | |
| 1864 | - <property name="table" value="COMTECOPSEQ"/> | |
| 1865 | - <property name="tableName" value="BACKUP_RESULT_ID"/> | |
| 1866 | - </bean> | |
| 1867 | - <bean name="backupResultIdStrategy" | |
| 1868 | - class="egovframework.rte.fdl.idgnr.impl.strategy.EgovIdGnrStrategyImpl"> | |
| 1869 | - <property name="prefix" value="BRT" /> | |
| 1870 | - <property name="cipers" value="17" /> | |
| 1871 | - <property name="fillChar" value="0" /> | |
| 1872 | - </bean> | |
| 1873 | - <!-- 백업결과 ID --> | |
| 1874 | - | |
| 1875 | - <!-- 서버자원 모니터링 Log ID --> | |
| 1876 | - <bean name="egovServerResrceMntrngLogIdGnrService" | |
| 1877 | - class="egovframework.rte.fdl.idgnr.impl.EgovTableIdGnrServiceImpl" | |
| 1878 | - destroy-method="destroy"> | |
| 1879 | - <property name="dataSource" ref="egov.dataSource" /> | |
| 1880 | - <property name="strategy" ref="ServerResrceMntrngLogIdStrategy" /> | |
| 1881 | - <property name="blockSize" value="10"/> | |
| 1882 | - <property name="table" value="COMTECOPSEQ"/> | |
| 1883 | - <property name="tableName" value="SVCRESMONTLOG_ID"/> | |
| 1884 | - </bean> | |
| 1885 | - | |
| 1886 | - <bean name="ServerResrceMntrngLogIdStrategy" | |
| 1887 | - class="egovframework.rte.fdl.idgnr.impl.strategy.EgovIdGnrStrategyImpl"> | |
| 1888 | - <property name="prefix" value="LOG_" /> | |
| 1889 | - <property name="cipers" value="16" /> | |
| 1890 | - <property name="fillChar" value="0" /> | |
| 1891 | - </bean> | |
| 1892 | - <!-- 서버자원 모니터링 ID --> | |
| 1893 | - | |
| 1894 | - <!-- HttpMon... START--> | |
| 1895 | - <bean name="egovHttpManageIdGnrService" | |
| 1896 | - class="egovframework.rte.fdl.idgnr.impl.EgovTableIdGnrServiceImpl" | |
| 1897 | - destroy-method="destroy"> | |
| 1898 | - <property name="dataSource" ref="egov.dataSource" /> | |
| 1899 | - <property name="strategy" ref="httpManageStrategy" /> | |
| 1900 | - <property name="blockSize" value="10"/> | |
| 1901 | - <property name="table" value="COMTECOPSEQ"/> | |
| 1902 | - <property name="tableName" value="HTTP_ID"/> | |
| 1903 | - </bean> | |
| 1904 | - | |
| 1905 | - <bean name="httpManageStrategy" | |
| 1906 | - class="egovframework.rte.fdl.idgnr.impl.strategy.EgovIdGnrStrategyImpl"> | |
| 1907 | - <property name="prefix" value="HTTP_" /> | |
| 1908 | - <property name="cipers" value="15" /> | |
| 1909 | - <property name="fillChar" value="0" /> | |
| 1910 | - </bean> | |
| 1911 | - <!-- HttpMon... END--> | |
| 1912 | - | |
| 1913 | - <!-- HttpMonLog... START--> | |
| 1914 | - <bean name="egovHttpLogManageIdGnrService" | |
| 1915 | - class="egovframework.rte.fdl.idgnr.impl.EgovTableIdGnrServiceImpl" | |
| 1916 | - destroy-method="destroy"> | |
| 1917 | - <property name="dataSource" ref="egov.dataSource" /> | |
| 1918 | - <property name="strategy" ref="httLManageStrategy" /> | |
| 1919 | - <property name="blockSize" value="10"/> | |
| 1920 | - <property name="table" value="COMTECOPSEQ"/> | |
| 1921 | - <property name="tableName" value="HTTL_ID"/> | |
| 1922 | - </bean> | |
| 1923 | - | |
| 1924 | - <bean name="httLManageStrategy" | |
| 1925 | - class="egovframework.rte.fdl.idgnr.impl.strategy.EgovIdGnrStrategyImpl"> | |
| 1926 | - <property name="prefix" value="HTTL_" /> | |
| 1927 | - <property name="cipers" value="15" /> | |
| 1928 | - <property name="fillChar" value="0" /> | |
| 1929 | - </bean> | |
| 1930 | - <!-- HttpMonLog... END--> | |
| 1931 | - | |
| 1932 | - <!-- ProcessMon... START--> | |
| 1933 | - <bean name="egovProcessMonIdGnrService" | |
| 1934 | - class="egovframework.rte.fdl.idgnr.impl.EgovTableIdGnrServiceImpl" | |
| 1935 | - destroy-method="destroy"> | |
| 1936 | - <property name="dataSource" ref="egov.dataSource" /> | |
| 1937 | - <property name="strategy" ref="procManageStrategy" /> | |
| 1938 | - <property name="blockSize" value="10"/> | |
| 1939 | - <property name="table" value="COMTECOPSEQ"/> | |
| 1940 | - <property name="tableName" value="PROC_ID"/> | |
| 1941 | - </bean> | |
| 1942 | - | |
| 1943 | - <bean name="procManageStrategy" | |
| 1944 | - class="egovframework.rte.fdl.idgnr.impl.strategy.EgovIdGnrStrategyImpl"> | |
| 1945 | - <property name="prefix" value="PROC_" /> | |
| 1946 | - <property name="cipers" value="15" /> | |
| 1947 | - <property name="fillChar" value="0" /> | |
| 1948 | - </bean> | |
| 1949 | - <!-- ProcessMon... END--> | |
| 1950 | - | |
| 1951 | - <!-- ProcessMonLog... START--> | |
| 1952 | - <bean name="egovProcessMonLogIdGnrService" | |
| 1953 | - class="egovframework.rte.fdl.idgnr.impl.EgovTableIdGnrServiceImpl" | |
| 1954 | - destroy-method="destroy"> | |
| 1955 | - <property name="dataSource" ref="egov.dataSource" /> | |
| 1956 | - <property name="strategy" ref="prolManageStrategy" /> | |
| 1957 | - <property name="blockSize" value="10"/> | |
| 1958 | - <property name="table" value="COMTECOPSEQ"/> | |
| 1959 | - <property name="tableName" value="PROL_ID"/> | |
| 1960 | - </bean> | |
| 1961 | - | |
| 1962 | - <bean name="prolManageStrategy" | |
| 1963 | - class="egovframework.rte.fdl.idgnr.impl.strategy.EgovIdGnrStrategyImpl"> | |
| 1964 | - <property name="prefix" value="PROL_" /> | |
| 1965 | - <property name="cipers" value="15" /> | |
| 1966 | - <property name="fillChar" value="0" /> | |
| 1967 | - </bean> | |
| 1968 | - <!-- ProcessMonLog... END--> | |
| 1969 | - | |
| 1970 | - <!-- 팝업존 ID Generation Strategy Config --> | |
| 1971 | - <bean name="egovPopupZoneIdGnrService" | |
| 1972 | - class="egovframework.rte.fdl.idgnr.impl.EgovTableIdGnrServiceImpl" | |
| 1973 | - destroy-method="destroy"> | |
| 1974 | - <property name="dataSource" ref="dataSource" /> | |
| 1975 | - <property name="strategy" ref="popupZoneStrategy" /> | |
| 1976 | - <property name="blockSize" value="10"/> | |
| 1977 | - <property name="table" value="IDS"/> | |
| 1978 | - <property name="tableName" value="POZ_ID"/> | |
| 1979 | - </bean> | |
| 1980 | - <bean name="popupZoneStrategy" | |
| 1981 | - class="egovframework.rte.fdl.idgnr.impl.strategy.EgovIdGnrStrategyImpl"> | |
| 1982 | - <property name="prefix" value="POZ_" /> | |
| 1983 | - <property name="cipers" value="12" /> | |
| 1984 | - <property name="fillChar" value="0" /> | |
| 1985 | - </bean> | |
| 1986 | - | |
| 1987 | - <!-- 알림이미지 ID Generation Strategy Config --> | |
| 1988 | - <bean name="egovMainZoneIdGnrService" | |
| 1989 | - class="egovframework.rte.fdl.idgnr.impl.EgovTableIdGnrServiceImpl" | |
| 1990 | - destroy-method="destroy"> | |
| 1991 | - <property name="dataSource" ref="dataSource" /> | |
| 1992 | - <property name="strategy" ref="mainZoneStrategy" /> | |
| 1993 | - <property name="blockSize" value="10"/> | |
| 1994 | - <property name="table" value="IDS"/> | |
| 1995 | - <property name="tableName" value="MAZ_ID"/> | |
| 1996 | - </bean> | |
| 1997 | - <!-- 메인상단 이미지 ID Generation Strategy Config --> | |
| 1998 | - <bean name="mainZoneStrategy" | |
| 1999 | - class="egovframework.rte.fdl.idgnr.impl.strategy.EgovIdGnrStrategyImpl"> | |
| 2000 | - <property name="prefix" value="MAZ_" /> | |
| 2001 | - <property name="cipers" value="12" /> | |
| 2002 | - <property name="fillChar" value="0" /> | |
| 2003 | - </bean> | |
| 2004 | - | |
| 2005 | - | |
| 2006 | - <!-- 컨텐츠 관리 ID Generation Strategy Config --> | |
| 2007 | - <bean name="egovCntManageIdGnrService" | |
| 2008 | - class="egovframework.rte.fdl.idgnr.impl.EgovTableIdGnrServiceImpl" | |
| 2009 | - destroy-method="destroy"> | |
| 2010 | - <property name="dataSource" ref="dataSource" /> | |
| 2011 | - <property name="strategy" ref="cntManageStrategy" /> | |
| 2012 | - <property name="blockSize" value="10"/> | |
| 2013 | - <property name="table" value="IDS"/> | |
| 2014 | - <property name="tableName" value="CNT_ID"/> | |
| 2015 | - </bean> | |
| 2016 | - <!-- 컨텐츠 관리 ID Generation Strategy Config --> | |
| 2017 | - <bean name="cntManageStrategy" | |
| 2018 | - class="egovframework.rte.fdl.idgnr.impl.strategy.EgovIdGnrStrategyImpl"> | |
| 2019 | - <property name="prefix" value="CNT_" /> | |
| 2020 | - <property name="cipers" value="12" /> | |
| 2021 | - <property name="fillChar" value="0" /> | |
| 2022 | - </bean> | |
| 2023 | - | |
| 2024 | - <!-- 컨텐츠 관리 ID Generation Strategy Config --> | |
| 2025 | - <bean name="egovCntDetailIdGnrService" | |
| 2026 | - class="egovframework.rte.fdl.idgnr.impl.EgovTableIdGnrServiceImpl" | |
| 2027 | - destroy-method="destroy"> | |
| 2028 | - <property name="dataSource" ref="dataSource" /> | |
| 2029 | - <property name="strategy" ref="cntDetailStrategy" /> | |
| 2030 | - <property name="blockSize" value="10"/> | |
| 2031 | - <property name="table" value="IDS"/> | |
| 2032 | - <property name="tableName" value="CNTDT_ID"/> | |
| 2033 | - </bean> | |
| 2034 | - <!-- 컨텐츠 관리 ID Generation Strategy Config --> | |
| 2035 | - <bean name="cntDetailStrategy" | |
| 2036 | - class="egovframework.rte.fdl.idgnr.impl.strategy.EgovIdGnrStrategyImpl"> | |
| 2037 | - <property name="prefix" value="CNTDT_" /> | |
| 2038 | - <property name="cipers" value="10" /> | |
| 2039 | - <property name="fillChar" value="0" /> | |
| 2040 | - </bean> | |
| 2041 | - | |
| 2042 | - <bean name="IpGroupPolicyIdGnrService" | |
| 2043 | - class="egovframework.rte.fdl.idgnr.impl.EgovTableIdGnrServiceImpl" | |
| 2044 | - destroy-method="destroy"> | |
| 2045 | - <property name="dataSource" ref="dataSource" /> | |
| 2046 | - <property name="strategy" ref="IpGroupPolicyStrategy" /> | |
| 2047 | - <property name="blockSize" value="10"/> | |
| 2048 | - <property name="table" value="IDS"/> | |
| 2049 | - <property name="tableName" value="IP_GROUP_ID"/> | |
| 2050 | - </bean> | |
| 2051 | - <bean name="IpGroupPolicyStrategy" | |
| 2052 | - class="egovframework.rte.fdl.idgnr.impl.strategy.EgovIdGnrStrategyImpl"> | |
| 2053 | - <property name="prefix" value="IP_GRP_" /> | |
| 2054 | - <property name="cipers" value="9" /> | |
| 2055 | - <property name="fillChar" value="0" /> | |
| 2056 | - </bean> | |
| 2057 | - | |
| 2058 | - | |
| 2059 | - <bean name="egovMenuIdGnrService" | |
| 2060 | - class="egovframework.rte.fdl.idgnr.impl.EgovTableIdGnrServiceImpl" | |
| 2061 | - destroy-method="destroy"> | |
| 2062 | - <property name="dataSource" ref="dataSource" /> | |
| 2063 | - <property name="strategy" ref="menuIdStrategy" /> | |
| 2064 | - <property name="blockSize" value="10"/> | |
| 2065 | - <property name="table" value="IDS"/> | |
| 2066 | - <property name="tableName" value="MENU_ID"/> | |
| 2067 | - </bean> | |
| 2068 | - <bean name="menuIdStrategy" | |
| 2069 | - class="egovframework.rte.fdl.idgnr.impl.strategy.EgovIdGnrStrategyImpl"> | |
| 2070 | - <property name="prefix" value="MENUID_" /> | |
| 2071 | - <property name="cipers" value="10" /> | |
| 2072 | - <property name="fillChar" value="0" /> | |
| 2073 | - </bean> | |
| 2074 | - | |
| 2075 | - <!-- 관리자 접속로그 ID Generation Config--> | |
| 2076 | - <bean name="egovAdminLogIdGnrService" | |
| 2077 | - class="egovframework.rte.fdl.idgnr.impl.EgovTableIdGnrServiceImpl" | |
| 2078 | - destroy-method="destroy"> | |
| 2079 | - <property name="dataSource" ref="dataSource" /> | |
| 2080 | - <property name="strategy" ref="AdminLogStrategy" /> | |
| 2081 | - <property name="blockSize" value="10"/> | |
| 2082 | - <property name="table" value="IDS"/> | |
| 2083 | - <property name="tableName" value="ADMINLOG_ID"/> | |
| 2084 | - </bean> | |
| 2085 | - <!-- 관리자 접속로그 ID Generation Strategy Config --> | |
| 2086 | - <bean name="AdminLogStrategy" | |
| 2087 | - class="egovframework.rte.fdl.idgnr.impl.strategy.EgovIdGnrStrategyImpl"> | |
| 2088 | - <property name="prefix" value="ADMINLOG_" /> | |
| 2089 | - <property name="cipers" value="16" /> | |
| 2090 | - <property name="fillChar" value="0" /> | |
| 2091 | - </bean> | |
| 2092 | - | |
| 2093 | - <!-- 첨부파일 ID Generation Config--> | |
| 2094 | - <bean name="egovFmsFileGnrService" | |
| 2095 | - class="egovframework.rte.fdl.idgnr.impl.EgovTableIdGnrServiceImpl" | |
| 2096 | - destroy-method="destroy"> | |
| 2097 | - <property name="dataSource" ref="dataSource" /> | |
| 2098 | - <property name="strategy" ref="FmsFileStrategy" /> | |
| 2099 | - <property name="blockSize" value="10"/> | |
| 2100 | - <property name="table" value="IDS"/> | |
| 2101 | - <property name="tableName" value="FMS_ID"/> | |
| 2102 | - </bean> | |
| 2103 | - <!-- 관리자 접속로그 ID Generation Strategy Config --> | |
| 2104 | - <bean name="FmsFileStrategy" | |
| 2105 | - class="egovframework.rte.fdl.idgnr.impl.strategy.EgovIdGnrStrategyImpl"> | |
| 2106 | - <property name="prefix" value="FMSID_" /> | |
| 2107 | - <property name="cipers" value="10" /> | |
| 2108 | - <property name="fillChar" value="0" /> | |
| 2109 | - </bean> | |
| 2110 | - | |
| 2111 | - <!-- 게시판 댓글 NO Generation Config--> | |
| 2112 | - <bean name="egovAnswerNoGnrService" class="egovframework.rte.fdl.idgnr.impl.EgovTableIdGnrServiceImpl" destroy-method="destroy"> | |
| 2113 | - <property name="dataSource" ref="dataSource" /> | |
| 2114 | - <property name="strategy" ref="answerNoStrategy" /> | |
| 2115 | - <property name="blockSize" value="10"/> | |
| 2116 | - <property name="table" value="IDS"/> | |
| 2117 | - <property name="tableName" value="ANSWER_NO"/> | |
| 2118 | - </bean> | |
| 2119 | - <bean name="answerNoStrategy" class="egovframework.rte.fdl.idgnr.impl.strategy.EgovIdGnrStrategyImpl"> | |
| 2120 | - <property name="cipers" value="20" /> | |
| 2121 | - </bean> | |
| 2122 | - | |
| 2123 | - <!-- 컴퓨터 IP Generation Config--> | |
| 2124 | - <bean name="egovComIpGnrService" | |
| 2125 | - class="egovframework.rte.fdl.idgnr.impl.EgovTableIdGnrServiceImpl" | |
| 2126 | - destroy-method="destroy"> | |
| 2127 | - <property name="dataSource" ref="dataSource" /> | |
| 2128 | - <property name="strategy" ref="ComIpStrategy" /> | |
| 2129 | - <property name="blockSize" value="10"/> | |
| 2130 | - <property name="table" value="IDS"/> | |
| 2131 | - <property name="tableName" value="COMIP_ID"/> | |
| 2132 | - </bean> | |
| 2133 | - <!-- 관리자 접속로그 ID Generation Strategy Config --> | |
| 2134 | - <bean name="ComIpStrategy" | |
| 2135 | - class="egovframework.rte.fdl.idgnr.impl.strategy.EgovIdGnrStrategyImpl"> | |
| 2136 | - <property name="prefix" value="COMIP_" /> | |
| 2137 | - <property name="cipers" value="10" /> | |
| 2138 | - <property name="fillChar" value="0" /> | |
| 2139 | - </bean> | |
| 2140 | - | |
| 2141 | - <!-- 스케줄 관리 --> | |
| 2142 | - <bean name="egovItsmSchdlrGnrService" | |
| 2143 | - class="egovframework.rte.fdl.idgnr.impl.EgovTableIdGnrServiceImpl" | |
| 2144 | - destroy-method="destroy"> | |
| 2145 | - <property name="dataSource" ref="dataSource" /> | |
| 2146 | - <property name="strategy" ref="ItsmSchdlrStrategy" /> | |
| 2147 | - <property name="blockSize" value="10"/> | |
| 2148 | - <property name="table" value="IDS"/> | |
| 2149 | - <property name="tableName" value="SCHDLR_ID"/> | |
| 2150 | - </bean> | |
| 2151 | - <!-- 스케줄 관리 ID Generation Strategy Config --> | |
| 2152 | - <bean name="ItsmSchdlrStrategy" | |
| 2153 | - class="egovframework.rte.fdl.idgnr.impl.strategy.EgovIdGnrStrategyImpl"> | |
| 2154 | - <property name="prefix" value="SCHDLR_" /> | |
| 2155 | - <property name="cipers" value="13" /> | |
| 2156 | - <property name="fillChar" value="0" /> | |
| 2157 | - </bean> | |
| 2158 | - | |
| 2159 | - <!-- 스케줄 환경 관리 --> | |
| 2160 | - <bean name="egovItsmSchdlrConfigGnrService" | |
| 2161 | - class="egovframework.rte.fdl.idgnr.impl.EgovTableIdGnrServiceImpl" | |
| 2162 | - destroy-method="destroy"> | |
| 2163 | - <property name="dataSource" ref="dataSource" /> | |
| 2164 | - <property name="strategy" ref="ItsmSchdlrConfgiStrategy" /> | |
| 2165 | - <property name="blockSize" value="10"/> | |
| 2166 | - <property name="table" value="IDS"/> | |
| 2167 | - <property name="tableName" value="SCH_CFG_ID"/> | |
| 2168 | - </bean> | |
| 2169 | - <!-- 스케줄 환경 관리 ID Generation Strategy Config --> | |
| 2170 | - <bean name="ItsmSchdlrConfgiStrategy" | |
| 2171 | - class="egovframework.rte.fdl.idgnr.impl.strategy.EgovIdGnrStrategyImpl"> | |
| 2172 | - <property name="prefix" value="SCH_CFG_" /> | |
| 2173 | - <property name="cipers" value="12" /> | |
| 2174 | - <property name="fillChar" value="0" /> | |
| 2175 | - </bean> | |
| 2176 | - | |
| 2177 | - | |
| 2178 | - <!-- 스케줄 공유 --> | |
| 2179 | - <bean name="egovItsmSchdlrShareIdGnrService" | |
| 2180 | - class="egovframework.rte.fdl.idgnr.impl.EgovTableIdGnrServiceImpl" | |
| 2181 | - destroy-method="destroy"> | |
| 2182 | - <property name="dataSource" ref="dataSource" /> | |
| 2183 | - <property name="strategy" ref="ItsmSchdlrShareIdStrategy" /> | |
| 2184 | - <property name="blockSize" value="10"/> | |
| 2185 | - <property name="table" value="IDS"/> | |
| 2186 | - <property name="tableName" value="SCHDLR_SHARE_ID"/> | |
| 2187 | - </bean> | |
| 2188 | - <!-- 스케줄 공유 --> | |
| 2189 | - <bean name="ItsmSchdlrShareIdStrategy" | |
| 2190 | - class="egovframework.rte.fdl.idgnr.impl.strategy.EgovIdGnrStrategyImpl"> | |
| 2191 | - <property name="prefix" value="SCHSHA_" /> | |
| 2192 | - <property name="cipers" value="13" /> | |
| 2193 | - <property name="fillChar" value="0" /> | |
| 2194 | - </bean> | |
| 2195 | - | |
| 2196 | - <!-- 직원 정보 --> | |
| 2197 | - <bean name="egovItsmStaffIdGnrService" | |
| 2198 | - class="egovframework.rte.fdl.idgnr.impl.EgovTableIdGnrServiceImpl" | |
| 2199 | - destroy-method="destroy"> | |
| 2200 | - <property name="dataSource" ref="dataSource" /> | |
| 2201 | - <property name="strategy" ref="ItsmStaffIdStrategy" /> | |
| 2202 | - <property name="blockSize" value="10"/> | |
| 2203 | - <property name="table" value="IDS"/> | |
| 2204 | - <property name="tableName" value="STAFF_ID"/> | |
| 2205 | - </bean> | |
| 2206 | - <!-- 직원 정보 --> | |
| 2207 | - <bean name="ItsmStaffIdStrategy" | |
| 2208 | - class="egovframework.rte.fdl.idgnr.impl.strategy.EgovIdGnrStrategyImpl"> | |
| 2209 | - <property name="prefix" value="STAFFID_" /> | |
| 2210 | - <property name="cipers" value="12" /> | |
| 2211 | - <property name="fillChar" value="0" /> | |
| 2212 | - </bean> | |
| 2213 | - | |
| 2214 | - | |
| 2215 | - <!-- 결제 신청 --> | |
| 2216 | - <bean name="egovSignGnrService" | |
| 2217 | - class="egovframework.rte.fdl.idgnr.impl.EgovTableIdGnrServiceImpl" | |
| 2218 | - destroy-method="destroy"> | |
| 2219 | - <property name="dataSource" ref="dataSource" /> | |
| 2220 | - <property name="strategy" ref="SignStrategy" /> | |
| 2221 | - <property name="blockSize" value="10"/> | |
| 2222 | - <property name="table" value="IDS"/> | |
| 2223 | - <property name="tableName" value="SIGN_ID"/> | |
| 2224 | - </bean> | |
| 2225 | - <!-- 결제 신청 --> | |
| 2226 | - <bean name="SignStrategy" | |
| 2227 | - class="egovframework.rte.fdl.idgnr.impl.strategy.EgovIdGnrStrategyImpl"> | |
| 2228 | - <property name="prefix" value="SIGNID_" /> | |
| 2229 | - <property name="cipers" value="13" /> | |
| 2230 | - <property name="fillChar" value="0" /> | |
| 2231 | - </bean> | |
| 2232 | - | |
| 2233 | - <!-- 관리자로그설정관리 --> | |
| 2234 | - <bean name="egovAdmotGnrService" | |
| 2235 | - class="egovframework.rte.fdl.idgnr.impl.EgovTableIdGnrServiceImpl" | |
| 2236 | - destroy-method="destroy"> | |
| 2237 | - <property name="dataSource" ref="dataSource" /> | |
| 2238 | - <property name="strategy" ref="AdmotStrategy" /> | |
| 2239 | - <property name="blockSize" value="10"/> | |
| 2240 | - <property name="table" value="IDS"/> | |
| 2241 | - <property name="tableName" value="ADMOT_ID"/> | |
| 2242 | - </bean> | |
| 2243 | - <!-- 관리자로그설정관리 --> | |
| 2244 | - <bean name="AdmotStrategy" | |
| 2245 | - class="egovframework.rte.fdl.idgnr.impl.strategy.EgovIdGnrStrategyImpl"> | |
| 2246 | - <property name="prefix" value="ADMOTID_" /> | |
| 2247 | - <property name="cipers" value="12" /> | |
| 2248 | - <property name="fillChar" value="0" /> | |
| 2249 | - </bean> | |
| 2250 | - | |
| 2251 | - <!-- 금지어 ID Generation Strategy Config --> | |
| 2252 | - <bean name="egovProhiIdGnrService" | |
| 2253 | - class="egovframework.rte.fdl.idgnr.impl.EgovTableIdGnrServiceImpl" | |
| 2254 | - destroy-method="destroy"> | |
| 2255 | - <property name="dataSource" ref="dataSource" /> | |
| 2256 | - <property name="strategy" ref="prohiStrategy" /> | |
| 2257 | - <property name="blockSize" value="12"/> | |
| 2258 | - <property name="table" value="IDS"/> | |
| 2259 | - <property name="tableName" value="PRO_ID"/> | |
| 2260 | - </bean> | |
| 2261 | - <bean name="prohiStrategy" | |
| 2262 | - class="egovframework.rte.fdl.idgnr.impl.strategy.EgovIdGnrStrategyImpl"> | |
| 2263 | - <property name="prefix" value="PRO_" /> | |
| 2264 | - <property name="cipers" value="8" /> | |
| 2265 | - <property name="fillChar" value="0" /> | |
| 2266 | - </bean> | |
| 2267 | - | |
| 2268 | - <!-- 스팸 문구 ID Generation Strategy Config --> | |
| 2269 | - <bean name="egovSpamKeywordIdGnrService" | |
| 2270 | - class="egovframework.rte.fdl.idgnr.impl.EgovTableIdGnrServiceImpl" | |
| 2271 | - destroy-method="destroy"> | |
| 2272 | - <property name="dataSource" ref="dataSource" /> | |
| 2273 | - <property name="strategy" ref="spamKeywordStrategy" /> | |
| 2274 | - <property name="blockSize" value="12"/> | |
| 2275 | - <property name="table" value="IDS"/> | |
| 2276 | - <property name="tableName" value="SPAM_ID"/> | |
| 2277 | - </bean> | |
| 2278 | - <bean name="spamKeywordStrategy" | |
| 2279 | - class="egovframework.rte.fdl.idgnr.impl.strategy.EgovIdGnrStrategyImpl"> | |
| 2280 | - <property name="prefix" value="SPAM_" /> | |
| 2281 | - <property name="cipers" value="8" /> | |
| 2282 | - <property name="fillChar" value="0" /> | |
| 2283 | - </bean> | |
| 2284 | - | |
| 2285 | - <!-- 스팸 문구 문자발송 ID Generation Strategy Config --> | |
| 2286 | - <bean name="egovSpamMsgKeywordIdGnrService" | |
| 2287 | - class="egovframework.rte.fdl.idgnr.impl.EgovTableIdGnrServiceImpl" | |
| 2288 | - destroy-method="destroy"> | |
| 2289 | - <property name="dataSource" ref="dataSource" /> | |
| 2290 | - <property name="strategy" ref="spamMsgKeywordStrategy" /> | |
| 2291 | - <property name="blockSize" value="12"/> | |
| 2292 | - <property name="table" value="IDS"/> | |
| 2293 | - <property name="tableName" value="SMSG_ID"/> | |
| 2294 | - </bean> | |
| 2295 | - <bean name="spamMsgKeywordStrategy" | |
| 2296 | - class="egovframework.rte.fdl.idgnr.impl.strategy.EgovIdGnrStrategyImpl"> | |
| 2297 | - <property name="prefix" value="SMSG_" /> | |
| 2298 | - <property name="cipers" value="8" /> | |
| 2299 | - <property name="fillChar" value="0" /> | |
| 2300 | - </bean> | |
| 2301 | - | |
| 2302 | - <!-- 조직도 조직원 ID Generation Strategy Config --> | |
| 2303 | - <bean name="egovLocInfoIdGnrService" | |
| 2304 | - class="egovframework.rte.fdl.idgnr.impl.EgovTableIdGnrServiceImpl" | |
| 2305 | - destroy-method="destroy"> | |
| 2306 | - <property name="dataSource" ref="dataSource" /> | |
| 2307 | - <property name="strategy" ref="locInfoStrategy" /> | |
| 2308 | - <property name="blockSize" value="12"/> | |
| 2309 | - <property name="table" value="IDS"/> | |
| 2310 | - <property name="tableName" value="LOCINFO_ID"/> | |
| 2311 | - </bean> | |
| 2312 | - <bean name="locInfoStrategy" class="egovframework.rte.fdl.idgnr.impl.strategy.EgovIdGnrStrategyImpl"> | |
| 2313 | - <property name="prefix" value="LOCINFO_" /> | |
| 2314 | - <property name="cipers" value="12" /> | |
| 2315 | - <property name="fillChar" value="0" /> | |
| 2316 | - </bean> | |
| 2317 | - | |
| 2318 | - <!-- 문자온 문자ID Generation Strategy Config --> | |
| 2319 | - <bean name="egovMjonMsgIdGnrService" | |
| 2320 | - class="egovframework.rte.fdl.idgnr.impl.EgovTableIdGnrServiceImpl" | |
| 2321 | - destroy-method="destroy"> | |
| 2322 | - <property name="dataSource" ref="dataSource" /> | |
| 2323 | - <property name="strategy" ref="mjonMsgIdStrategy" /> | |
| 2324 | - <property name="blockSize" value="10"/> | |
| 2325 | - <property name="table" value="IDS"/> | |
| 2326 | - <property name="tableName" value="MSG_ID"/> | |
| 2327 | - </bean> | |
| 2328 | - <bean name="mjonMsgIdStrategy" class="egovframework.rte.fdl.idgnr.impl.strategy.EgovIdGnrStrategyImpl"> | |
| 2329 | - <property name="prefix" value="MSGID_" /> | |
| 2330 | - <property name="cipers" value="14" /> | |
| 2331 | - <property name="fillChar" value="0" /> | |
| 2332 | - </bean> | |
| 2333 | - | |
| 2334 | - <!-- 문자의 장문,단문, 그림문자 등록 ID Generation Strategy Config --> | |
| 2335 | - <bean name="egovLetterInfoIdGnrService" | |
| 2336 | - class="egovframework.rte.fdl.idgnr.impl.EgovTableIdGnrServiceImpl" | |
| 2337 | - destroy-method="destroy"> | |
| 2338 | - <property name="dataSource" ref="dataSource" /> | |
| 2339 | - <property name="strategy" ref="letterInfoStrategy" /> | |
| 2340 | - <property name="blockSize" value="10"/> | |
| 2341 | - <property name="table" value="IDS"/> | |
| 2342 | - <property name="tableName" value="LETTERINFO_ID"/> | |
| 2343 | - </bean> | |
| 2344 | - <bean name="letterInfoStrategy" class="egovframework.rte.fdl.idgnr.impl.strategy.EgovIdGnrStrategyImpl"> | |
| 2345 | - <property name="prefix" value="LETTER_" /> | |
| 2346 | - <property name="cipers" value="12" /> | |
| 2347 | - <property name="fillChar" value="0" /> | |
| 2348 | - </bean> | |
| 2349 | - | |
| 2350 | - <!-- 문자온 전화번호 ID Generation Strategy Config --> | |
| 2351 | - <bean name="egovPhoneMemberIdGnrService" | |
| 2352 | - class="egovframework.rte.fdl.idgnr.impl.EgovTableIdGnrServiceImpl" | |
| 2353 | - destroy-method="destroy"> | |
| 2354 | - <property name="dataSource" ref="dataSource" /> | |
| 2355 | - <property name="strategy" ref="mjonPhoneMemberIdStrategy" /> | |
| 2356 | - <property name="blockSize" value="10"/> | |
| 2357 | - <property name="table" value="IDS"/> | |
| 2358 | - <property name="tableName" value="PHM_ID"/> | |
| 2359 | - </bean> | |
| 2360 | - <bean name="mjonPhoneMemberIdStrategy" class="egovframework.rte.fdl.idgnr.impl.strategy.EgovIdGnrStrategyImpl"> | |
| 2361 | - <property name="prefix" value="PHMID_" /> | |
| 2362 | - <property name="cipers" value="14" /> | |
| 2363 | - <property name="fillChar" value="0" /> | |
| 2364 | - </bean> | |
| 2365 | - | |
| 2366 | - | |
| 2367 | - <!-- 문자온 그룹문자ID Generation Strategy Config --> | |
| 2368 | - <bean name="egovMjonMsgGroupIdGnrService" | |
| 2369 | - class="egovframework.rte.fdl.idgnr.impl.EgovTableIdGnrServiceImpl" | |
| 2370 | - destroy-method="destroy"> | |
| 2371 | - <property name="dataSource" ref="dataSource" /> | |
| 2372 | - <property name="strategy" ref="mjonMsgGroupIdStrategy" /> | |
| 2373 | - <property name="blockSize" value="10"/> | |
| 2374 | - <property name="table" value="IDS"/> | |
| 2375 | - <property name="tableName" value="MSGG_ID"/> | |
| 2376 | - </bean> | |
| 2377 | - <bean name="mjonMsgGroupIdStrategy" class="egovframework.rte.fdl.idgnr.impl.strategy.EgovIdGnrStrategyImpl"> | |
| 2378 | - <property name="prefix" value="MSGGID_" /> | |
| 2379 | - <property name="cipers" value="13" /> | |
| 2380 | - <property name="fillChar" value="0" /> | |
| 2381 | - </bean> | |
| 2382 | - | |
| 2383 | - <!-- 문자온 로그인LOG ID Generation Strategy Config --> | |
| 2384 | - <bean name="egovMjonLoginLogIdGnrService" | |
| 2385 | - class="egovframework.rte.fdl.idgnr.impl.EgovTableIdGnrServiceImpl" | |
| 2386 | - destroy-method="destroy"> | |
| 2387 | - <property name="dataSource" ref="dataSource" /> | |
| 2388 | - <property name="strategy" ref="mjonLoginLogIdStrategy" /> | |
| 2389 | - <property name="blockSize" value="10"/> | |
| 2390 | - <property name="table" value="IDS"/> | |
| 2391 | - <property name="tableName" value="LOGIN_LOG_ID"/> | |
| 2392 | - </bean> | |
| 2393 | - <bean name="mjonLoginLogIdStrategy" | |
| 2394 | - class="egovframework.rte.fdl.idgnr.impl.strategy.EgovIdGnrStrategyImpl"> | |
| 2395 | - <property name="prefix" value="LOGINLOG_" /> | |
| 2396 | - <property name="cipers" value="11" /> | |
| 2397 | - <property name="fillChar" value="0" /> | |
| 2398 | - </bean> | |
| 2399 | - | |
| 2400 | - <!-- 이용약관 ID Generation Strategy Config --> | |
| 2401 | - <bean name="egovTermsIdGnrService" | |
| 2402 | - class="egovframework.rte.fdl.idgnr.impl.EgovTableIdGnrServiceImpl" | |
| 2403 | - destroy-method="destroy"> | |
| 2404 | - <property name="dataSource" ref="dataSource" /> | |
| 2405 | - <property name="strategy" ref="termsStrategy" /> | |
| 2406 | - <property name="blockSize" value="12"/> | |
| 2407 | - <property name="table" value="IDS"/> | |
| 2408 | - <property name="tableName" value="TERMS_ID"/> | |
| 2409 | - </bean> | |
| 2410 | - <bean name="termsStrategy" | |
| 2411 | - class="egovframework.rte.fdl.idgnr.impl.strategy.EgovIdGnrStrategyImpl"> | |
| 2412 | - <property name="prefix" value="TERMS_" /> | |
| 2413 | - <property name="cipers" value="8" /> | |
| 2414 | - <property name="fillChar" value="0" /> | |
| 2415 | - </bean> | |
| 2416 | - | |
| 2417 | - <!-- 해킹아이피 ID Generation Strategy Config --> | |
| 2418 | - <bean name="egovHackIpIdGnrService" | |
| 2419 | - class="egovframework.rte.fdl.idgnr.impl.EgovTableIdGnrServiceImpl" | |
| 2420 | - destroy-method="destroy"> | |
| 2421 | - <property name="dataSource" ref="dataSource" /> | |
| 2422 | - <property name="strategy" ref="hackIpStrategy" /> | |
| 2423 | - <property name="blockSize" value="12"/> | |
| 2424 | - <property name="table" value="IDS"/> | |
| 2425 | - <property name="tableName" value="HACK_ID"/> | |
| 2426 | - </bean> | |
| 2427 | - <bean name="hackIpStrategy" | |
| 2428 | - class="egovframework.rte.fdl.idgnr.impl.strategy.EgovIdGnrStrategyImpl"> | |
| 2429 | - <property name="prefix" value="HACKID_" /> | |
| 2430 | - <property name="cipers" value="9" /> | |
| 2431 | - <property name="fillChar" value="0" /> | |
| 2432 | - </bean> | |
| 2433 | - | |
| 2434 | - <!-- 맞춤제작 ID Generation Strategy Config --> | |
| 2435 | - <bean name="egovMjonMsgCustomIdService" | |
| 2436 | - class="egovframework.rte.fdl.idgnr.impl.EgovTableIdGnrServiceImpl" | |
| 2437 | - destroy-method="destroy"> | |
| 2438 | - <property name="dataSource" ref="dataSource" /> | |
| 2439 | - <property name="strategy" ref="customIdStrategy" /> | |
| 2440 | - <property name="blockSize" value="12"/> | |
| 2441 | - <property name="table" value="IDS"/> | |
| 2442 | - <property name="tableName" value="CUSTOM_ID"/> | |
| 2443 | - </bean> | |
| 2444 | - <bean name="customIdStrategy" | |
| 2445 | - class="egovframework.rte.fdl.idgnr.impl.strategy.EgovIdGnrStrategyImpl"> | |
| 2446 | - <property name="prefix" value="CUSTOM_" /> | |
| 2447 | - <property name="cipers" value="13" /> | |
| 2448 | - <property name="fillChar" value="0" /> | |
| 2449 | - </bean> | |
| 2450 | - | |
| 2451 | - <!-- 문자온 KISA ID Generation Strategy Config --> | |
| 2452 | - <bean name="egovKisaIdGnrService" | |
| 2453 | - class="egovframework.rte.fdl.idgnr.impl.EgovTableIdGnrServiceImpl" | |
| 2454 | - destroy-method="destroy"> | |
| 2455 | - <property name="dataSource" ref="dataSource" /> | |
| 2456 | - <property name="strategy" ref="KisaIdStrategy" /> | |
| 2457 | - <property name="blockSize" value="10"/> | |
| 2458 | - <property name="table" value="IDS"/> | |
| 2459 | - <property name="tableName" value="KISA_ID"/> | |
| 2460 | - </bean> | |
| 2461 | - <bean name="KisaIdStrategy" class="egovframework.rte.fdl.idgnr.impl.strategy.EgovIdGnrStrategyImpl"> | |
| 2462 | - <property name="prefix" value="KISAID_" /> | |
| 2463 | - <property name="cipers" value="13" /> | |
| 2464 | - <property name="fillChar" value="0" /> | |
| 2465 | - </bean> | |
| 2466 | - | |
| 2467 | - <!-- 문자온 사용자정보 메모 ID Generation Strategy Config --> | |
| 2468 | - <bean name="egovGnrlUserSelectMemoIdGnrService" | |
| 2469 | - class="egovframework.rte.fdl.idgnr.impl.EgovTableIdGnrServiceImpl" | |
| 2470 | - destroy-method="destroy"> | |
| 2471 | - <property name="dataSource" ref="dataSource" /> | |
| 2472 | - <property name="strategy" ref="MemoIdStrategy" /> | |
| 2473 | - <property name="blockSize" value="10"/> | |
| 2474 | - <property name="table" value="IDS"/> | |
| 2475 | - <property name="tableName" value="MEMO_ID"/> | |
| 2476 | - </bean> | |
| 2477 | - <bean name="MemoIdStrategy" class="egovframework.rte.fdl.idgnr.impl.strategy.EgovIdGnrStrategyImpl"> | |
| 2478 | - <property name="prefix" value="MEMOID_" /> | |
| 2479 | - <property name="cipers" value="13" /> | |
| 2480 | - <property name="fillChar" value="0" /> | |
| 2481 | - </bean> | |
| 2482 | - | |
| 2483 | - | |
| 2484 | - <!-- 문자온 특수문자 Generation Strategy Config --> | |
| 2485 | - <bean name="egovMjonSymbolIdGnrService" | |
| 2486 | - class="egovframework.rte.fdl.idgnr.impl.EgovTableIdGnrServiceImpl" | |
| 2487 | - destroy-method="destroy"> | |
| 2488 | - <property name="dataSource" ref="dataSource" /> | |
| 2489 | - <property name="strategy" ref="mjonSymbolIdStrategy" /> | |
| 2490 | - <property name="blockSize" value="10"/> | |
| 2491 | - <property name="table" value="IDS"/> | |
| 2492 | - <property name="tableName" value="SYMBOL_ID"/> | |
| 2493 | - </bean> | |
| 2494 | - <bean name="mjonSymbolIdStrategy" class="egovframework.rte.fdl.idgnr.impl.strategy.EgovIdGnrStrategyImpl"> | |
| 2495 | - <property name="prefix" value="SMBLID_" /> | |
| 2496 | - <property name="cipers" value="14" /> | |
| 2497 | - <property name="fillChar" value="0" /> | |
| 2498 | - </bean> | |
| 2499 | - | |
| 2500 | - <!-- 문자온 캐시ID Generation Strategy Config --> | |
| 2501 | - <bean name="egovMjonCashIdGnrService" | |
| 2502 | - class="egovframework.rte.fdl.idgnr.impl.EgovTableIdGnrServiceImpl" | |
| 2503 | - destroy-method="destroy"> | |
| 2504 | - <property name="dataSource" ref="dataSource" /> | |
| 2505 | - <property name="strategy" ref="mjonCashIdStrategy" /> | |
| 2506 | - <property name="blockSize" value="10"/> | |
| 2507 | - <property name="table" value="IDS"/> | |
| 2508 | - <property name="tableName" value="CASH_ID"/> | |
| 2509 | - </bean> | |
| 2510 | - <bean name="mjonCashIdStrategy" class="egovframework.rte.fdl.idgnr.impl.strategy.EgovIdGnrStrategyImpl"> | |
| 2511 | - <property name="prefix" value="CASHID_" /> | |
| 2512 | - <property name="cipers" value="13" /> | |
| 2513 | - <property name="fillChar" value="0" /> | |
| 2514 | - </bean> | |
| 2515 | - | |
| 2516 | - <!-- 문자온 기타서류 ID Generation Strategy Config --> | |
| 2517 | - <bean name="egovCertEtcIdGnrService" | |
| 2518 | - class="egovframework.rte.fdl.idgnr.impl.EgovTableIdGnrServiceImpl" | |
| 2519 | - destroy-method="destroy"> | |
| 2520 | - <property name="dataSource" ref="dataSource" /> | |
| 2521 | - <property name="strategy" ref="certEtcIdStrategy" /> | |
| 2522 | - <property name="blockSize" value="10"/> | |
| 2523 | - <property name="table" value="IDS"/> | |
| 2524 | - <property name="tableName" value="CERT_ID"/> | |
| 2525 | - </bean> | |
| 2526 | - <bean name="certEtcIdStrategy" class="egovframework.rte.fdl.idgnr.impl.strategy.EgovIdGnrStrategyImpl"> | |
| 2527 | - <property name="prefix" value="CERTID_" /> | |
| 2528 | - <property name="cipers" value="13" /> | |
| 2529 | - <property name="fillChar" value="0" /> | |
| 2530 | - </bean> | |
| 2531 | - | |
| 2532 | - <!-- PGId ID Generation Strategy Config --> | |
| 2533 | - <bean name="egovPgMoidGnrService" | |
| 2534 | - class="egovframework.rte.fdl.idgnr.impl.EgovTableIdGnrServiceImpl" | |
| 2535 | - destroy-method="destroy"> | |
| 2536 | - <property name="dataSource" ref="dataSource" /> | |
| 2537 | - <property name="strategy" ref="pgMoidStrategy" /> | |
| 2538 | - <property name="blockSize" value="10"/> | |
| 2539 | - <property name="table" value="IDS"/> | |
| 2540 | - <property name="tableName" value="MOID_ID"/> | |
| 2541 | - </bean> | |
| 2542 | - <bean name="pgMoidStrategy" class="egovframework.rte.fdl.idgnr.impl.strategy.EgovIdGnrStrategyImpl"> | |
| 2543 | - <property name="prefix" value="MOID_" /> | |
| 2544 | - <property name="cipers" value="15" /> | |
| 2545 | - <property name="fillChar" value="0" /> | |
| 2546 | - </bean> | |
| 2547 | - | |
| 2548 | - <!-- 문자온 포인트 ID Generation Strategy Config --> | |
| 2549 | - <bean name="egovMjonPointIdGnrService" | |
| 2550 | - class="egovframework.rte.fdl.idgnr.impl.EgovTableIdGnrServiceImpl" | |
| 2551 | - destroy-method="destroy"> | |
| 2552 | - <property name="dataSource" ref="dataSource" /> | |
| 2553 | - <property name="strategy" ref="mjonPointIdStrategy" /> | |
| 2554 | - <property name="blockSize" value="10"/> | |
| 2555 | - <property name="table" value="IDS"/> | |
| 2556 | - <property name="tableName" value="CASH_ID"/> | |
| 2557 | - </bean> | |
| 2558 | - <bean name="mjonPointIdStrategy" class="egovframework.rte.fdl.idgnr.impl.strategy.EgovIdGnrStrategyImpl"> | |
| 2559 | - <property name="prefix" value="POINTID_" /> | |
| 2560 | - <property name="cipers" value="12" /> | |
| 2561 | - <property name="fillChar" value="0" /> | |
| 2562 | - </bean> | |
| 2563 | - | |
| 2564 | - <!-- 문자온 포인트 USE ID Generation Strategy Config --> | |
| 2565 | - <bean name="egovMjonPointUseIdGnrService" | |
| 2566 | - class="egovframework.rte.fdl.idgnr.impl.EgovTableIdGnrServiceImpl" | |
| 2567 | - destroy-method="destroy"> | |
| 2568 | - <property name="dataSource" ref="dataSource" /> | |
| 2569 | - <property name="strategy" ref="mjonPointUseIdStrategy" /> | |
| 2570 | - <property name="blockSize" value="10"/> | |
| 2571 | - <property name="table" value="IDS"/> | |
| 2572 | - <property name="tableName" value="POINT_USE_ID"/> | |
| 2573 | - </bean> | |
| 2574 | - <bean name="mjonPointUseIdStrategy" class="egovframework.rte.fdl.idgnr.impl.strategy.EgovIdGnrStrategyImpl"> | |
| 2575 | - <property name="prefix" value="POINTUSEID_" /> | |
| 2576 | - <property name="cipers" value="9" /> | |
| 2577 | - <property name="fillChar" value="0" /> | |
| 2578 | - </bean> | |
| 2579 | - | |
| 2580 | - | |
| 2581 | - <!-- 문자온 080수신거부 로그 Generation Strategy Config --> | |
| 2582 | - <bean name="egovMjonRejectIdGnrService" | |
| 2583 | - class="egovframework.rte.fdl.idgnr.impl.EgovTableIdGnrServiceImpl" | |
| 2584 | - destroy-method="destroy"> | |
| 2585 | - <property name="dataSource" ref="dataSource" /> | |
| 2586 | - <property name="strategy" ref="mjonRejectIdStrategy" /> | |
| 2587 | - <property name="blockSize" value="10"/> | |
| 2588 | - <property name="table" value="IDS"/> | |
| 2589 | - <property name="tableName" value="REJECT_LOG_ID"/> | |
| 2590 | - </bean> | |
| 2591 | - <bean name="mjonRejectIdStrategy" class="egovframework.rte.fdl.idgnr.impl.strategy.EgovIdGnrStrategyImpl"> | |
| 2592 | - <property name="prefix" value="REJTLOGID_" /> | |
| 2593 | - <property name="cipers" value="14" /> | |
| 2594 | - <property name="fillChar" value="0" /> | |
| 2595 | - </bean> | |
| 2596 | - | |
| 2597 | - <!-- 문자온 차단번호 리스트 Generation Strategy Config --> | |
| 2598 | - <bean name="egovMjonBlockIdGnrService" | |
| 2599 | - class="egovframework.rte.fdl.idgnr.impl.EgovTableIdGnrServiceImpl" | |
| 2600 | - destroy-method="destroy"> | |
| 2601 | - <property name="dataSource" ref="dataSource" /> | |
| 2602 | - <property name="strategy" ref="mjonBlockIdStrategy" /> | |
| 2603 | - <property name="blockSize" value="10"/> | |
| 2604 | - <property name="table" value="IDS"/> | |
| 2605 | - <property name="tableName" value="BLOCK_ID"/> | |
| 2606 | - </bean> | |
| 2607 | - <bean name="mjonBlockIdStrategy" class="egovframework.rte.fdl.idgnr.impl.strategy.EgovIdGnrStrategyImpl"> | |
| 2608 | - <property name="prefix" value="BLOCKID_" /> | |
| 2609 | - <property name="cipers" value="14" /> | |
| 2610 | - <property name="fillChar" value="0" /> | |
| 2611 | - </bean> | |
| 2612 | - | |
| 2613 | - <!-- 문자온 주소록이전 히스토리 Generation Strategy Config --> | |
| 2614 | - <bean name="egovAddrTransHistIdGnrService" | |
| 2615 | - class="egovframework.rte.fdl.idgnr.impl.EgovTableIdGnrServiceImpl" | |
| 2616 | - destroy-method="destroy"> | |
| 2617 | - <property name="dataSource" ref="dataSource" /> | |
| 2618 | - <property name="strategy" ref="mjonAddrTransHistIdStrategy" /> | |
| 2619 | - <property name="blockSize" value="10"/> | |
| 2620 | - <property name="table" value="IDS"/> | |
| 2621 | - <property name="tableName" value="ADDR_TRANS_HIST_ID"/> | |
| 2622 | - </bean> | |
| 2623 | - <bean name="mjonAddrTransHistIdStrategy" class="egovframework.rte.fdl.idgnr.impl.strategy.EgovIdGnrStrategyImpl"> | |
| 2624 | - <property name="prefix" value="ADDRTRANS_" /> | |
| 2625 | - <property name="cipers" value="14" /> | |
| 2626 | - <property name="fillChar" value="0" /> | |
| 2627 | - </bean> | |
| 2628 | - | |
| 2629 | - <!-- 문자온 통합다운로드 히스토리 Generation Strategy Config --> | |
| 2630 | - <bean name="egovTotalDownloadIdGnrService" | |
| 2631 | - class="egovframework.rte.fdl.idgnr.impl.EgovTableIdGnrServiceImpl" | |
| 2632 | - destroy-method="destroy"> | |
| 2633 | - <property name="dataSource" ref="dataSource" /> | |
| 2634 | - <property name="strategy" ref="mjonTotalDownloadIdStrategy" /> | |
| 2635 | - <property name="blockSize" value="10"/> | |
| 2636 | - <property name="table" value="IDS"/> | |
| 2637 | - <property name="tableName" value="TOTAL_DOWNLOAD_ID"/> | |
| 2638 | - </bean> | |
| 2639 | - <bean name="mjonTotalDownloadIdStrategy" class="egovframework.rte.fdl.idgnr.impl.strategy.EgovIdGnrStrategyImpl"> | |
| 2640 | - <property name="prefix" value="TOTDOWN_" /> | |
| 2641 | - <property name="cipers" value="14" /> | |
| 2642 | - <property name="fillChar" value="0" /> | |
| 2643 | - </bean> | |
| 2644 | - | |
| 2645 | - <!-- 문자온 REFUND ID Generation Strategy Config --> | |
| 2646 | - <bean name="egovRefundIdGnrService" | |
| 2647 | - class="egovframework.rte.fdl.idgnr.impl.EgovTableIdGnrServiceImpl" | |
| 2648 | - destroy-method="destroy"> | |
| 2649 | - <property name="dataSource" ref="dataSource" /> | |
| 2650 | - <property name="strategy" ref="RefundIdStrategy" /> | |
| 2651 | - <property name="blockSize" value="10"/> | |
| 2652 | - <property name="table" value="IDS"/> | |
| 2653 | - <property name="tableName" value="REFUND_ID"/> | |
| 2654 | - </bean> | |
| 2655 | - <bean name="RefundIdStrategy" class="egovframework.rte.fdl.idgnr.impl.strategy.EgovIdGnrStrategyImpl"> | |
| 2656 | - <property name="prefix" value="REFUNDID_" /> | |
| 2657 | - <property name="cipers" value="11" /> | |
| 2658 | - <property name="fillChar" value="0" /> | |
| 2659 | - </bean> | |
| 2660 | - | |
| 2661 | - <!-- 문자온 REFUND ID Generation Strategy Config --> | |
| 2662 | - <bean name="egovSystemSendIdGnrService" | |
| 2663 | - class="egovframework.rte.fdl.idgnr.impl.EgovTableIdGnrServiceImpl" | |
| 2664 | - destroy-method="destroy"> | |
| 2665 | - <property name="dataSource" ref="dataSource" /> | |
| 2666 | - <property name="strategy" ref="SendIdStrategy" /> | |
| 2667 | - <property name="blockSize" value="10"/> | |
| 2668 | - <property name="table" value="IDS"/> | |
| 2669 | - <property name="tableName" value="SEND_ID"/> | |
| 2670 | - </bean> | |
| 2671 | - <bean name="SendIdStrategy" class="egovframework.rte.fdl.idgnr.impl.strategy.EgovIdGnrStrategyImpl"> | |
| 2672 | - <property name="prefix" value="SENDID_" /> | |
| 2673 | - <property name="cipers" value="13" /> | |
| 2674 | - <property name="fillChar" value="0" /> | |
| 2675 | - </bean> | |
| 2676 | - | |
| 2677 | - <!-- 기업회원 정보 내역 ID Generation Config --> | |
| 2678 | - <bean name="egovCmpHstIdGnrService" | |
| 2679 | - class="egovframework.rte.fdl.idgnr.impl.EgovTableIdGnrServiceImpl" | |
| 2680 | - destroy-method="destroy"> | |
| 2681 | - <property name="dataSource" ref="dataSource" /> | |
| 2682 | - <property name="strategy" ref="cmpHstIdStrategy" /> | |
| 2683 | - <property name="blockSize" value="10"/> | |
| 2684 | - <property name="table" value="IDS"/> | |
| 2685 | - <property name="tableName" value="CMPHST_ID"/> | |
| 2686 | - </bean> | |
| 2687 | - <bean name="cmpHstIdStrategy" class="egovframework.rte.fdl.idgnr.impl.strategy.EgovIdGnrStrategyImpl"> | |
| 2688 | - <property name="prefix" value="CMPHST_" /> | |
| 2689 | - <property name="cipers" value="13" /> | |
| 2690 | - <property name="fillChar" value="0" /> | |
| 2691 | - </bean> | |
| 2692 | - | |
| 2693 | - <!-- 스팸회원 정보 ID Generation Config --> | |
| 2694 | - <bean name="egovSpamMemberInfoIdGnrService" | |
| 2695 | - class="egovframework.rte.fdl.idgnr.impl.EgovTableIdGnrServiceImpl" | |
| 2696 | - destroy-method="destroy"> | |
| 2697 | - <property name="dataSource" ref="dataSource" /> | |
| 2698 | - <property name="strategy" ref="spamMemberInfoIdStrategy" /> | |
| 2699 | - <property name="blockSize" value="10"/> | |
| 2700 | - <property name="table" value="IDS"/> | |
| 2701 | - <property name="tableName" value="SMI_ID"/> | |
| 2702 | - </bean> | |
| 2703 | - <bean name="spamMemberInfoIdStrategy" class="egovframework.rte.fdl.idgnr.impl.strategy.EgovIdGnrStrategyImpl"> | |
| 2704 | - <property name="prefix" value="SMI_" /> | |
| 2705 | - <property name="cipers" value="16" /> | |
| 2706 | - <property name="fillChar" value="0" /> | |
| 2707 | - </bean> | |
| 2708 | - | |
| 2709 | - <!-- 카카오 회원 발신 프로필 정보 ID Generation Config --> | |
| 2710 | - <bean name="egovKakaoProfileInfoIdService" | |
| 2711 | - class="egovframework.rte.fdl.idgnr.impl.EgovTableIdGnrServiceImpl" | |
| 2712 | - destroy-method="destroy"> | |
| 2713 | - <property name="dataSource" ref="dataSource" /> | |
| 2714 | - <property name="strategy" ref="kakaoProfileInfoIdStrategy" /> | |
| 2715 | - <property name="blockSize" value="10"/> | |
| 2716 | - <property name="table" value="IDS"/> | |
| 2717 | - <property name="tableName" value="PROFILE_ID"/> | |
| 2718 | - </bean> | |
| 2719 | - <bean name="kakaoProfileInfoIdStrategy" class="egovframework.rte.fdl.idgnr.impl.strategy.EgovIdGnrStrategyImpl"> | |
| 2720 | - <property name="prefix" value="PROFILE_" /> | |
| 2721 | - <property name="cipers" value="12" /> | |
| 2722 | - <property name="fillChar" value="0" /> | |
| 2723 | - </bean> | |
| 2724 | - | |
| 2725 | - <!-- 펙스관리 TB PK --> | |
| 2726 | - <bean name="egovMjFaxConvertMngIdService" | |
| 2727 | - class="egovframework.rte.fdl.idgnr.impl.EgovTableIdGnrServiceImpl" | |
| 2728 | - destroy-method="destroy"> | |
| 2729 | - <property name="dataSource" ref="dataSource" /> | |
| 2730 | - <property name="strategy" ref="faxConvertMngIdStrategy" /> | |
| 2731 | - <property name="blockSize" value="10"/> | |
| 2732 | - <property name="table" value="IDS"/> | |
| 2733 | - <property name="tableName" value="FAX_CVT_MNG_ID"/> | |
| 2734 | - </bean> | |
| 2735 | - <bean name="faxConvertMngIdStrategy" class="egovframework.rte.fdl.idgnr.impl.strategy.EgovIdGnrStrategyImpl"> | |
| 2736 | - <property name="prefix" value="MjFAXCVT_" /> | |
| 2737 | - <property name="cipers" value="11" /> | |
| 2738 | - <property name="fillChar" value="0" /> | |
| 2739 | - </bean> | |
| 2740 | - | |
| 2741 | - <!-- 펙스관리 TB PK --> | |
| 2742 | - <bean name="egovMjFaxGroupMngIdService" | |
| 2743 | - class="egovframework.rte.fdl.idgnr.impl.EgovTableIdGnrServiceImpl" | |
| 2744 | - destroy-method="destroy"> | |
| 2745 | - <property name="dataSource" ref="dataSource" /> | |
| 2746 | - <property name="strategy" ref="faxGroupMngIdStrategy" /> | |
| 2747 | - <property name="blockSize" value="10"/> | |
| 2748 | - <property name="table" value="IDS"/> | |
| 2749 | - <property name="tableName" value="FAX_GRUP_MNG_ID"/> | |
| 2750 | - </bean> | |
| 2751 | - <bean name="faxGroupMngIdStrategy" class="egovframework.rte.fdl.idgnr.impl.strategy.EgovIdGnrStrategyImpl"> | |
| 2752 | - <property name="prefix" value="MjFAXGRUP_" /> | |
| 2753 | - <property name="cipers" value="10" /> | |
| 2754 | - <property name="fillChar" value="0" /> | |
| 2755 | - </bean> | |
| 2756 | - | |
| 2757 | - <!-- [솔루션]팩스 Convert 관리 TB PK --> | |
| 2758 | - <bean name="egovPgiFaxConvertIdService" | |
| 2759 | - class="egovframework.rte.fdl.idgnr.impl.EgovTableIdGnrServiceImpl" | |
| 2760 | - destroy-method="destroy"> | |
| 2761 | - <property name="dataSource" ref="dataSource" /> | |
| 2762 | - <property name="strategy" ref="faxConvertIdService" /> | |
| 2763 | - <property name="blockSize" value="10"/> | |
| 2764 | - <property name="table" value="IDS"/> | |
| 2765 | - <property name="tableName" value="FAX_CONVERT_ID"/> | |
| 2766 | - </bean> | |
| 2767 | - <bean name="faxConvertIdService" class="egovframework.rte.fdl.idgnr.impl.strategy.EgovIdGnrStrategyImpl"> | |
| 2768 | - <property name="prefix" value="" /> | |
| 2769 | - <property name="cipers" value="11" /> | |
| 2770 | - <property name="fillChar" value="0" /> | |
| 2771 | - </bean> | |
| 2772 | - | |
| 2773 | - <!-- [솔루션]팩스 발송 관리 TB PK --> | |
| 2774 | - <bean name="egovPgiFaxTranIdService" | |
| 2775 | - class="egovframework.rte.fdl.idgnr.impl.EgovTableIdGnrServiceImpl" | |
| 2776 | - destroy-method="destroy"> | |
| 2777 | - <property name="dataSource" ref="dataSource" /> | |
| 2778 | - <property name="strategy" ref="faxTranIdService" /> | |
| 2779 | - <property name="blockSize" value="10"/> | |
| 2780 | - <property name="table" value="IDS"/> | |
| 2781 | - <property name="tableName" value="FAX_Tran_ID"/> | |
| 2782 | - </bean> | |
| 2783 | - <bean name="faxTranIdService" class="egovframework.rte.fdl.idgnr.impl.strategy.EgovIdGnrStrategyImpl"> | |
| 2784 | - <property name="prefix" value="" /> | |
| 2785 | - <property name="cipers" value="11" /> | |
| 2786 | - <property name="fillChar" value="0" /> | |
| 2787 | - </bean> | |
| 2788 | - | |
| 2789 | - <!-- [솔루션]팩스 수신처 관리 TB PK --> | |
| 2790 | - <bean name="egovPgiFaxListIdService" | |
| 2791 | - class="egovframework.rte.fdl.idgnr.impl.EgovTableIdGnrServiceImpl" | |
| 2792 | - destroy-method="destroy"> | |
| 2793 | - <property name="dataSource" ref="dataSource" /> | |
| 2794 | - <property name="strategy" ref="faxListIdService" /> | |
| 2795 | - <property name="blockSize" value="10"/> | |
| 2796 | - <property name="table" value="IDS"/> | |
| 2797 | - <property name="tableName" value="FAX_Tran_ID"/> | |
| 2798 | - </bean> | |
| 2799 | - <bean name="faxListIdService" class="egovframework.rte.fdl.idgnr.impl.strategy.EgovIdGnrStrategyImpl"> | |
| 2800 | - <property name="prefix" value="" /> | |
| 2801 | - <property name="cipers" value="11" /> | |
| 2802 | - <property name="fillChar" value="0" /> | |
| 2803 | - </bean> | |
| 2804 | - | |
| 2805 | - <!-- 알림톡 샘플 템플릿 관리 TB PK --> | |
| 2806 | - <bean name="egovAlimtalkSampleTemplateIdService" | |
| 2807 | - class="egovframework.rte.fdl.idgnr.impl.EgovTableIdGnrServiceImpl" | |
| 2808 | - destroy-method="destroy"> | |
| 2809 | - <property name="dataSource" ref="dataSource" /> | |
| 2810 | - <property name="strategy" ref="alimtalkSampleTemplateIdService" /> | |
| 2811 | - <property name="blockSize" value="10"/> | |
| 2812 | - <property name="table" value="IDS"/> | |
| 2813 | - <property name="tableName" value="SAM_TMP_ID"/> | |
| 2814 | - </bean> | |
| 2815 | - <bean name="alimtalkSampleTemplateIdService" class="egovframework.rte.fdl.idgnr.impl.strategy.EgovIdGnrStrategyImpl"> | |
| 2816 | - <property name="prefix" value="SAMTMP_" /> | |
| 2817 | - <property name="cipers" value="12" /> | |
| 2818 | - <property name="fillChar" value="0" /> | |
| 2819 | - </bean> | |
| 2820 | - | |
| 2821 | - <!-- 친구톡 템플릿 관리 TB PK --> | |
| 2822 | - <bean name="egovFriendstalkTemplateIdService" | |
| 2823 | - class="egovframework.rte.fdl.idgnr.impl.EgovTableIdGnrServiceImpl" | |
| 2824 | - destroy-method="destroy"> | |
| 2825 | - <property name="dataSource" ref="dataSource" /> | |
| 2826 | - <property name="strategy" ref="friendstalkTemplateIdService" /> | |
| 2827 | - <property name="blockSize" value="10"/> | |
| 2828 | - <property name="table" value="IDS"/> | |
| 2829 | - <property name="tableName" value="FRD_TMP_ID"/> | |
| 2830 | - </bean> | |
| 2831 | - <bean name="friendstalkTemplateIdService" class="egovframework.rte.fdl.idgnr.impl.strategy.EgovIdGnrStrategyImpl"> | |
| 2832 | - <property name="prefix" value="FRDTMP_" /> | |
| 2833 | - <property name="cipers" value="12" /> | |
| 2834 | - <property name="fillChar" value="0" /> | |
| 2835 | - </bean> | |
| 2836 | - | |
| 2837 | -</beans> |
--- target/classes/egovframework/spring/com/context-mail.xml
... | ... | @@ -1,60 +0,0 @@ |
| 1 | -<?xml version="1.0" encoding="UTF-8"?> | |
| 2 | -<beans xmlns="http://www.springframework.org/schema/beans" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" | |
| 3 | - xmlns:p="http://www.springframework.org/schema/p" | |
| 4 | - xsi:schemaLocation="http://www.springframework.org/schema/beans http://www.springframework.org/schema/beans/spring-beans-4.0.xsd"> | |
| 5 | - | |
| 6 | - <!-- 일반용 | |
| 7 | - <bean id="mntrngMailSender" class="org.springframework.mail.javamail.JavaMailSenderImpl" | |
| 8 | - p:host="STMP서버주소" | |
| 9 | - p:username="아이디" | |
| 10 | - p:password="비밀번호" /> | |
| 11 | - --> | |
| 12 | - | |
| 13 | - <!-- 메일 연동 인터페이스에서 첨부파일 미사용 --> | |
| 14 | - <!-- <bean id="EMSMailSender" class="org.springframework.mail.javamail.JavaMailSenderImpl" | |
| 15 | - p:host="STMP서버주소" | |
| 16 | - p:port="465" | |
| 17 | - p:protocol="smtps" | |
| 18 | - p:username="아이디" | |
| 19 | - p:password="비밀번호"> | |
| 20 | - <property name="javaMailProperties"> | |
| 21 | - <props> | |
| 22 | - <prop key="mail.smtps.auth">true</prop> | |
| 23 | - <prop key="mail.smtps.startls.enable">true</prop> | |
| 24 | - <prop key="mail.smtps.debug">true</prop> | |
| 25 | - </props> | |
| 26 | - </property> | |
| 27 | - </bean> --> | |
| 28 | - | |
| 29 | - <!-- 테스트 네이버 --> | |
| 30 | - <bean id="egovMultiPartEmail" class="itn.com.cmm.EgovMultiPartEmail" | |
| 31 | - p:host="smtp.naver.com" | |
| 32 | - p:port="465" | |
| 33 | - p:id="dlwldn1024" | |
| 34 | - p:password="wldncjswo" | |
| 35 | - p:senderName="이지우" | |
| 36 | - p:emailAddress="dlwldn1024@naver.com" /> | |
| 37 | - | |
| 38 | - | |
| 39 | - <!-- 모니터링 서비스에서 사용 gmail, hanmail 용 --> | |
| 40 | - <!-- <bean id="mntrngMailSender" class="org.springframework.mail.javamail.JavaMailSenderImpl" | |
| 41 | - p:host="smtp.gmail.com" | |
| 42 | - p:port="465" | |
| 43 | - p:protocol="smtps" | |
| 44 | - p:username="아이디" | |
| 45 | - p:password="비밀번호"> | |
| 46 | - <property name="javaMailProperties"> | |
| 47 | - <props> | |
| 48 | - <prop key="mail.smtps.auth">true</prop> | |
| 49 | - <prop key="mail.smtps.startls.enable">true</prop> | |
| 50 | - <prop key="mail.smtps.debug">true</prop> | |
| 51 | - </props> | |
| 52 | - </property> | |
| 53 | - </bean> --> | |
| 54 | - | |
| 55 | - <!-- <bean id="mntrngMessage" class="org.springframework.mail.SimpleMailMessage" | |
| 56 | - p:from="SYSTEM < 아이디@gmail.com >" | |
| 57 | - p:subject="{모니터링종류} 상태통보." | |
| 58 | - p:text="* {모니터링종류} 상태통보. {에러내용}"/> --> | |
| 59 | - | |
| 60 | -</beans> (No newline at end of file) |
--- target/classes/egovframework/spring/com/context-properties.xml
... | ... | @@ -1,27 +0,0 @@ |
| 1 | -<?xml version="1.0" encoding="UTF-8"?> | |
| 2 | -<beans xmlns="http://www.springframework.org/schema/beans" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" | |
| 3 | - xsi:schemaLocation="http://www.springframework.org/schema/beans http://www.springframework.org/schema/beans/spring-beans-4.0.xsd | |
| 4 | - http://www.springframework.org/schema/util | |
| 5 | - http://www.springframework.org/schema/util/spring-util-3.0.xsd" | |
| 6 | - xmlns:util="http://www.springframework.org/schema/util" > | |
| 7 | - | |
| 8 | - <!-- 프로퍼티 정보 설정 --> | |
| 9 | - <bean name="propertiesService" class="egovframework.rte.fdl.property.impl.EgovPropertyServiceImpl" destroy-method="destroy"> | |
| 10 | - <property name="properties"> | |
| 11 | - <map> | |
| 12 | - <entry key="pageUnit" value="10"/> | |
| 13 | - <entry key="pageSize" value="10"/> | |
| 14 | - <entry key="posblAtchFileSize" value="5242880"/> | |
| 15 | - <entry key="posblResveThumbAtchFileNum" value="1"/> | |
| 16 | - <entry key="posblResveImgAtchFileNum" value="3"/> | |
| 17 | - <entry key="posblResvePortpolioAtchFileNum" value="3"/> | |
| 18 | - <!-- <entry key="Globals.fileStorePath" value="/user/file/sht/"/> | |
| 19 | - <entry key="Globals.addedOptions" value="false"/> --> | |
| 20 | - <entry key="Globals.fileStorePath" value="/usr/local/tomcat/file/sht/"/> | |
| 21 | - <entry key="Globals.resveFileStorePath" value="/usr/local/tomcat/file/resve/"/> | |
| 22 | - <entry key="Globals.addedOptions" value="false"/> | |
| 23 | - </map> | |
| 24 | - </property> | |
| 25 | - </bean> | |
| 26 | - <util:properties id="globalSettings" location="classpath:/egovframework/egovProps/globals_#{systemProperties['spring.profiles.active']}.properties" /> | |
| 27 | -</beans> |
--- target/classes/egovframework/spring/com/context-scheduling-sym-log-lgm.xml
... | ... | @@ -1,223 +0,0 @@ |
| 1 | -<?xml version="1.0" encoding="UTF-8"?> | |
| 2 | -<beans xmlns="http://www.springframework.org/schema/beans" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" | |
| 3 | - xsi:schemaLocation="http://www.springframework.org/schema/beans http://www.springframework.org/schema/beans/spring-beans-4.0.xsd"> | |
| 4 | - | |
| 5 | - <!-- --> | |
| 6 | - <!-- | |
| 7 | - 문자온 batch/backup 정보(신규 batch/backup시 참고 바랍니다.) | |
| 8 | - | |
| 9 | - 0.가비아 (bardos-fd 의 경우 백업 프로세스) | |
| 10 | - #DATABACKUP | |
| 11 | - - 백업정책 : full 백업 월요일 04시 | |
| 12 | - - 백업경로 : /nas | |
| 13 | - - 백업주기: 주1회 전체백업, 매일 증분백업(21일보관) | |
| 14 | - | |
| 15 | - #DBBACKUP | |
| 16 | - - 백업정책 : 매일 04시 | |
| 17 | - - 백업주기 : 매일 전체백업(14일보관) | |
| 18 | - | |
| 19 | - #DBDUMP | |
| 20 | - - 백업정책 : 매일 03시10분 | |
| 21 | - - 백업주기 : 매일 전체백업 | |
| 22 | - | |
| 23 | - 2-1.문자발송일별통계집계 | |
| 24 | - 매시간 43분47초(14일전)(3시제외) | |
| 25 | - 2-2.문자발송일별통계집계(매일 한번) | |
| 26 | - 매일 3시30분47초(전체) | |
| 27 | - | |
| 28 | - | |
| 29 | - 3-1.문자전송순위통계집계 | |
| 30 | - 매시간 53분47초(14일전)(4시제외) | |
| 31 | - 3-2.문자전송순위통계집계(매일 한번) | |
| 32 | - 매일 4시30분47초(전체) | |
| 33 | - | |
| 34 | - 4.mj_msg_data 백업 | |
| 35 | - 매년 11월 22일 4시38분 | |
| 36 | - (작년 데이터로 테이블을 만들어 백업하고, 3년전 데이터는 삭제 처리함) | |
| 37 | - ex)2023-11-22에는 2022년 데이터를 백업한 mj_msg_data_backup_2022 생성 후 | |
| 38 | - mj_msg_data 테이블에서 2020년 데이터 삭제 처리함 | |
| 39 | - 4시38분~7시 | |
| 40 | - | |
| 41 | - --> | |
| 42 | - | |
| 43 | - <!-- 1 --> | |
| 44 | - <!-- 시스템 로그 요약 --> | |
| 45 | - <bean id="sysLogging" class="org.springframework.scheduling.quartz.MethodInvokingJobDetailFactoryBean"> | |
| 46 | - <property name="targetObject" ref="egovSysLogScheduling" /> | |
| 47 | - <property name="targetMethod" value="sysLogSummary" /> | |
| 48 | - <property name="concurrent" value="false" /> | |
| 49 | - </bean> | |
| 50 | - | |
| 51 | - <!-- 시스템 로그 요약 트리거 --> | |
| 52 | - <bean id="sysLogTrigger" class="org.springframework.scheduling.quartz.SimpleTriggerFactoryBean"> | |
| 53 | - <property name="jobDetail" ref="sysLogging" /> | |
| 54 | - <!-- 시작하고 1분후에 실행한다. (milisecond) 60000 --> | |
| 55 | - <property name="startDelay" value="30000" /> | |
| 56 | - <!-- 매 24시간마다 실행한다.864000000 (milisecond) --> | |
| 57 | - <property name="repeatInterval" value="864000000" /> | |
| 58 | - </bean> | |
| 59 | - | |
| 60 | - | |
| 61 | - | |
| 62 | - <!-- 2-1 --> | |
| 63 | - <!-- 문자발송일별통계집계 --> | |
| 64 | - <bean id="SttstMsgBean" class="org.springframework.scheduling.quartz.MethodInvokingJobDetailFactoryBean"> | |
| 65 | - <property name="targetObject" ref="sttstMsgScheduling" /> | |
| 66 | - <property name="targetMethod" value="mjSttstMsgSmmmary" /> | |
| 67 | - <property name="concurrent" value="false" /> | |
| 68 | - </bean> | |
| 69 | - | |
| 70 | - <bean id="SttstMsgBeanTrigger" class="org.springframework.scheduling.quartz.CronTriggerFactoryBean"> | |
| 71 | - <property name="jobDetail" ref="SttstMsgBean" /> | |
| 72 | - <!-- 매시간 43분 47초 마다 일별 문자 발송 데이터 집계 --> | |
| 73 | - <property name="cronExpression" value="47 43 0-2,4-23 * * ?" /> | |
| 74 | -<!-- <property name="cronExpression" value="38 * * * * ?" /> --> | |
| 75 | - </bean> | |
| 76 | - | |
| 77 | - | |
| 78 | - <!-- 2-2 --> | |
| 79 | - <!-- 문자발송일별통계집계(하루한번) --> | |
| 80 | - <bean id="SttstMsgDayBean" class="org.springframework.scheduling.quartz.MethodInvokingJobDetailFactoryBean"> | |
| 81 | - <property name="targetObject" ref="sttstMsgScheduling" /> | |
| 82 | - <property name="targetMethod" value="mjSttstMsgDaySmmmary" /> | |
| 83 | - <property name="concurrent" value="false" /> | |
| 84 | - </bean> | |
| 85 | - | |
| 86 | - <bean id="SttstMsgDayBeanTrigger" class="org.springframework.scheduling.quartz.CronTriggerFactoryBean"> | |
| 87 | - <property name="jobDetail" ref="SttstMsgDayBean" /> | |
| 88 | - <!-- 매시간 43분 47초 마다 일별 문자 발송 데이터 집계 --> | |
| 89 | - <property name="cronExpression" value="47 30 3 * * ?" /> | |
| 90 | -<!-- <property name="cronExpression" value="38 * * * * ?" /> --> | |
| 91 | - </bean> | |
| 92 | - | |
| 93 | - | |
| 94 | - <!-- 3-1 --> | |
| 95 | - <!-- 문자전송순위통계집계 --> | |
| 96 | - <bean id="SttstMsgRankBean" class="org.springframework.scheduling.quartz.MethodInvokingJobDetailFactoryBean"> | |
| 97 | - <property name="targetObject" ref="sttstMsgScheduling" /> | |
| 98 | - <property name="targetMethod" value="mjSttstMsgRankSmmmary" /> | |
| 99 | - <property name="concurrent" value="false" /> | |
| 100 | - </bean> | |
| 101 | - | |
| 102 | - <bean id="SttstMsgRankBeanTrigger" class="org.springframework.scheduling.quartz.CronTriggerFactoryBean"> | |
| 103 | - <property name="jobDetail" ref="SttstMsgRankBean" /> | |
| 104 | - <!-- 매시간 43분 47초 마다 일별 문자 발송 데이터 집계 --> | |
| 105 | - <property name="cronExpression" value="47 53 0-3,5-23 * * ?" /> | |
| 106 | -<!-- <property name="cronExpression" value="8 * * * * ?" /> --> | |
| 107 | - </bean> | |
| 108 | - | |
| 109 | - | |
| 110 | - <!-- 3-2 --> | |
| 111 | - <!-- 문자전송순위통계집계(하루한번) --> | |
| 112 | - <bean id="SttstMsgRankDayBean" class="org.springframework.scheduling.quartz.MethodInvokingJobDetailFactoryBean"> | |
| 113 | - <property name="targetObject" ref="sttstMsgScheduling" /> | |
| 114 | - <property name="targetMethod" value="mjSttstMsgRankDaySmmmary" /> | |
| 115 | - <property name="concurrent" value="false" /> | |
| 116 | - </bean> | |
| 117 | - | |
| 118 | - <bean id="SttstMsgRankDayBeanTrigger" class="org.springframework.scheduling.quartz.CronTriggerFactoryBean"> | |
| 119 | - <property name="jobDetail" ref="SttstMsgRankDayBean" /> | |
| 120 | - <!-- 매시간 43분 47초 마다 일별 문자 발송 데이터 집계 --> | |
| 121 | - <property name="cronExpression" value="47 30 4 * * ?" /> | |
| 122 | -<!-- <property name="cronExpression" value="8 * * * * ?" /> --> | |
| 123 | - </bean> | |
| 124 | - | |
| 125 | - | |
| 126 | - <!-- 14 --> | |
| 127 | - <!-- mj_msg_data 백업 --> | |
| 128 | - <bean id="MjMsgDataBackupBean" class="org.springframework.scheduling.quartz.MethodInvokingJobDetailFactoryBean"> | |
| 129 | - <property name="targetObject" ref="tableBackupMsgScheduling" /> | |
| 130 | - <property name="targetMethod" value="mjMsgDataBackup" /> | |
| 131 | - <property name="concurrent" value="false" /> | |
| 132 | - </bean> | |
| 133 | - | |
| 134 | - <bean id="MjMsgDataBackupBeanTrigger" class="org.springframework.scheduling.quartz.CronTriggerFactoryBean"> | |
| 135 | - <property name="jobDetail" ref="MjMsgDataBackupBean" /> | |
| 136 | - <!-- 매년 3,11월 22일 4시38분 마다 작년도 테이블 백업 --> | |
| 137 | - <property name="cronExpression" value="0 38 4 22 11 ?" /> | |
| 138 | -<!-- <property name="cronExpression" value="0 38 4 28 3 ?" /> --> | |
| 139 | - <!-- 매일 4시18분 마다 작년도 테이블 백업 --> | |
| 140 | -<!-- <property name="cronExpression" value="0 03 12 * * ?" /> --> | |
| 141 | -<!-- <property name="cronExpression" value="8 * * * * ?" /> --> | |
| 142 | - </bean> | |
| 143 | - | |
| 144 | - | |
| 145 | - | |
| 146 | - <!-- triggers ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ --> | |
| 147 | - <!-- 시스템 로그 요약 스케줄러 --> | |
| 148 | - <bean id="sysLogScheduler" class="org.springframework.scheduling.quartz.SchedulerFactoryBean"> | |
| 149 | - <property name="triggers"> | |
| 150 | - <list> | |
| 151 | - <ref bean="sysLogTrigger" /><!-- 시스템 로그 요약 --> | |
| 152 | - <ref bean="SttstMsgBeanTrigger" /><!-- 문자발송일별통계집계 --> | |
| 153 | - <ref bean="SttstMsgDayBeanTrigger" /><!-- 문자발송일별통계집계(매일한번) --> | |
| 154 | - <ref bean="SttstMsgRankBeanTrigger" /><!-- 문자전송순위통계집계 --> | |
| 155 | - <ref bean="SttstMsgRankDayBeanTrigger" /><!-- 문자전송순위통계집계(매일한번) --> | |
| 156 | - | |
| 157 | - <!-- mj_msg_data 백업 --> | |
| 158 | - <ref bean="MjMsgDataBackupBeanTrigger" /> | |
| 159 | - | |
| 160 | - </list> | |
| 161 | - </property> | |
| 162 | - </bean> | |
| 163 | - | |
| 164 | - <!-- 문자온 문자발송 실패 환불 처리 --> | |
| 165 | - <!-- <bean id="mjoMsgFailPayBack" class="org.springframework.scheduling.quartz.MethodInvokingJobDetailFactoryBean"> | |
| 166 | - <property name="targetObject" ref="SchdlrManageService" /> | |
| 167 | - <property name="targetMethod" value="msgFailPayBack" /> | |
| 168 | - <property name="concurrent" value="false" /> | |
| 169 | - </bean> | |
| 170 | - | |
| 171 | - 문자온 문자발송 실패 환불처리 배치 시간 셋팅 2분간격으로 실행하기 | |
| 172 | - <bean id="mjoMsgFailTrigger" class="org.springframework.scheduling.quartz.CronTriggerFactoryBean"> | |
| 173 | - <property name="jobDetail" ref="mjoMsgFailPayBack" /> | |
| 174 | - 매 2분 0초 간격마다 실행 | |
| 175 | - <property name="cronExpression" value="0 0/2 * * * ?" /> | |
| 176 | - </bean> | |
| 177 | - | |
| 178 | - 문자온 문자발송 실패 환불 스케줄러 | |
| 179 | - <bean id="mjoMsgFailScheduler" class="org.springframework.scheduling.quartz.SchedulerFactoryBean"> | |
| 180 | - <property name="triggers"> | |
| 181 | - <list> | |
| 182 | - <ref bean="mjoMsgFailTrigger" /> | |
| 183 | - </list> | |
| 184 | - </property> | |
| 185 | - </bean> --> | |
| 186 | - | |
| 187 | - <!-- 스케줄러 메일 전송 --> | |
| 188 | - <!-- <bean id="schMailSending" class="org.springframework.scheduling.quartz.MethodInvokingJobDetailFactoryBean"> | |
| 189 | - <property name="targetObject" ref="egovSchMailSendScheduling" /> | |
| 190 | - <property name="targetMethod" value="schMailSend" /> | |
| 191 | - <property name="concurrent" value="false" /> | |
| 192 | - </bean> --> | |
| 193 | - | |
| 194 | - <!-- 스케줄러 메일 전송 트리거--> | |
| 195 | - <!-- <bean id="schMailSendTrigger" class="org.springframework.scheduling.quartz.SimpleTriggerFactoryBean"> | |
| 196 | - <property name="jobDetail" ref="schMailSending" /> | |
| 197 | - 시작하고 1분후에 실행한다. (milisecond) 60000 | |
| 198 | - <property name="startDelay" value="0" /> | |
| 199 | - 매 24시간마다 실행한다.864000000 (milisecond) | |
| 200 | - <property name="repeatInterval" value="60000" /> | |
| 201 | - </bean> --> | |
| 202 | - <!-- <bean id="schMailSendTrigger" class="org.springframework.scheduling.quartz.CronTriggerFactoryBean"> | |
| 203 | - <property name="jobDetail" ref="schMailSending" /> | |
| 204 | - | |
| 205 | - 매 50초마다 실행 | |
| 206 | - <property name="cronExpression" value="50 * * * * ?" /> | |
| 207 | - secs mins hrs dom(day) month dow(week) year(option) | |
| 208 | - https://www.leafcats.com/94 참조 | |
| 209 | - d | |
| 210 | - <property name="cronExpression" value="* * 01 * * ?" /> | |
| 211 | - </bean> --> | |
| 212 | - | |
| 213 | - <!-- 스케줄러 메일 전송 스케줄러 --> | |
| 214 | - <!-- <bean id="schMailSendScheduler" class="org.springframework.scheduling.quartz.SchedulerFactoryBean"> | |
| 215 | - <property name="triggers"> | |
| 216 | - <list> | |
| 217 | - <ref bean="schMailSendTrigger" /> | |
| 218 | - </list> | |
| 219 | - </property> | |
| 220 | - </bean> --> | |
| 221 | - | |
| 222 | - | |
| 223 | -</beans> |
--- target/classes/egovframework/spring/com/context-security.xml
... | ... | @@ -1,94 +0,0 @@ |
| 1 | -<?xml version="1.0" encoding="UTF-8"?> | |
| 2 | -<beans xmlns="http://www.springframework.org/schema/beans" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" | |
| 3 | - xmlns:egov-security="http://www.egovframe.go.kr/schema/egov-security" | |
| 4 | - xmlns:security="http://www.springframework.org/schema/security" | |
| 5 | - xsi:schemaLocation="http://www.springframework.org/schema/beans http://www.springframework.org/schema/beans/spring-beans-4.0.xsd | |
| 6 | - http://www.springframework.org/schema/security http://www.springframework.org/schema/security/spring-security-4.2.xsd | |
| 7 | - http://www.egovframe.go.kr/schema/egov-security http://www.egovframe.go.kr/schema/egov-security/egov-security-3.7.xsd"> | |
| 8 | - | |
| 9 | - <security:http pattern="/css/**" security="none"/> | |
| 10 | - <security:http pattern="/html/**" security="none"/> | |
| 11 | - <security:http pattern="/images/**" security="none"/> | |
| 12 | - <security:http pattern="/js/**" security="none"/> | |
| 13 | - <security:http pattern="/resource/**" security="none"/> | |
| 14 | - <security:http pattern="\A/WEB-INF/jsp/.*\Z" request-matcher="regex" security="none"/> | |
| 15 | - | |
| 16 | - <egov-security:config id="securityConfig" | |
| 17 | - loginUrl="/uat/uia/actionMain.do" | |
| 18 | - logoutSuccessUrl="/uat/uia/actionMain.do" | |
| 19 | - loginFailureUrl="/uat/uia/actionSecurityLogin.do?login_error=1" | |
| 20 | - accessDeniedUrl="/sec/ram/accessDenied.do" | |
| 21 | - | |
| 22 | - dataSource="egov.dataSource" | |
| 23 | - | |
| 24 | - jdbcUsersByUsernameQuery="SELECT USER_ID, ESNTL_ID AS PASSWORD, 1 ENABLED, USER_NM, USER_ZIP, | |
| 25 | - USER_ADRES, USER_EMAIL, USER_SE, '-' ORGNZT_ID, ESNTL_ID, MBTLNUM AS MOBLPHONNO, | |
| 26 | - '-' ORGNZT_NM, AUTHOR_CODE AS AUTHORITY, DEPT | |
| 27 | - FROM COMVNUSERMASTER A | |
| 28 | - INNER JOIN LETTNEMPLYRSCRTYESTBS B ON A.ESNTL_ID = B.SCRTY_DTRMN_TRGET_ID | |
| 29 | - WHERE CONCAT(USER_SE, USER_ID) = ?" | |
| 30 | - | |
| 31 | - jdbcAuthoritiesByUsernameQuery="SELECT A.SCRTY_DTRMN_TRGET_ID USER_ID, A.AUTHOR_CODE AUTHORITY | |
| 32 | - FROM LETTNEMPLYRSCRTYESTBS A, COMVNUSERMASTER B | |
| 33 | - WHERE A.SCRTY_DTRMN_TRGET_ID = B.ESNTL_ID AND B.USER_ID = ?" | |
| 34 | - | |
| 35 | - jdbcMapClass="itn.let.uat.uia.service.impl.EgovSessionMapping" | |
| 36 | - | |
| 37 | - requestMatcherType="regex" | |
| 38 | - hash="plaintext" | |
| 39 | - hashBase64="false" | |
| 40 | - | |
| 41 | - concurrentMaxSessons="999" | |
| 42 | - concurrentExpiredUrl="/" | |
| 43 | - | |
| 44 | - defaultTargetUrl="/uat/uia/actionMain.do" | |
| 45 | - | |
| 46 | - /> | |
| 47 | - | |
| 48 | -<!--원 소스 --> | |
| 49 | -<!-- defaultTargetUrl="/uat/uia/actionMain.do" --> | |
| 50 | - | |
| 51 | - <!-- sqlHierarchicalRoles=" | |
| 52 | - SELECT a.CHLDRN_ROLE child, a.PARNTS_ROLE parent | |
| 53 | - FROM LETTNROLES_HIERARCHY a LEFT JOIN LETTNROLES_HIERARCHY b on (a.CHLDRN_ROLE = b.PARNTS_ROLE)" --> | |
| 54 | - | |
| 55 | - <egov-security:secured-object-config id="securedObjectConfig" | |
| 56 | - roleHierarchyString=" | |
| 57 | - ROLE_ADMIN > ROLE_USER_MEMBER | |
| 58 | - ROLE_USER_MEMBER > ROLE_ANONYMOUS" | |
| 59 | - | |
| 60 | - sqlRolesAndUrl=" | |
| 61 | - SELECT a.ROLE_PTTRN url, b.AUTHOR_CODE authority | |
| 62 | - FROM LETTNROLEINFO a, LETTNAUTHORROLERELATE b | |
| 63 | - WHERE a.ROLE_CODE = b.ROLE_CODE AND a.ROLE_TY = 'url' | |
| 64 | - ORDER BY a.ROLE_SORT" | |
| 65 | - | |
| 66 | - sqlRolesAndMethod=" | |
| 67 | - SELECT a.ROLE_PTTRN method, b.AUTHOR_CODE authority | |
| 68 | - FROM LETTNROLEINFO a, LETTNAUTHORROLERELATE b | |
| 69 | - WHERE a.ROLE_CODE = b.ROLE_CODE AND a.ROLE_TY = 'method' | |
| 70 | - ORDER BY a.ROLE_SORT" | |
| 71 | - | |
| 72 | - sqlRolesAndPointcut=" | |
| 73 | - SELECT a.ROLE_PTTRN pointcut, b.AUTHOR_CODE authority | |
| 74 | - FROM LETTNROLEINFO a, LETTNAUTHORROLERELATE b | |
| 75 | - WHERE a.ROLE_CODE = b.ROLE_CODE AND a.ROLE_TY = 'pointcut' | |
| 76 | - ORDER BY a.ROLE_SORT" | |
| 77 | - | |
| 78 | - sqlRegexMatchedRequestMapping=" | |
| 79 | - SELECT a.resource_pattern uri, b.authority authority | |
| 80 | - FROM LETTNROLEINFO a, LETTNAUTHORROLERELATE b | |
| 81 | - WHERE a.ROLE_CODE = b.ROLE_CODE AND a.ROLE_TY = 'regex' | |
| 82 | - ORDER BY a.ROLE_SORT" | |
| 83 | - | |
| 84 | - /> | |
| 85 | - | |
| 86 | - <egov-security:initializer id="initializer" supportMethod="true" supportPointcut="false" /> | |
| 87 | - | |
| 88 | - <!-- URL에 세미콜론(semicolon)허용 여부(기본값/false) --> | |
| 89 | - <bean id="egovStrictHttpFirewall" class="org.springframework.security.web.firewall.StrictHttpFirewall"> | |
| 90 | - <property name="allowSemicolon" value="true"/> | |
| 91 | - </bean> | |
| 92 | - <security:http-firewall ref="egovStrictHttpFirewall"/> | |
| 93 | - | |
| 94 | -</beans> |
--- target/classes/egovframework/spring/com/context-sqlMap.xml
... | ... | @@ -1,53 +0,0 @@ |
| 1 | -<?xml version="1.0" encoding="UTF-8"?> | |
| 2 | -<beans xmlns="http://www.springframework.org/schema/beans" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" | |
| 3 | - xsi:schemaLocation="http://www.springframework.org/schema/beans http://www.springframework.org/schema/beans/spring-beans-4.0.xsd"> | |
| 4 | - | |
| 5 | - <!-- lob Handler --> | |
| 6 | - <bean id="lobHandler" class="org.springframework.jdbc.support.lob.DefaultLobHandler" lazy-init="true" /> | |
| 7 | - | |
| 8 | - <!-- SqlMap setup for iBATIS Database Layer --> | |
| 9 | - <bean id="sqlMapClient" class="egovframework.rte.psl.orm.ibatis.SqlMapClientFactoryBean"> | |
| 10 | - <property name="configLocations"> | |
| 11 | - <list> | |
| 12 | - <value>classpath:/egovframework/sqlmap/config/${Globals.DbType}/*.xml</value> | |
| 13 | - </list> | |
| 14 | - </property> | |
| 15 | - <property name="dataSource" ref="dataSource-${Globals.DbType}"/> | |
| 16 | - <property name="lobHandler" ref="lobHandler"/> | |
| 17 | - </bean> | |
| 18 | - | |
| 19 | - <!-- SqlMap setup for iBATIS Database Layer --> | |
| 20 | - <bean id="egov.sqlMapClient" class="egovframework.rte.psl.orm.ibatis.SqlMapClientFactoryBean"> | |
| 21 | - <property name="configLocations"> | |
| 22 | - <list> | |
| 23 | - <value>classpath:/egovframework/sqlmap/config/${Globals.DbType}/*.xml</value> | |
| 24 | - </list> | |
| 25 | - </property> | |
| 26 | - <property name="dataSource" ref="dataSource-${Globals.DbType}"/> | |
| 27 | - <property name="lobHandler" ref="lobHandler"/> | |
| 28 | - </bean> | |
| 29 | - | |
| 30 | - | |
| 31 | - | |
| 32 | - <bean id="oracleSqlMapClient" class="egovframework.rte.psl.orm.ibatis.SqlMapClientFactoryBean"> | |
| 33 | - <property name="configLocations"> | |
| 34 | - <list> | |
| 35 | - <value>classpath:/egovframework/sqlmap/config/oracle/*.xml</value> | |
| 36 | - </list> | |
| 37 | - </property> | |
| 38 | - <property name="dataSource" ref="dataSource-oracle"/> | |
| 39 | - <property name="lobHandler" ref="lobHandler"/> | |
| 40 | - </bean> | |
| 41 | - | |
| 42 | - <!-- kcdf maria migration --> | |
| 43 | - <bean id="kcdfSqlMapClient" class="egovframework.rte.psl.orm.ibatis.SqlMapClientFactoryBean"> | |
| 44 | - <property name="configLocations"> | |
| 45 | - <list> | |
| 46 | - <value>classpath:/egovframework/sqlmap/config/maria/*.xml</value> | |
| 47 | - </list> | |
| 48 | - </property> | |
| 49 | - <property name="dataSource" ref="dataSource-kcdf"/> | |
| 50 | - <property name="lobHandler" ref="lobHandler"/> | |
| 51 | - </bean> | |
| 52 | - | |
| 53 | -</beans> |
--- target/classes/egovframework/spring/com/context-syslogaop.xml
... | ... | @@ -1,34 +0,0 @@ |
| 1 | -<?xml version="1.0" encoding="UTF-8"?> | |
| 2 | -<beans xmlns="http://www.springframework.org/schema/beans" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" | |
| 3 | - xmlns:aop="http://www.springframework.org/schema/aop" | |
| 4 | - xsi:schemaLocation="http://www.springframework.org/schema/beans http://www.springframework.org/schema/beans/spring-beans-4.0.xsd | |
| 5 | - http://www.springframework.org/schema/aop http://www.springframework.org/schema/aop/spring-aop-4.0.xsd"> | |
| 6 | - | |
| 7 | - <!-- System Log Aspect --> | |
| 8 | - <bean id="logManage" class="itn.let.sym.log.clg.service.EgovLoginLogAspect" /> | |
| 9 | - <aop:config> | |
| 10 | - <aop:aspect id="logManageAspect" ref="logManage"> | |
| 11 | - <!-- 로그인 Method --> | |
| 12 | - <aop:before pointcut="execution(public * itn.let.uat.uia.service.EgovLoginService.actionLogin(..))" method="logLogin" /> | |
| 13 | - <!-- 로그아웃 Method | |
| 14 | - <aop:before pointcut="execution(public * itn.let.uat.uia.web.EgovLoginController.actionLogout(..))" method="logLogout" /> | |
| 15 | - --> | |
| 16 | - </aop:aspect> | |
| 17 | - </aop:config> | |
| 18 | - | |
| 19 | - <!-- System Log Aspect --> | |
| 20 | - <!-- <bean id="syslog" class="itn.let.sym.log.lgm.service.EgovSysLogAspect" /> | |
| 21 | - <aop:config> | |
| 22 | - <aop:aspect id="sysLogAspect" ref="syslog"> --> | |
| 23 | - <!-- insert로 시작되는 service Method --> | |
| 24 | - <!-- <aop:around pointcut="execution(public * itn.com..impl.*Impl.insert*(..))" method="logInsert" /> --> | |
| 25 | - <!-- update로 시작되는 service Method --> | |
| 26 | - <!-- <aop:around pointcut="execution(public * itn.com..impl.*Impl.update*(..))" method="logUpdate" /> --> | |
| 27 | - <!-- delete로 시작되는 service Method --> | |
| 28 | - <!-- <aop:around pointcut="execution(public * itn.com..impl.*Impl.delete*(..))" method="logDelete" /> --> | |
| 29 | - <!-- select로 시작되는 service Method --> | |
| 30 | - <!-- <aop:around pointcut="execution(public * itn.com..impl.*Impl.select*(..))" method="logSelect" /> --> | |
| 31 | - <!-- 관리자 로그를 위한 메소드 --> | |
| 32 | - <!-- </aop:aspect> | |
| 33 | - </aop:config> --> | |
| 34 | -</beans>(No newline at end of file) |
--- target/classes/egovframework/spring/com/context-transaction.xml
... | ... | @@ -1,25 +0,0 @@ |
| 1 | -<?xml version="1.0" encoding="UTF-8"?> | |
| 2 | -<beans xmlns="http://www.springframework.org/schema/beans" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" | |
| 3 | - xmlns:aop="http://www.springframework.org/schema/aop" | |
| 4 | - xmlns:tx="http://www.springframework.org/schema/tx" | |
| 5 | - xsi:schemaLocation="http://www.springframework.org/schema/beans http://www.springframework.org/schema/beans/spring-beans-4.0.xsd | |
| 6 | - http://www.springframework.org/schema/tx http://www.springframework.org/schema/tx/spring-tx-4.0.xsd | |
| 7 | - http://www.springframework.org/schema/aop http://www.springframework.org/schema/aop/spring-aop-4.0.xsd"> | |
| 8 | - | |
| 9 | - <!-- transaction 설정 --> | |
| 10 | - <bean id="txManager" class="org.springframework.jdbc.datasource.DataSourceTransactionManager"> | |
| 11 | - <property name="dataSource" ref="dataSource"/> | |
| 12 | - </bean> | |
| 13 | - | |
| 14 | - <tx:advice id="txAdvice" transaction-manager="txManager"> | |
| 15 | - <tx:attributes> | |
| 16 | - <tx:method name="*" rollback-for="Exception"/> | |
| 17 | - </tx:attributes> | |
| 18 | - </tx:advice> | |
| 19 | - | |
| 20 | - <aop:config> | |
| 21 | - <aop:pointcut id="requiredTx" expression="execution(* itn.let..impl.*Impl.*(..)) or execution(* itn.com..*Impl.*(..))"/> | |
| 22 | - <aop:advisor advice-ref="txAdvice" pointcut-ref="requiredTx" /> | |
| 23 | - </aop:config> | |
| 24 | - | |
| 25 | -</beans> |
--- target/classes/egovframework/spring/com/context-validator.xml
... | ... | @@ -1,21 +0,0 @@ |
| 1 | -<?xml version="1.0" encoding="UTF-8"?> | |
| 2 | -<beans xmlns="http://www.springframework.org/schema/beans" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" | |
| 3 | - xsi:schemaLocation="http://www.springframework.org/schema/beans http://www.springframework.org/schema/beans/spring-beans-4.0.xsd"> | |
| 4 | - | |
| 5 | - <!-- Integration Apache Commons Validator by Spring Modules --> | |
| 6 | - <bean id="beanValidator" class="org.springmodules.validation.commons.DefaultBeanValidator"> | |
| 7 | - <property name="validatorFactory" ref="validatorFactory"/> | |
| 8 | - </bean> | |
| 9 | - | |
| 10 | - <bean id="validatorFactory" class="org.springmodules.validation.commons.DefaultValidatorFactory"> | |
| 11 | - <property name="validationConfigLocations"> | |
| 12 | - <list> | |
| 13 | - <!-- 경량환경 템플릿 밸리데이터 설정 --> | |
| 14 | - <value>classpath:/egovframework/validator/validator-rules-let.xml</value> | |
| 15 | - <value>classpath:/egovframework/validator/let/**/*.xml</value> | |
| 16 | - <value>classpath:/egovframework/validator/**/*.xml</value> <!-- allInOne 배너등 추가시 --> | |
| 17 | - </list> | |
| 18 | - </property> | |
| 19 | - </bean> | |
| 20 | - | |
| 21 | -</beans> |
--- target/classes/egovframework/sqlmap/com/migration/SQL_Kcdf.xml
... | ... | @@ -1,43 +0,0 @@ |
| 1 | -<?xml version="1.0" encoding="UTF-8"?> | |
| 2 | -<!DOCTYPE sqlMap PUBLIC "-//iBATIS.com//DTD SQL Map 2.0//EN" "http://www.ibatis.com/dtd/sql-map-config-2.dtd"> | |
| 3 | -<sqlMap> | |
| 4 | - <typeAlias alias="KcdfNewBbsVO" type="egovframework.migration.service.KcdfNewBbsVO"/> | |
| 5 | - | |
| 6 | - <select id="KcdfNewDAO.selectKcdfBasicCount" resultClass="int" > | |
| 7 | - SELECT COUNT(*) FROM lettnbbs | |
| 8 | - </select> | |
| 9 | - | |
| 10 | - <select id="KcdfNewDAO.selectKcdfBbsList" parameterClass="KcdfNewBbsVO" resultClass="KcdfNewBbsVO" > | |
| 11 | - <![CDATA[ | |
| 12 | - SELECT | |
| 13 | - NTT_ID, | |
| 14 | - BBS_ID, | |
| 15 | - NTT_NO, | |
| 16 | - NTT_SJ, | |
| 17 | - NTT_CN, | |
| 18 | - ANSWER_AT, | |
| 19 | - PARNTSCTT_NO, | |
| 20 | - ANSWER_LC, | |
| 21 | - SORT_ORDR, | |
| 22 | - RDCNT, | |
| 23 | - USE_AT, | |
| 24 | - NTCE_BGNDE, | |
| 25 | - NTCE_ENDDE, | |
| 26 | - NTCR_ID, | |
| 27 | - NTCR_NM, | |
| 28 | - PASSWORD, | |
| 29 | - ATCH_FILE_ID, | |
| 30 | - FRST_REGIST_PNTTM, | |
| 31 | - FRST_REGISTER_ID, | |
| 32 | - LAST_UPDT_PNTTM, | |
| 33 | - LAST_UPDUSR_ID, | |
| 34 | - NOTICE_AT, | |
| 35 | - SECRET_AT | |
| 36 | - FROM | |
| 37 | - lettnbbs | |
| 38 | - LIMIT #recordCountPerPage# OFFSET #firstIndex# | |
| 39 | - ]]> | |
| 40 | - </select> | |
| 41 | - | |
| 42 | - | |
| 43 | -</sqlMap> (No newline at end of file) |
--- target/classes/egovframework/sqlmap/com/migration/SQL_Ncms.xml
... | ... | @@ -1,64 +0,0 @@ |
| 1 | -<?xml version="1.0" encoding="UTF-8"?> | |
| 2 | -<!DOCTYPE sqlMap PUBLIC "-//iBATIS.com//DTD SQL Map 2.0//EN" "http://www.ibatis.com/dtd/sql-map-config-2.dtd"> | |
| 3 | -<sqlMap> | |
| 4 | - <typeAlias alias="KcdfNewBbsVO" type="egovframework.migration.service.KcdfNewBbsVO"/> | |
| 5 | - | |
| 6 | - <insert id="NcmsDAO.insertNcmsBbsInfo" parameterClass="KcdfNewBbsVO"> | |
| 7 | - <![CDATA[ | |
| 8 | - INSERT INTO LETTNBBS_BACK | |
| 9 | - ( | |
| 10 | - NTT_ID, | |
| 11 | - BBS_ID, | |
| 12 | - NTT_NO, | |
| 13 | - NTT_SJ, | |
| 14 | - NTT_CN, | |
| 15 | - ANSWER_AT, | |
| 16 | - PARNTSCTT_NO, | |
| 17 | - ANSWER_LC, | |
| 18 | - SORT_ORDR, | |
| 19 | - RDCNT, | |
| 20 | - USE_AT, | |
| 21 | - NTCE_BGNDE, | |
| 22 | - NTCE_ENDDE, | |
| 23 | - NTCR_ID, | |
| 24 | - NTCR_NM, | |
| 25 | - PASSWORD, | |
| 26 | - ATCH_FILE_ID, | |
| 27 | - FRST_REGIST_PNTTM, | |
| 28 | - FRST_REGISTER_ID, | |
| 29 | - LAST_UPDT_PNTTM, | |
| 30 | - LAST_UPDUSR_ID, | |
| 31 | - NOTICE_AT, | |
| 32 | - SECRET_AT | |
| 33 | - ) | |
| 34 | - VALUES | |
| 35 | - ( | |
| 36 | - #NTT_ID#, | |
| 37 | - #BBS_ID#, | |
| 38 | - #NTT_NO#, | |
| 39 | - #NTT_SJ#, | |
| 40 | - #NTT_CN#, | |
| 41 | - #ANSWER_AT#, | |
| 42 | - #PARNTSCTT_NO#, | |
| 43 | - #ANSWER_LC#, | |
| 44 | - #SORT_ORDR#, | |
| 45 | - #RDCNT#, | |
| 46 | - #USE_AT#, | |
| 47 | - #NTCE_BGNDE#, | |
| 48 | - #NTCE_ENDDE#, | |
| 49 | - #NTCR_ID#, | |
| 50 | - #NTCR_NM#, | |
| 51 | - #PASSWORD#, | |
| 52 | - #ATCH_FILE_ID#, | |
| 53 | - #FRST_REGIST_PNTTM#, | |
| 54 | - #FRST_REGISTER_ID#, | |
| 55 | - #LAST_UPDT_PNTTM#, | |
| 56 | - #LAST_UPDUSR_ID#, | |
| 57 | - #NOTICE_AT#, | |
| 58 | - #SECRET_AT# | |
| 59 | - ) | |
| 60 | - ]]> | |
| 61 | - </insert> | |
| 62 | - | |
| 63 | - | |
| 64 | -</sqlMap> (No newline at end of file) |
--- target/classes/egovframework/sqlmap/com/migration/SQL_Oracle.xml
... | ... | @@ -1,120 +0,0 @@ |
| 1 | -<?xml version="1.0" encoding="UTF-8"?> | |
| 2 | -<!DOCTYPE sqlMap PUBLIC "-//iBATIS.com//DTD SQL Map 2.0//EN" "http://www.ibatis.com/dtd/sql-map-config-2.dtd"> | |
| 3 | -<sqlMap> | |
| 4 | - <!-- <typeAlias alias="OrcaleTestVO" type="egovframework.test.service.OrcaleTestVO"/> | |
| 5 | - | |
| 6 | - <select id="OrcalTestDAO.selectOracleBasicCount" resultClass="int" > | |
| 7 | - SELECT COUNT(*) FROM TB_BBS_BASIC | |
| 8 | - </select> | |
| 9 | - | |
| 10 | - <select id="OrcalTestDAO.selectOracleBasicList" resultClass="OrcaleTestVO" > | |
| 11 | - <![CDATA[ | |
| 12 | - SELECT | |
| 13 | - BBS_CD_N | |
| 14 | - , BBS_SEQ_N | |
| 15 | - , BBS_IDX_N | |
| 16 | - , BBS_REF_N | |
| 17 | - , BBS_DEPTH_N | |
| 18 | - , TITLE_V | |
| 19 | - , READ_CNT_N | |
| 20 | - , START_DT_V | |
| 21 | - , END_DT_V | |
| 22 | - , COMMENT_CNT_N | |
| 23 | - , FILE_CNT_N | |
| 24 | - , TAG_CNT_N | |
| 25 | - , RATE_CNT_N | |
| 26 | - , SECRET_YN_C | |
| 27 | - , NOTICE_YN_C | |
| 28 | - , EDITOR_YN_C | |
| 29 | - , BEST_YN_C | |
| 30 | - , DELETE_YN_C | |
| 31 | - , PERMITS_YN_C | |
| 32 | - , PERMITS_ID_V | |
| 33 | - , PERMITS_DT_V | |
| 34 | - , USER_ID_V | |
| 35 | - , USER_NM_V | |
| 36 | - , USER_PWD_V | |
| 37 | - , USER_EMAIL_V | |
| 38 | - , USER_IP_V | |
| 39 | - , USER_NATION_C | |
| 40 | - , UPD_ID_V | |
| 41 | - , REG_DT_D | |
| 42 | - , UPD_DT_D | |
| 43 | - , CONTENT_L | |
| 44 | - , ANSWER_L | |
| 45 | - , CTG_CD_N | |
| 46 | - , SUMMARY_V | |
| 47 | - , MGR_DEPT_CD_V | |
| 48 | - , IPIN_NO_V | |
| 49 | - , MAIN_DISPLAY_C | |
| 50 | - , KEY_WORD_V | |
| 51 | - , LINK_URL_V | |
| 52 | - , IMAGE_URL_V | |
| 53 | - , MGR_DEPT_NM_V | |
| 54 | - , RATE_SUM_N | |
| 55 | - , PERMITS_NM_V | |
| 56 | - , PERMITS_EMAIL_V | |
| 57 | - , PERMITS_PHONE_V | |
| 58 | - , USER_PHONE_V | |
| 59 | - , REG_ID_V | |
| 60 | - FROM | |
| 61 | - TB_BBS_BASIC | |
| 62 | - ]]> | |
| 63 | - </select> | |
| 64 | - | |
| 65 | - <select id="OrcalTestDAO.selectOraclePublishCount" resultClass="int" > | |
| 66 | - SELECT COUNT(*) FROM PUBLISH | |
| 67 | - </select> | |
| 68 | - | |
| 69 | - <select id="OrcalTestDAO.selectOraclePublishList" resultClass="OrcaleTestVO" > | |
| 70 | - <![CDATA[ | |
| 71 | - SELECT | |
| 72 | - NO | |
| 73 | - ,TITLE | |
| 74 | - ,AUTHOR | |
| 75 | - ,RELATE_DPT | |
| 76 | - ,ISSUE_YEAR | |
| 77 | - ,TYPE,PAGES | |
| 78 | - ,PRICE | |
| 79 | - ,ORG_VIEW | |
| 80 | - ,CONTENT | |
| 81 | - ,HIT | |
| 82 | - ,YES_NO | |
| 83 | - ,RDATE | |
| 84 | - ,IMG_FILE | |
| 85 | - ,PCODE | |
| 86 | - ,ORG_VIEW_PATH | |
| 87 | - ,IMG_FILE_PATH | |
| 88 | - ,ALLOW_VIEW | |
| 89 | - FROM | |
| 90 | - PUBLISH | |
| 91 | - ]]> | |
| 92 | - </select> | |
| 93 | - | |
| 94 | - <select id="OrcalTestDAO.selectOracleFileCount" resultClass="int" > | |
| 95 | - SELECT COUNT(*) FROM TB_BBS_FILE | |
| 96 | - </select> | |
| 97 | - | |
| 98 | - <select id="OrcalTestDAO.selectOracleFileList" resultClass="OrcaleTestVO" > | |
| 99 | - <![CDATA[ | |
| 100 | - SELECT | |
| 101 | - BBS_CD_N,FILE_SEQ_N,BBS_SEQ_N,FILE_NM_V,FILE_PATH_V,FILE_SIZE_N,FILE_TYPE_V,FILE_KIND_V,DOWN_CNT_N,REG_ID_V,REG_DT_D,UPD_ID_V,UPD_DT_D,FILE_COMMENT_V | |
| 102 | - FROM | |
| 103 | - TB_BBS_FILE | |
| 104 | - ]]> | |
| 105 | - </select> | |
| 106 | - | |
| 107 | - <select id="OrcalTestDAO.selectOracleResrvationCount" resultClass="int" > | |
| 108 | - SELECT COUNT(*) FROM RESERVATION | |
| 109 | - </select> | |
| 110 | - | |
| 111 | - <select id="OrcalTestDAO.selectOracleResrvationList" resultClass="OrcaleTestVO" > | |
| 112 | - <![CDATA[ | |
| 113 | - SELECT | |
| 114 | - APPLY_NUM,USER_NAME,USER_NUM1,USER_NUM2,USER_ENAME,RES_NUM,GROUP_NAME,GROUP_ENAME,RES_SDATE,RES_EDATE,RES_PERIOD,RES_PRICE,EX_ROOM1,EX_ROOM2,EX_ROOM3,EX_ROOM4,AREA,PREMIUM,EX_FIELD,SEX,POSTAL_NUM1,POSTAL_NUM2,ADDRESS1,ADDRESS2,TEL_HOME1,TEL_HOME2,TEL_HOME3,TEL_MOBILE1,TEL_MOBILE2,TEL_MOBILE3,TEL_WORK1,TEL_WORK2,TEL_WORK3,FAX1,FAX2,FAX3,EMAIL,HOMEPAGE,EX_NAME,EX_SUBJECT,EX_MATTER,EX_METHOD,EX_STANDARD,RES_STATE,EX_DEVISE,RES_START,BANK,OWNER,ACCOUNT_NUM,REASON,RECIEVE_MONEY,IMAGE_NAME,IMAGE_SIZE,EX_EXPLAIN,RECORD_STATUS,TEX_NEED,TEX_TYPE,TEX_NAME,TEX_NUM,TEX_FIELD,TEX_CLASSIFY,TEX_POST1,TEX_POST2,TEX_ADDRESS1,TEX_ADDRESS2,MEMBER_ID,COMPANY_NAME,COMPANY_NUMBER,SUBITEM,PORTFOLIO_FILE,PLANEXH_PLACE,DISPLAY,MAINDISPLAY,AUTHOR_NAME,MEMBER_PW,EX_ROOM5,EX_ROOM6,EX_HOURS,EX_TEL1,EX_TEL2,EX_TEL3,IMAGE_PATH,PORTFOLIO_PATH,PORTFOLIO_SIZE,COMPANY_FIELD,COMPANY_CLASSIFY,USER_TYPE,ZIP_CODE,TEX_ZIP | |
| 115 | - FROM | |
| 116 | - RESERVATION | |
| 117 | - ]]> | |
| 118 | - </select> --> | |
| 119 | - | |
| 120 | -</sqlMap> (No newline at end of file) |
--- target/classes/egovframework/sqlmap/com/uss/ion/bnr/EgovBanner_SQL_Mysql.xml
... | ... | @@ -1,291 +0,0 @@ |
| 1 | -<?xml version="1.0" encoding="UTF-8"?> | |
| 2 | - | |
| 3 | -<!DOCTYPE sqlMap PUBLIC "-//ibatis.apache.org//DTD SQL Map 2.0//EN" "http://ibatis.apache.org/dtd/sql-map-2.dtd"> | |
| 4 | - | |
| 5 | -<sqlMap namespace="Banner"> | |
| 6 | - | |
| 7 | - <typeAlias alias="Banner" type="itn.com.uss.ion.bnr.service.Banner"/> | |
| 8 | - <typeAlias alias="BannerVO" type="itn.com.uss.ion.bnr.service.BannerVO"/> | |
| 9 | - <typeAlias alias="sortVO" type="itn.com.uss.ion.pwm.service.SortVO"/> | |
| 10 | - | |
| 11 | - <resultMap id="banner" class="itn.com.uss.ion.bnr.service.BannerVO"> | |
| 12 | - <result property="bannerId" column="BANNER_ID" columnIndex="1"/> | |
| 13 | - <result property="bannerNm" column="BANNER_NM" columnIndex="2"/> | |
| 14 | - <result property="linkUrl" column="LINK_URL" columnIndex="3"/> | |
| 15 | - <result property="bannerImage" column="BANNER_IMAGE" columnIndex="4"/> | |
| 16 | - <result property="bannerImageFile" column="BANNER_IMAGE_FILE" columnIndex="5"/> | |
| 17 | - <result property="bannerDc" column="BANNER_DC" columnIndex="6"/> | |
| 18 | - <result property="sortOrdr" column="SORT_ORDR" columnIndex="7"/> | |
| 19 | - <result property="reflctAt" column="REFLCT_AT" columnIndex="8"/> | |
| 20 | - <result property="userId" column="FRST_REGISTER_ID" columnIndex="9"/> | |
| 21 | - <result property="regDate" column="FRST_REGIST_PNTTM" columnIndex="10"/> | |
| 22 | - <result property="delSttus" column="DEL_STTUS" columnIndex="11"/> | |
| 23 | - | |
| 24 | - </resultMap> | |
| 25 | - | |
| 26 | - <resultMap id="fileList" class="itn.com.cmm.service.FileVO"> | |
| 27 | - <result property="atchFileId" column="ATCH_FILE_ID" columnIndex="1"/> | |
| 28 | - <result property="fileCn" column="FILE_CN" columnIndex="2"/> | |
| 29 | - <result property="fileExtsn" column="FILE_EXTSN" columnIndex="3"/> | |
| 30 | - <result property="fileMg" column="FILE_SIZE" columnIndex="4"/> | |
| 31 | - <result property="fileSn" column="FILE_SN" columnIndex="5"/> | |
| 32 | - <result property="fileStreCours" column="FILE_STRE_COURS" columnIndex="6"/> | |
| 33 | - <result property="orignlFileNm" column="ORIGNL_FILE_NM" columnIndex="7"/> | |
| 34 | - <result property="streFileNm" column="STRE_FILE_NM" columnIndex="8"/> | |
| 35 | - <result property="creatDt" column="CREAT_DT" columnIndex="9"/> | |
| 36 | - </resultMap> | |
| 37 | - | |
| 38 | - <resultMap id="bannerImage" class="itn.com.uss.ion.bnr.service.BannerVO"> | |
| 39 | - <result property="bannerImageFile" column="BANNER_IMAGE_FILE" columnIndex="1"/> | |
| 40 | - <result property="linkUrl" column="LINK_URL" columnIndex="2"/> | |
| 41 | - </resultMap> | |
| 42 | - | |
| 43 | - <resultMap id="bannerImageFile" class="itn.com.cmm.service.FileVO"> | |
| 44 | - <result property="fileStreCours" column="FILE_STRE_COURS" columnIndex="1"/> | |
| 45 | - <result property="streFileNm" column="STRE_FILE_NM" columnIndex="2"/> | |
| 46 | - </resultMap> | |
| 47 | - | |
| 48 | - <select id="bannerDAO.selectBannerList" parameterClass="BannerVO" resultClass="BannerVO"> | |
| 49 | - SELECT BANNER_ID AS BANNERID, | |
| 50 | - BANNER_NM AS BANNERNM, | |
| 51 | - LINK_URL AS LINKURL, | |
| 52 | - BANNER_IMAGE AS BANNERIMAGE, | |
| 53 | - BANNER_IMAGE_FILE AS BANNERIMAGEFILE , | |
| 54 | - BANNER_DC AS BANNERDC , | |
| 55 | - SORT_ORDR AS SORTORDR , | |
| 56 | - REFLCT_AT AS REFLCTAT, | |
| 57 | - (SELECT USER_NM FROM LETTNEMPLYRINFO WHERE EMPLYR_ID = FRST_REGISTER_ID) REGISTERID, | |
| 58 | - DATE_FORMAT(FRST_REGIST_PNTTM, '%Y-%m-%d') REGDATE, | |
| 59 | - DEL_STTUS AS DELSTTUS | |
| 60 | - FROM COMTNBANNER | |
| 61 | - WHERE 1=1 | |
| 62 | - <isNotEqual property="delSttus" compareValue="Y"> | |
| 63 | - AND DEL_STTUS != 'Y' | |
| 64 | - </isNotEqual> | |
| 65 | - <isNotEmpty property="seCd"> | |
| 66 | - AND SE_CD = #seCd# | |
| 67 | - </isNotEmpty> | |
| 68 | - | |
| 69 | - <isNotEmpty property="searchKeyword"> | |
| 70 | - <isEqual property="searchCondition" compareValue=""> | |
| 71 | - AND ( BANNER_NM LIKE CONCAT ('%', #searchKeyword#,'%') | |
| 72 | - OR LINK_URL LIKE CONCAT ('%', #searchKeyword#,'%') | |
| 73 | - ) | |
| 74 | - </isEqual> | |
| 75 | - <isEqual property="searchCondition" compareValue="1"> | |
| 76 | - AND BANNER_NM LIKE CONCAT ('%', #searchKeyword#,'%') | |
| 77 | - </isEqual> | |
| 78 | - <isEqual property="searchCondition" compareValue="2"> | |
| 79 | - AND LINK_URL LIKE CONCAT ('%', #searchKeyword#,'%') | |
| 80 | - </isEqual> | |
| 81 | - </isNotEmpty> | |
| 82 | - <isNotEmpty property="reflctAt"> | |
| 83 | - AND REFLCT_AT = #reflctAt# | |
| 84 | - </isNotEmpty> | |
| 85 | - ORDER BY 1=1 | |
| 86 | - <isNotEmpty property="searchSortCnd"> | |
| 87 | - ,$searchSortCnd$ | |
| 88 | - </isNotEmpty> | |
| 89 | - <isNotEmpty property="searchSortOrd"> | |
| 90 | - $searchSortOrd$ | |
| 91 | - </isNotEmpty> | |
| 92 | - LIMIT #recordCountPerPage# OFFSET #firstIndex# | |
| 93 | - </select> | |
| 94 | - | |
| 95 | - <select id="bannerDAO.selectBannerListTotCnt" parameterClass="BannerVO" resultClass="int"> | |
| 96 | - | |
| 97 | - SELECT COUNT(*) totcnt | |
| 98 | - FROM COMTNBANNER | |
| 99 | - WHERE 1=1 | |
| 100 | - <isNotEqual property="delSttus" compareValue="Y"> | |
| 101 | - AND DEL_STTUS != 'Y' | |
| 102 | - </isNotEqual> | |
| 103 | - <isNotEmpty property="seCd"> | |
| 104 | - AND SE_CD = #seCd# | |
| 105 | - </isNotEmpty> | |
| 106 | - <isNotEmpty property="searchKeyword"> | |
| 107 | - <isEqual property="searchCondition" compareValue=""> | |
| 108 | - AND ( BANNER_NM LIKE CONCAT ('%', #searchKeyword#,'%') | |
| 109 | - OR LINK_URL LIKE CONCAT ('%', #searchKeyword#,'%') | |
| 110 | - ) | |
| 111 | - </isEqual> | |
| 112 | - <isEqual property="searchCondition" compareValue="1"> | |
| 113 | - AND BANNER_NM LIKE CONCAT ('%', #searchKeyword#,'%') | |
| 114 | - </isEqual> | |
| 115 | - <isEqual property="searchCondition" compareValue="2"> | |
| 116 | - AND LINK_URL LIKE CONCAT ('%', #searchKeyword#,'%') | |
| 117 | - </isEqual> | |
| 118 | - </isNotEmpty> | |
| 119 | - </select> | |
| 120 | - | |
| 121 | - <select id="bannerDAO.selectBanner" resultClass="BannerVO"> | |
| 122 | - <![CDATA[ | |
| 123 | - SELECT BANNER_ID AS BANNERID, | |
| 124 | - BANNER_NM AS BANNERNM, | |
| 125 | - LINK_URL AS LINKURL, | |
| 126 | - BANNER_IMAGE AS BANNERIMAGE, | |
| 127 | - BANNER_IMAGE_FILE AS BANNERIMAGEFILE, | |
| 128 | - BANNER_DC AS BANNERDC, | |
| 129 | - SORT_ORDR AS SORTORDR, | |
| 130 | - SORT_ORDR AS sort, | |
| 131 | - REFLCT_AT AS REFLCTAT, | |
| 132 | - DATE_FORMAT(LAST_UPDT_PNTTM, '%Y-%m-%d %T') REGDATE , | |
| 133 | - DEL_STTUS AS DELSTTUS , | |
| 134 | - SE_CD AS SECD , | |
| 135 | - ISTARGET, | |
| 136 | - (SELECT USER_NM FROM LETTNEMPLYRINFO WHERE EMPLYR_ID = FRST_REGISTER_ID) REGISTERID | |
| 137 | - FROM COMTNBANNER | |
| 138 | - WHERE BANNER_ID = #bannerId# | |
| 139 | - ]]> | |
| 140 | - </select> | |
| 141 | - | |
| 142 | - <insert id="bannerDAO.insertBanner" parameterClass="Banner"> | |
| 143 | - INSERT INTO COMTNBANNER | |
| 144 | - (BANNER_ID, | |
| 145 | - BANNER_NM, | |
| 146 | - LINK_URL, | |
| 147 | - BANNER_IMAGE, | |
| 148 | - BANNER_IMAGE_FILE, | |
| 149 | - BANNER_DC, | |
| 150 | - SORT_ORDR, | |
| 151 | - REFLCT_AT, | |
| 152 | - FRST_REGISTER_ID, | |
| 153 | - DEL_STTUS, | |
| 154 | - FRST_REGIST_PNTTM, | |
| 155 | - LAST_UPDT_PNTTM, | |
| 156 | - <isNotEmpty property="seCd"> | |
| 157 | - SE_CD, | |
| 158 | - </isNotEmpty> | |
| 159 | - ISTARGET) | |
| 160 | - VALUES (#bannerId#, | |
| 161 | - #bannerNm#, | |
| 162 | - #linkUrl#, | |
| 163 | - #bannerImage#, | |
| 164 | - #bannerImageFile#, | |
| 165 | - #bannerDc#, | |
| 166 | - #sortOrdr#, | |
| 167 | - #reflctAt#, | |
| 168 | - #userId#, | |
| 169 | - #delSttus#, | |
| 170 | - now(), | |
| 171 | - now(), | |
| 172 | - <isNotEmpty property="seCd"> | |
| 173 | - #seCd#, | |
| 174 | - </isNotEmpty> | |
| 175 | - #istarget#) | |
| 176 | - </insert> | |
| 177 | - | |
| 178 | - <update id="bannerDAO.updateBanner" parameterClass="Banner"> | |
| 179 | - UPDATE COMTNBANNER | |
| 180 | - SET BANNER_NM = #bannerNm#, | |
| 181 | - LINK_URL = #linkUrl#, | |
| 182 | - <isEqual property="isAtchFile" compareValue="true"> | |
| 183 | - BANNER_IMAGE = #bannerImage#, | |
| 184 | - BANNER_IMAGE_FILE = #bannerImageFile#, | |
| 185 | - </isEqual> | |
| 186 | - BANNER_DC = #bannerDc#, | |
| 187 | - SORT_ORDR = #sortOrdr#, | |
| 188 | - REFLCT_AT = #reflctAt#, | |
| 189 | - LAST_UPDUSR_ID = #userId#, | |
| 190 | - <isNotEmpty property="delSttus"> | |
| 191 | - DEL_STTUS = #delSttus#, | |
| 192 | - </isNotEmpty> | |
| 193 | - LAST_UPDT_PNTTM = now(), | |
| 194 | - <isNotEmpty property="siteId"> | |
| 195 | - SITE_ID = #siteId# , | |
| 196 | - </isNotEmpty> | |
| 197 | - ISTARGET = #istarget# | |
| 198 | - WHERE BANNER_ID = #bannerId# | |
| 199 | - </update> | |
| 200 | - | |
| 201 | - <delete id="bannerDAO.deleteBanner" parameterClass="Banner"> | |
| 202 | - <![CDATA[ | |
| 203 | - DELETE FROM COMTNBANNER | |
| 204 | - WHERE BANNER_ID = #bannerId# | |
| 205 | - ]]> | |
| 206 | - <!-- <![CDATA[ | |
| 207 | - UPDATE COMTNBANNER | |
| 208 | - SET DEL_STTUS = #delSttus#, | |
| 209 | - REFLCT_AT = #reflctAt# | |
| 210 | - WHERE BANNER_ID = #bannerId# | |
| 211 | - ]]> --> | |
| 212 | - | |
| 213 | - </delete> | |
| 214 | - | |
| 215 | - <select id="bannerDAO.selectBannerResult" resultMap="bannerImage"> | |
| 216 | - <![CDATA[ | |
| 217 | - SELECT BANNER_IMAGE_FILE, | |
| 218 | - LINK_URL | |
| 219 | - FROM COMTNBANNER | |
| 220 | - WHERE REFLCT_AT = 'Y' | |
| 221 | - ORDER BY SORT_ORDR | |
| 222 | - ]]> | |
| 223 | - </select> | |
| 224 | - | |
| 225 | - <select id="bannerDAO.selectBannerFile" parameterClass="Banner" resultMap="bannerImageFile"> | |
| 226 | - <![CDATA[ | |
| 227 | - SELECT B.FILE_STRE_COURS AS FILE_STRE_COURS, | |
| 228 | - B.STRE_FILE_NM AS STRE_FILE_NM | |
| 229 | - FROM COMTNBANNER A, | |
| 230 | - LETTNFILEDETAIL B /** COMTNFILEDETAIL B 공통모듈의 수정 **/ | |
| 231 | - WHERE 1 = 1 | |
| 232 | - AND A.BANNER_ID = #bannerId# | |
| 233 | - AND A.BANNER_IMAGE_FILE = B.ATCH_FILE_ID | |
| 234 | - ]]> | |
| 235 | - </select> | |
| 236 | - | |
| 237 | - <select id="bannerDAO.getSortList" resultClass="EgovMap"> | |
| 238 | - <![CDATA[ | |
| 239 | - SELECT | |
| 240 | - SORT_ORDR as CM_SUB_CODE, | |
| 241 | - SORT_ORDR as CM_CODE_NAME | |
| 242 | - FROM COMTNBANNER mb | |
| 243 | - WHERE DEL_STTUS = 'N' | |
| 244 | - ORDER BY SORT_ORDR | |
| 245 | - ]]> | |
| 246 | - </select> | |
| 247 | - | |
| 248 | - <select id="bannerDAO.getMaxSort" resultClass="int"> | |
| 249 | - SELECT IF(COUNT(*)=0 ,1, COUNT(*)) FROM COMTNBANNER | |
| 250 | - WHERE DEL_STTUS = 'N' | |
| 251 | - </select> | |
| 252 | - | |
| 253 | - <update id="bannerDAO.updateSortUp" parameterClass="sortVO"> | |
| 254 | - <![CDATA[ | |
| 255 | - UPDATE COMTNBANNER SET | |
| 256 | - SORT_ORDR = SORT_ORDR + 1 | |
| 257 | - WHERE | |
| 258 | - SORT_ORDR >= #startSort# AND SORT_ORDR <= #endSort# | |
| 259 | - ]]> | |
| 260 | - </update> | |
| 261 | - | |
| 262 | - <update id="bannerDAO.resetSort" parameterClass="BannerVO"> | |
| 263 | - UPDATE COMTNBANNER A , | |
| 264 | - (SELECT ROW_NUMBER() OVER(ORDER BY SORT_ORDR | |
| 265 | - <isEqual property="sortOver" compareValue="A"> | |
| 266 | - , LAST_UPDT_PNTTM ASC | |
| 267 | - </isEqual> | |
| 268 | - <isEqual property="sortOver" compareValue="D"> | |
| 269 | - , LAST_UPDT_PNTTM DESC | |
| 270 | - </isEqual> | |
| 271 | - ) AS SORT1 , BANNER_ID FROM COMTNBANNER | |
| 272 | - WHERE 1=1 | |
| 273 | - <isNotEmpty property="seCd"> | |
| 274 | - AND SE_CD = #seCd# | |
| 275 | - </isNotEmpty> | |
| 276 | - ORDER BY SORT1 | |
| 277 | - ) B | |
| 278 | - SET A.SORT_ORDR = B.SORT1 | |
| 279 | - WHERE A.BANNER_ID = B.BANNER_ID | |
| 280 | - </update> | |
| 281 | - | |
| 282 | - <update id="bannerDAO.updateSortDown" parameterClass="sortVO"> | |
| 283 | - <![CDATA[ | |
| 284 | - UPDATE COMTNBANNER SET | |
| 285 | - SORT_ORDR = SORT_ORDR - 1 | |
| 286 | - WHERE | |
| 287 | - SORT_ORDR >= #startSort# AND SORT_ORDR <= #endSort# | |
| 288 | - ]]> | |
| 289 | - </update> | |
| 290 | - | |
| 291 | -</sqlMap>(No newline at end of file) |
--- target/classes/egovframework/sqlmap/com/uss/ion/pub/EgovPublish_SQL_Mysql.xml
... | ... | @@ -1,16 +0,0 @@ |
| 1 | -<?xml version="1.0" encoding="UTF-8"?> | |
| 2 | - | |
| 3 | -<!DOCTYPE sqlMap PUBLIC "-//ibatis.apache.org//DTD SQL Map 2.0//EN" "http://ibatis.apache.org/dtd/sql-map-2.dtd"> | |
| 4 | - | |
| 5 | -<sqlMap namespace="Publish"> | |
| 6 | - <typeAlias alias="publishVO" type="itn.com.uss.ion.pub.service.PublishVO"/> | |
| 7 | - | |
| 8 | - <select id="publishDAO.selectPublishList" parameterClass="publishVO" resultClass="publishVO"> | |
| 9 | - SELECT no , content FROM PUBLISH A | |
| 10 | - WHERE 1=1 | |
| 11 | - AND YES_NO != 'D' | |
| 12 | - AND YES_NO = 'Y' | |
| 13 | - AND PCODE = 1 | |
| 14 | - LIMIT #recordCountPerPage# OFFSET #firstIndex# | |
| 15 | - </select> | |
| 16 | -</sqlMap>(No newline at end of file) |
--- target/classes/egovframework/sqlmap/com/uss/olh/hpc/EgovHpcm_SQL_mysql.xml
... | ... | @@ -1,493 +0,0 @@ |
| 1 | -<?xml version="1.0" encoding="UTF-8"?><!-- | |
| 2 | - 수정일 수정자 수정내용 | |
| 3 | - ========= ======= ================================================= | |
| 4 | - 2011.09.19 서준식 selectHpcmList 등록일자 Character 타입으로 변경 | |
| 5 | - 2011.09.29 서준식 selectHpcmListTotCnt 검색 조건 수정 | |
| 6 | ---> | |
| 7 | -<!DOCTYPE sqlMap PUBLIC "-//iBATIS.com//DTD SQL Map 2.0//EN" "http://www.ibatis.com/dtd/sql-map-config-2.dtd"> | |
| 8 | -<sqlMap namespace="Hpcm"> | |
| 9 | - <typeAlias alias="HpcmVO" type="itn.com.uss.olh.hpc.service.HpcmVO"/> | |
| 10 | - <typeAlias alias="hackIpVO" type="itn.com.uss.olh.hpc.service.HackIpVO"/> | |
| 11 | - | |
| 12 | - <select id="Hpcm.selectHpcmDetail" parameterClass="HpcmVO" resultClass="HpcmVO"> | |
| 13 | - SELECT A.HPCM_ID AS hpcmId, | |
| 14 | - A.HPCM_SE_CODE AS hpcmSeCode, | |
| 15 | - B.CODE_NM AS hpcmSeCodeTxt, | |
| 16 | - A.HPCM_DFN AS hpcmDfn, | |
| 17 | - HPCM_DC AS hpcmDc, | |
| 18 | - DATE_FORMAT(A.FRST_REGIST_PNTTM,'%Y-%m-%d') AS frstRegistPnttm, | |
| 19 | - A.FRST_REGISTER_ID AS frstRegisterId, | |
| 20 | - DATE_FORMAT(A.LAST_UPDT_PNTTM,'%Y-%m-%d') AS lastUpdtPnttm , | |
| 21 | - A.LAST_UPDUSR_ID AS lastUpdusrId | |
| 22 | - FROM COMTNHPCMINFO A | |
| 23 | - LEFT JOIN ( | |
| 24 | - SELECT CODE_NM , CODE , CODE_DC | |
| 25 | - FROM LETTCCMMNDETAILCODE | |
| 26 | - WHERE USE_AT = 'Y' | |
| 27 | - AND CODE_ID = 'ITN018' | |
| 28 | - ) B ON A.HPCM_SE_CODE = B.CODE | |
| 29 | - WHERE HPCM_ID=#hpcmId# | |
| 30 | - | |
| 31 | - </select> | |
| 32 | - | |
| 33 | - <select id="Hpcm.selectHpcmList" parameterClass="HpcmVO" resultClass="HpcmVO"> | |
| 34 | - SELECT | |
| 35 | - COUNT(HPCM_ID) OVER() AS totCnt, | |
| 36 | - A.HPCM_ID AS hpcmId, | |
| 37 | - A.HPCM_SE_CODE AS hpcmSeCode, | |
| 38 | - B.CODE_NM AS hpcmSeCodeTxt, | |
| 39 | - A.HPCM_DFN AS hpcmDfn, | |
| 40 | - HPCM_DC AS hpcmDc, | |
| 41 | - DATE_FORMAT(A.FRST_REGIST_PNTTM,'%Y-%m-%d %T') frstRegistPnttm, | |
| 42 | - A.FRST_REGISTER_ID AS frstRegisterId, | |
| 43 | - DATE_FORMAT(A.LAST_UPDT_PNTTM,'%Y-%m-%d %T') lastUpdusrPnttm, | |
| 44 | - A.LAST_UPDUSR_ID AS lastUpdusrId | |
| 45 | - FROM COMTNHPCMINFO A | |
| 46 | - LEFT JOIN ( | |
| 47 | - SELECT CODE_NM , CODE , CODE_DC | |
| 48 | - FROM LETTCCMMNDETAILCODE | |
| 49 | - WHERE USE_AT = 'Y' | |
| 50 | - AND CODE_ID = 'ITN018' | |
| 51 | - ) B ON A.HPCM_SE_CODE = B.CODE | |
| 52 | - WHERE 1=1 | |
| 53 | - <isNotEmpty property="hpcmSeCode"> | |
| 54 | - AND HPCM_SE_CODE = #hpcmSeCode# | |
| 55 | - </isNotEmpty> | |
| 56 | - <isNotEmpty property="searchKeyword"> | |
| 57 | - AND A.HPCM_DFN LIKE CONCAT('%', #searchKeyword#, '%') | |
| 58 | - </isNotEmpty> | |
| 59 | - ORDER BY 1=1 | |
| 60 | - <isNotEmpty property="searchSortCnd"> | |
| 61 | - ,$searchSortCnd$ | |
| 62 | - </isNotEmpty> | |
| 63 | - <isNotEmpty property="searchSortOrd"> | |
| 64 | - $searchSortOrd$ | |
| 65 | - </isNotEmpty> | |
| 66 | - | |
| 67 | - LIMIT #recordCountPerPage# OFFSET #firstIndex# | |
| 68 | - </select> | |
| 69 | - | |
| 70 | - <insert id="Hpcm.insertHpcm"> | |
| 71 | - INSERT INTO COMTNHPCMINFO | |
| 72 | - (HPCM_ID | |
| 73 | - , HPCM_SE_CODE | |
| 74 | - , HPCM_DFN | |
| 75 | - , HPCM_DC | |
| 76 | - , FRST_REGIST_PNTTM | |
| 77 | - , FRST_REGISTER_ID | |
| 78 | - , LAST_UPDT_PNTTM | |
| 79 | - , LAST_UPDUSR_ID) | |
| 80 | - VALUES ( #hpcmId# | |
| 81 | - , #hpcmSeCode# | |
| 82 | - , #hpcmDfn# | |
| 83 | - , #hpcmDc# | |
| 84 | - , sysdate() | |
| 85 | - , #frstRegisterId# | |
| 86 | - , sysdate() | |
| 87 | - , #lastUpdusrId# ) | |
| 88 | - | |
| 89 | - </insert> | |
| 90 | - | |
| 91 | - <update id="Hpcm.updateHpcm"> | |
| 92 | - UPDATE COMTNHPCMINFO SET | |
| 93 | - HPCM_SE_CODE=#hpcmSeCode# | |
| 94 | - , HPCM_DFN=#hpcmDfn# | |
| 95 | - , HPCM_DC=#hpcmDc# | |
| 96 | - , LAST_UPDT_PNTTM = sysdate() | |
| 97 | - , LAST_UPDUSR_ID=#lastUpdusrId# | |
| 98 | - WHERE HPCM_ID=#hpcmId# | |
| 99 | - </update> | |
| 100 | - | |
| 101 | - <delete id="Hpcm.deleteHpcm"> | |
| 102 | - DELETE FROM COMTNHPCMINFO | |
| 103 | - WHERE HPCM_ID=#hpcmId# | |
| 104 | - </delete> | |
| 105 | - | |
| 106 | - <select id="hackIpDAO.selectHackIpList" parameterClass="hackIpVO" resultClass="hackIpVO"> | |
| 107 | - | |
| 108 | - SELECT | |
| 109 | - COUNT(HACK_ID) OVER() AS totCnt, | |
| 110 | - A.HACK_ID AS hackId, | |
| 111 | - A.HACK_USER_ID AS hackUserId, | |
| 112 | - A.ACCESS_IP AS accessIp, | |
| 113 | - A.REGISTER_ID AS registerId, | |
| 114 | - A.WRONG_CNT AS wrongCnt, | |
| 115 | - A.BLOCK_YN AS blockYn, | |
| 116 | - B.CODE_NM AS blockYnTxt, | |
| 117 | - DATE_FORMAT(A.FRST_REGIST_PNTTM,'%Y-%m-%d %H:%i:%S') AS frstRegistPnttm, | |
| 118 | - DATE_FORMAT(A.BLOCK_REGIST_PNTTM,'%Y-%m-%d %H:%i:%S') AS blockRegistPnttm | |
| 119 | - FROM HACK_IP A | |
| 120 | - LEFT JOIN ( | |
| 121 | - SELECT CODE_NM , CODE , CODE_DC | |
| 122 | - FROM LETTCCMMNDETAILCODE | |
| 123 | - WHERE USE_AT = 'Y' | |
| 124 | - AND CODE_ID = 'ITN029' | |
| 125 | - ) B ON A.BLOCK_YN = B.CODE /** 차단설정 */ | |
| 126 | - WHERE 1=1 | |
| 127 | - <isNotEmpty property="searchKeyword"> | |
| 128 | - <isEqual property="searchCondition" compareValue="" > | |
| 129 | - AND ( | |
| 130 | - A.HACK_USER_ID LIKE CONCAT('%', #searchKeyword#, '%') | |
| 131 | - OR A.WRONG_CNT = #searchKeyword# | |
| 132 | - OR A.ACCESS_IP LIKE CONCAT ('%', #searchKeyword#,'%') | |
| 133 | - ) | |
| 134 | - </isEqual> | |
| 135 | - | |
| 136 | - <isEqual property="searchCondition" compareValue="1"> | |
| 137 | - AND A.HACK_USER_ID LIKE CONCAT('%', #searchKeyword#, '%') | |
| 138 | - </isEqual> | |
| 139 | - <isEqual property="searchCondition" compareValue="2"> | |
| 140 | - AND A.WRONG_CNT = #searchKeyword# | |
| 141 | - </isEqual> | |
| 142 | - <isEqual property="searchCondition" compareValue="2"> | |
| 143 | - AND A.ACCESS_IP LIKE CONCAT ('%', #searchKeyword#,'%') | |
| 144 | - </isEqual> | |
| 145 | - </isNotEmpty> | |
| 146 | - <isNotEmpty property="searchCondition2"> | |
| 147 | - AND A.BLOCK_YN = #searchCondition2# | |
| 148 | - </isNotEmpty> | |
| 149 | - ORDER BY 1=1 | |
| 150 | - <isNotEmpty property="searchSortCnd"> | |
| 151 | - ,$searchSortCnd$ | |
| 152 | - </isNotEmpty> | |
| 153 | - <isNotEmpty property="searchSortOrd"> | |
| 154 | - $searchSortOrd$ | |
| 155 | - </isNotEmpty> | |
| 156 | - LIMIT #recordCountPerPage# OFFSET #firstIndex# | |
| 157 | - </select> | |
| 158 | - | |
| 159 | - <select id="hackIpDAO.selectIgnoreIpLoginLogList" parameterClass="hackIpVO" resultClass="hackIpVO"> | |
| 160 | - SELECT | |
| 161 | - COUNT(0) OVER() AS totCnt | |
| 162 | - , DATE_FORMAT(M2.CREAT_DT,'%Y-%m-%d') AS creatDt | |
| 163 | - , M2.CONECT_IP AS connectIp | |
| 164 | - , M2.ACCESS_CNT AS accessCnt | |
| 165 | - , DATE_FORMAT(M2.ACCESS_MIN_DT,'%H:%i') AS accessMinDt | |
| 166 | - , DATE_FORMAT(M2.ACCESS_MAX_DT,'%H:%i') AS accessMaxDt | |
| 167 | - /*, M2.ACCESS_DIFF_MINUTE AS accessDiffMinute*/ | |
| 168 | - , TIME_FORMAT(SEC_TO_TIME(M2.ACCESS_DIFF_MINUTE * 60), '%H시간 %i분') AS accessDiffMinute | |
| 169 | - , ROUND(M2.ACCESS_CNT / M2.ACCESS_DIFF_MINUTE) AS clickByMinute | |
| 170 | - , M2.IGNORE_NO AS ignoreNo | |
| 171 | - , M2.IGNORE_YN AS ignoreYn | |
| 172 | - , M2.loginCnt | |
| 173 | - /* | |
| 174 | - , (SELECT COUNT(0) | |
| 175 | - FROM LETTNLOGINLOG SL WHERE DATE_FORMAT(SL.CREAT_DT,'%Y-%m-%d') = DATE_FORMAT(M2.CREAT_DT,'%Y-%m-%d') AND SL.CONECT_IP = M2.CONECT_IP AND SL.CONECT_ID != '' | |
| 176 | - ) loginCnt | |
| 177 | - */ | |
| 178 | - FROM ( | |
| 179 | - SELECT | |
| 180 | - M.CREAT_DT | |
| 181 | - , M.CONECT_IP | |
| 182 | - , M.ACCESS_CNT | |
| 183 | - , M.loginCnt | |
| 184 | - , M.ACCESS_MIN_DT | |
| 185 | - , M.ACCESS_MAX_DT | |
| 186 | - , IF(M.ACCESS_DIFF_MINUTE = 0, 1, M.ACCESS_DIFF_MINUTE) AS ACCESS_DIFF_MINUTE | |
| 187 | - , IFNULL(A.IGNORE_NO, 0) IGNORE_NO | |
| 188 | - ,CASE | |
| 189 | - WHEN A.IGNORE_IP IS NULL | |
| 190 | - THEN 'N' | |
| 191 | - ELSE 'Y' | |
| 192 | - END AS IGNORE_YN | |
| 193 | - | |
| 194 | - FROM ( | |
| 195 | - SELECT | |
| 196 | - DATE_FORMAT(CREAT_DT,'%Y%m%d') AS CREAT_DT | |
| 197 | - , CONECT_IP | |
| 198 | - , sum(if (CONECT_ID!='',1,0)) loginCnt | |
| 199 | - , COUNT(0) ACCESS_CNT | |
| 200 | - , MIN(CREAT_DT) ACCESS_MIN_DT | |
| 201 | - , MAX(CREAT_DT) ACCESS_MAX_DT | |
| 202 | - , TIMESTAMPDIFF(MINUTE, MIN(CREAT_DT), MAX(CREAT_DT)) AS ACCESS_DIFF_MINUTE | |
| 203 | - FROM LETTNLOGINLOG | |
| 204 | - WHERE 1=1 | |
| 205 | - <isNotEmpty prepend="AND" property="searchStartDate"> | |
| 206 | - <![CDATA[ | |
| 207 | - DATE_FORMAT(CREAT_DT, '%Y-%m-%d') >= DATE_FORMAT(#searchStartDate#, '%Y-%m-%d') | |
| 208 | - ]]> | |
| 209 | - </isNotEmpty> | |
| 210 | - <isNotEmpty prepend="AND" property="searchEndDate"> | |
| 211 | - <![CDATA[ | |
| 212 | - DATE_FORMAT(CREAT_DT, '%Y-%m-%d') <= DATE_FORMAT(#searchEndDate#, '%Y-%m-%d') | |
| 213 | - ]]> | |
| 214 | - </isNotEmpty> | |
| 215 | - GROUP BY DATE_FORMAT(CREAT_DT,'%Y%m%d'), CONECT_IP | |
| 216 | - ) M | |
| 217 | - LEFT OUTER JOIN MJ_IGNORE_IP A | |
| 218 | - ON A.IGNORE_IP = M.CONECT_IP | |
| 219 | - WHERE (ROUND(M.ACCESS_CNT / M.ACCESS_DIFF_MINUTE) >= 1) AND (M.ACCESS_CNT >= 50) | |
| 220 | - ) M2 | |
| 221 | - WHERE 1=1 | |
| 222 | - <isNotEmpty property="searchKeyword"> | |
| 223 | - <isEqual property="searchCondition" compareValue="" > | |
| 224 | - AND M2.CONECT_IP LIKE CONCAT('%', #searchKeyword#, '%') | |
| 225 | - </isEqual> | |
| 226 | - <isEqual property="searchCondition" compareValue="1"> | |
| 227 | - AND M2.CONECT_IP LIKE CONCAT('%', #searchKeyword#, '%') | |
| 228 | - </isEqual> | |
| 229 | - </isNotEmpty> | |
| 230 | - | |
| 231 | - <isNotEmpty property="searchIgnoreYn"> | |
| 232 | - AND M2.IGNORE_YN = #searchIgnoreYn# | |
| 233 | - </isNotEmpty> | |
| 234 | - | |
| 235 | - <isNotEmpty prepend="AND" property="searchStartDate"> | |
| 236 | - <![CDATA[ | |
| 237 | - DATE_FORMAT(CREAT_DT, '%Y-%m-%d') >= DATE_FORMAT(#searchStartDate#, '%Y-%m-%d') | |
| 238 | - ]]> | |
| 239 | - </isNotEmpty> | |
| 240 | - <isNotEmpty prepend="AND" property="searchEndDate"> | |
| 241 | - <![CDATA[ | |
| 242 | - DATE_FORMAT(CREAT_DT, '%Y-%m-%d') <= DATE_FORMAT(#searchEndDate#, '%Y-%m-%d') | |
| 243 | - ]]> | |
| 244 | - </isNotEmpty> | |
| 245 | - | |
| 246 | - ORDER BY 1=1 | |
| 247 | - <isNotEmpty property="searchSortCnd"> | |
| 248 | - ,$searchSortCnd$ | |
| 249 | - </isNotEmpty> | |
| 250 | - <isNotEmpty property="searchSortOrd"> | |
| 251 | - $searchSortOrd$ | |
| 252 | - </isNotEmpty> | |
| 253 | - , accessCnt desc | |
| 254 | - LIMIT #recordCountPerPage# OFFSET #firstIndex# | |
| 255 | - </select> | |
| 256 | - | |
| 257 | - <select id="hackIpDAO.selectIgnoreIpList" parameterClass="hackIpVO" resultClass="hackIpVO"> | |
| 258 | - SELECT | |
| 259 | - COUNT(A.IGNORE_NO) OVER() AS totCnt, | |
| 260 | - A.IGNORE_NO AS ignoreNo, | |
| 261 | - A.IGNORE_IP AS ignoreIp, | |
| 262 | - A.IGNORE_DC AS ignoreDc, | |
| 263 | - A.FRSTREGISTERID AS frstRegisterId, | |
| 264 | - DATE_FORMAT(A.FRSTREGISTPNTTM,'%Y-%m-%d %H:%i:%S') AS frstRegistPnttm | |
| 265 | - FROM mj_ignore_ip A | |
| 266 | - WHERE 1=1 | |
| 267 | - <isNotEmpty property="searchKeyword"> | |
| 268 | - <isEqual property="searchCondition" compareValue="" > | |
| 269 | - AND A.IGNORE_IP LIKE CONCAT('%', #searchKeyword#, '%') | |
| 270 | - </isEqual> | |
| 271 | - <isEqual property="searchCondition" compareValue="1"> | |
| 272 | - AND A.IGNORE_IP LIKE CONCAT('%', #searchKeyword#, '%') | |
| 273 | - </isEqual> | |
| 274 | - </isNotEmpty> | |
| 275 | - ORDER BY 1=1 | |
| 276 | - <isNotEmpty property="searchSortCnd"> | |
| 277 | - ,$searchSortCnd$ | |
| 278 | - </isNotEmpty> | |
| 279 | - <isNotEmpty property="searchSortOrd"> | |
| 280 | - $searchSortOrd$ | |
| 281 | - </isNotEmpty> | |
| 282 | - LIMIT #recordCountPerPage# OFFSET #firstIndex# | |
| 283 | - </select> | |
| 284 | - | |
| 285 | - <select id="hackIpDAO.selectIgnoreIpDetail" parameterClass="hackIpVO" resultClass="hackIpVO"> | |
| 286 | - SELECT | |
| 287 | - A.IGNORE_NO AS ignoreNo, | |
| 288 | - A.IGNORE_IP AS ignoreIp, | |
| 289 | - A.IGNORE_DC AS ignoreDc, | |
| 290 | - A.FRSTREGISTERID AS frstRegisterId, | |
| 291 | - DATE_FORMAT(A.FRSTREGISTPNTTM,'%Y-%m-%d %H:%i:%S') AS frstRegistPnttm | |
| 292 | - FROM mj_ignore_ip A | |
| 293 | - WHERE 1=1 | |
| 294 | - AND A.IGNORE_NO = #ignoreNo# | |
| 295 | - LIMIT 1 | |
| 296 | - </select> | |
| 297 | - | |
| 298 | - <select id="hackIpDAO.selectIgnoreIpCnt" parameterClass="hackIpVO" resultClass="java.lang.Integer"> | |
| 299 | - SELECT | |
| 300 | - COUNT(A.IGNORE_NO) | |
| 301 | - FROM mj_ignore_ip A | |
| 302 | - WHERE 1=1 | |
| 303 | - AND A.IGNORE_IP = #ignoreIp# | |
| 304 | - LIMIT 1 | |
| 305 | - </select> | |
| 306 | - | |
| 307 | - <insert id="hackIpDAO.insertIgnoreIp" parameterClass="hackIpVO"> | |
| 308 | - INSERT INTO mj_ignore_ip ( | |
| 309 | - IGNORE_IP, | |
| 310 | - IGNORE_DC, | |
| 311 | - FRSTREGISTERID, | |
| 312 | - FRSTREGISTPNTTM | |
| 313 | - ) | |
| 314 | - VALUES ( | |
| 315 | - #ignoreIp#, | |
| 316 | - #ignoreDc#, | |
| 317 | - #frstRegisterId#, | |
| 318 | - now() | |
| 319 | - ) | |
| 320 | - </insert> | |
| 321 | - | |
| 322 | - <delete id="hackIpDAO.deleteIgnoreIp" parameterClass="hackIpVO" > | |
| 323 | - DELETE FROM mj_ignore_ip | |
| 324 | - WHERE 1=1 | |
| 325 | - AND IGNORE_NO = #ignoreNo# | |
| 326 | - </delete> | |
| 327 | - | |
| 328 | - | |
| 329 | - <select id="hackIpDAO.selectHighTrafficNotIgnoreIp" parameterClass="hackIpVO" resultClass="hackIpVO"> | |
| 330 | - | |
| 331 | - SELECT | |
| 332 | - M3.CONECT_IP AS accessIp | |
| 333 | - , M3.CNT accessCnt | |
| 334 | - , M3.IGNORE_YN | |
| 335 | - FROM ( | |
| 336 | - SELECT | |
| 337 | - M2.CONECT_IP | |
| 338 | - , M2.CNT | |
| 339 | - ,CASE | |
| 340 | - WHEN A.IGNORE_IP IS NULL | |
| 341 | - THEN 'N' | |
| 342 | - ELSE 'Y' | |
| 343 | - END AS IGNORE_YN | |
| 344 | - FROM ( | |
| 345 | - SELECT | |
| 346 | - M.CONECT_IP | |
| 347 | - , M.CNT | |
| 348 | - FROM ( | |
| 349 | - SELECT | |
| 350 | - CONECT_IP | |
| 351 | - , COUNT(0) AS CNT | |
| 352 | - FROM LETTNLOGINLOG | |
| 353 | - WHERE CREAT_DT > date_add(now(), interval -5 MINUTE) | |
| 354 | - /* | |
| 355 | - TIMESTAMPDIFF(MINUTE, NOW(), CREAT_DT) > -5 | |
| 356 | - */ | |
| 357 | - AND CONECT_ID = '' | |
| 358 | - GROUP BY CONECT_IP | |
| 359 | - ) M | |
| 360 | - WHERE M.CNT >= 300 | |
| 361 | - ORDER BY M.CNT DESC | |
| 362 | - ) M2 | |
| 363 | - LEFT OUTER JOIN MJ_IGNORE_IP A | |
| 364 | - ON A.IGNORE_IP = M2.CONECT_IP | |
| 365 | - ) M3 | |
| 366 | - WHERE M3.IGNORE_YN = 'N' | |
| 367 | - AND M3.CONECT_IP!='119.193.215.98' | |
| 368 | - | |
| 369 | - </select> | |
| 370 | - | |
| 371 | - <delete id="hackIpDAO.deleteIgnoreIpByIp" parameterClass="hackIpVO" > | |
| 372 | - DELETE FROM mj_ignore_ip | |
| 373 | - WHERE 1=1 | |
| 374 | - AND IGNORE_IP = #ignoreIp# | |
| 375 | - </delete> | |
| 376 | - | |
| 377 | - <select id="hackIpDAO.selectHackIpVO" parameterClass="hackIpVO" resultClass="hackIpVO"> | |
| 378 | - SELECT | |
| 379 | - A.HACK_ID AS hackId, | |
| 380 | - A.HACK_USER_ID AS hackUserId, | |
| 381 | - A.ACCESS_IP AS accessIp, | |
| 382 | - A.REGISTER_ID AS registerId, | |
| 383 | - A.FRST_REGIST_PNTTM AS frstRegistPnttm | |
| 384 | - FROM HACK_IP A | |
| 385 | - WHERE 1=1 | |
| 386 | - <isNotEmpty property="hackId"> | |
| 387 | - AND HACK_ID = #hackId# | |
| 388 | - </isNotEmpty> | |
| 389 | - <isNotEmpty property="accessIp"> | |
| 390 | - AND ACCESS_IP = #accessIp# | |
| 391 | - </isNotEmpty> | |
| 392 | - <isNotEmpty property="blockYn"> | |
| 393 | - AND BLOCK_YN = #blockYn# | |
| 394 | - </isNotEmpty> | |
| 395 | - LIMIT 1 | |
| 396 | - | |
| 397 | - </select> | |
| 398 | - | |
| 399 | - <delete id="hackIpDAO.deleteHackIp" parameterClass="hackIpVO" > | |
| 400 | - DELETE FROM HACK_IP | |
| 401 | - WHERE 1=1 | |
| 402 | - AND HACK_ID = #hackId# | |
| 403 | - </delete> | |
| 404 | - | |
| 405 | - | |
| 406 | - <insert id="hackIpDAO.insertHackIp" parameterClass="hackIpVO"> | |
| 407 | - INSERT INTO HACK_IP( | |
| 408 | - HACK_ID, | |
| 409 | - HACK_USER_ID, | |
| 410 | - ACCESS_IP, | |
| 411 | - FRST_REGIST_PNTTM, | |
| 412 | - REGISTER_ID | |
| 413 | - )VALUES( | |
| 414 | - #hackId#, | |
| 415 | - #hackUserId#, | |
| 416 | - #accessIp#, | |
| 417 | - now(), | |
| 418 | - #registerId# | |
| 419 | - ) | |
| 420 | - </insert> | |
| 421 | - | |
| 422 | - <update id="hackIpDAO.updateHackIp" parameterClass="hackIpVO"> | |
| 423 | - UPDATE HACK_IP SET WRONG_CNT = WRONG_CNT+1 , FRST_REGIST_PNTTM = now() , HACK_USER_ID = #hackUserId# | |
| 424 | - WHERE HACK_ID = #hackId# | |
| 425 | - </update> | |
| 426 | - | |
| 427 | - <insert id="hackIpDAO.updateBlockYN" parameterClass="hackIpVO"> | |
| 428 | - UPDATE HACK_IP SET BLOCK_YN = #blockYn# | |
| 429 | - <isEqual property="blockYn" compareValue="Y"> | |
| 430 | - , BLOCK_REGIST_PNTTM = now() | |
| 431 | - </isEqual> | |
| 432 | - <isEqual property="blockYn" compareValue="N"> | |
| 433 | - , BLOCK_REGIST_PNTTM = null | |
| 434 | - </isEqual> | |
| 435 | - WHERE HACK_ID = #hackId# | |
| 436 | - | |
| 437 | - <selectKey keyProperty="blockRegistPnttm" resultClass="String"> | |
| 438 | - SELECT | |
| 439 | - DATE_FORMAT(BLOCK_REGIST_PNTTM,'%Y-%m-%d %H:%i:%S') AS blockRegistPnttm | |
| 440 | - FROM HACK_IP | |
| 441 | - WHERE HACK_ID = #hackId# | |
| 442 | - </selectKey> | |
| 443 | - </insert> | |
| 444 | - | |
| 445 | - <select id="hackIpDAO.selectHackIpDetailList" parameterClass="hackIpVO" resultClass="hackIpVO"> | |
| 446 | - SELECT | |
| 447 | - COUNT(HACK_ID) OVER() AS totCnt, | |
| 448 | - A.HACK_ID AS hackId, | |
| 449 | - A.HACK_USER_ID AS hackUserId, | |
| 450 | - A.ACCESS_IP AS accessIp, | |
| 451 | - A.REGISTER_ID AS registerId, | |
| 452 | - A.WRONG_CNT AS wrongCnt, | |
| 453 | - A.BLOCK_YN AS blockYn, | |
| 454 | - B.CODE_NM AS blockYnTxt, | |
| 455 | - A.FRST_REGIST_PNTTM AS frstRegistPnttm, | |
| 456 | - C.LOGIN_ID AS loginId, | |
| 457 | - C.LOGIN_DT AS loginDt, | |
| 458 | - C.LOGIN_YN AS loginYn, | |
| 459 | - C.LOGIN_LOG_DC AS loginLogDc | |
| 460 | - FROM HACK_IP A | |
| 461 | - LEFT JOIN ( | |
| 462 | - SELECT CODE_NM , CODE , CODE_DC | |
| 463 | - FROM LETTCCMMNDETAILCODE | |
| 464 | - WHERE USE_AT = 'Y' | |
| 465 | - AND CODE_ID = 'ITN029' | |
| 466 | - ) B ON A.BLOCK_YN = B.CODE /** 차단설정 */ | |
| 467 | - LEFT JOIN MJ_LOGIN_LOG C | |
| 468 | - ON A.ACCESS_IP = C.LOGIN_IP | |
| 469 | - WHERE 1=1 | |
| 470 | - AND A.HACK_ID = #hackId# | |
| 471 | - <isNotEmpty property="searchKeyword"> | |
| 472 | - <isEqual property="searchCondition" compareValue="" > | |
| 473 | - AND ( | |
| 474 | - C.LOGIN_ID LIKE CONCAT('%', #searchKeyword#, '%') | |
| 475 | - ) | |
| 476 | - </isEqual> | |
| 477 | - </isNotEmpty> | |
| 478 | - <isNotEmpty property="loginYn"> | |
| 479 | - AND IFNULL(C.LOGIN_YN, 'N') = #loginYn# | |
| 480 | - </isNotEmpty> | |
| 481 | - | |
| 482 | - | |
| 483 | - ORDER BY 1=1 | |
| 484 | - <isNotEmpty property="searchSortCnd"> | |
| 485 | - ,$searchSortCnd$ | |
| 486 | - </isNotEmpty> | |
| 487 | - <isNotEmpty property="searchSortOrd"> | |
| 488 | - $searchSortOrd$ | |
| 489 | - </isNotEmpty> | |
| 490 | - LIMIT #recordCountPerPage# OFFSET #firstIndex# | |
| 491 | - </select> | |
| 492 | - | |
| 493 | -</sqlMap> (No newline at end of file) |
--- target/classes/egovframework/sqlmap/config/altibase/sql-map-config-altibase-cmm.xml
... | ... | @@ -1,8 +0,0 @@ |
| 1 | -<?xml version="1.0" encoding="UTF-8"?> | |
| 2 | -<!DOCTYPE sqlMapConfig PUBLIC "-//iBATIS.com//DTD SQL Map Config 2.0//EN" | |
| 3 | - "http://www.ibatis.com/dtd/sql-map-config-2.dtd"> | |
| 4 | - | |
| 5 | -<sqlMapConfig> | |
| 6 | - <sqlMap resource="egovframework/sqlmap/let/cmm/use/EgovCmmUse_SQL_Altibase.xml"/> | |
| 7 | - <sqlMap resource="egovframework/sqlmap/let/cmm/fms/EgovFile_SQL_Altibase.xml"/> | |
| 8 | -</sqlMapConfig> |
--- target/classes/egovframework/sqlmap/config/altibase/sql-map-config-altibase-cop-bbs.xml
... | ... | @@ -1,8 +0,0 @@ |
| 1 | -<?xml version="1.0" encoding="UTF-8"?> | |
| 2 | -<!DOCTYPE sqlMapConfig PUBLIC "-//iBATIS.com//DTD SQL Map Config 2.0//EN" | |
| 3 | - "http://www.ibatis.com/dtd/sql-map-config-2.dtd"> | |
| 4 | - | |
| 5 | -<sqlMapConfig> | |
| 6 | - <sqlMap resource="egovframework/sqlmap/let/cop/bbs/EgovBBSMaster_SQL_Altibase.xml"/> | |
| 7 | - <sqlMap resource="egovframework/sqlmap/let/cop/bbs/EgovBoard_SQL_Altibase.xml"/> | |
| 8 | -</sqlMapConfig> |
--- target/classes/egovframework/sqlmap/config/altibase/sql-map-config-altibase-cop-com.xml
... | ... | @@ -1,8 +0,0 @@ |
| 1 | -<?xml version="1.0" encoding="UTF-8"?> | |
| 2 | -<!DOCTYPE sqlMapConfig PUBLIC "-//iBATIS.com//DTD SQL Map Config 2.0//EN" | |
| 3 | - "http://www.ibatis.com/dtd/sql-map-config-2.dtd"> | |
| 4 | - | |
| 5 | -<sqlMapConfig> | |
| 6 | - <sqlMap resource="egovframework/sqlmap/let/cop/com/EgovTemplate_SQL_Altibase.xml"/> | |
| 7 | - <sqlMap resource="egovframework/sqlmap/let/cop/com/EgovBBSUse_SQL_Altibase.xml"/> | |
| 8 | -</sqlMapConfig> |
--- target/classes/egovframework/sqlmap/config/altibase/sql-map-config-altibase-sec-gmt.xml
... | ... | @@ -1,7 +0,0 @@ |
| 1 | -<?xml version="1.0" encoding="UTF-8"?> | |
| 2 | -<!DOCTYPE sqlMapConfig PUBLIC "-//iBATIS.com//DTD SQL Map Config 2.0//EN" | |
| 3 | - "http://www.ibatis.com/dtd/sql-map-config-2.dtd"> | |
| 4 | - | |
| 5 | -<sqlMapConfig> | |
| 6 | - <sqlMap resource="egovframework/sqlmap/let/sec/gmt/EgovGroupManage_SQL_Altibase.xml"/> | |
| 7 | -</sqlMapConfig> |
--- target/classes/egovframework/sqlmap/config/altibase/sql-map-config-altibase-sec-ram.xml
... | ... | @@ -1,8 +0,0 @@ |
| 1 | -<?xml version="1.0" encoding="UTF-8"?> | |
| 2 | -<!DOCTYPE sqlMapConfig PUBLIC "-//iBATIS.com//DTD SQL Map Config 2.0//EN" | |
| 3 | - "http://www.ibatis.com/dtd/sql-map-config-2.dtd"> | |
| 4 | - | |
| 5 | -<sqlMapConfig> | |
| 6 | - <sqlMap resource="egovframework/sqlmap/let/sec/ram/EgovAuthorManage_SQL_Altibase.xml"/> | |
| 7 | - <sqlMap resource="egovframework/sqlmap/let/sec/ram/EgovAuthorRoleManage_SQL_Altibase.xml"/> | |
| 8 | -</sqlMapConfig> |
--- target/classes/egovframework/sqlmap/config/altibase/sql-map-config-altibase-sec-rgm.xml
... | ... | @@ -1,7 +0,0 @@ |
| 1 | -<?xml version="1.0" encoding="UTF-8"?> | |
| 2 | -<!DOCTYPE sqlMapConfig PUBLIC "-//iBATIS.com//DTD SQL Map Config 2.0//EN" | |
| 3 | - "http://www.ibatis.com/dtd/sql-map-config-2.dtd"> | |
| 4 | - | |
| 5 | -<sqlMapConfig> | |
| 6 | - <sqlMap resource="egovframework/sqlmap/let/sec/rgm/EgovAuthorGroup_SQL_Altibase.xml"/> | |
| 7 | -</sqlMapConfig> |
--- target/classes/egovframework/sqlmap/config/altibase/sql-map-config-altibase-sec-rmt.xml
... | ... | @@ -1,7 +0,0 @@ |
| 1 | -<?xml version="1.0" encoding="UTF-8"?> | |
| 2 | -<!DOCTYPE sqlMapConfig PUBLIC "-//iBATIS.com//DTD SQL Map Config 2.0//EN" | |
| 3 | - "http://www.ibatis.com/dtd/sql-map-config-2.dtd"> | |
| 4 | - | |
| 5 | -<sqlMapConfig> | |
| 6 | - <sqlMap resource="egovframework/sqlmap/let/sec/rmt/EgovRoleManage_SQL_Altibase.xml"/> | |
| 7 | -</sqlMapConfig> |
--- target/classes/egovframework/sqlmap/config/altibase/sql-map-config-altibase-sts-cst.xml
... | ... | @@ -1,7 +0,0 @@ |
| 1 | -<?xml version="1.0" encoding="UTF-8"?> | |
| 2 | -<!DOCTYPE sqlMapConfig PUBLIC "-//iBATIS.com//DTD SQL Map Config 2.0//EN" | |
| 3 | - "http://www.ibatis.com/dtd/sql-map-config-2.dtd"> | |
| 4 | - | |
| 5 | -<sqlMapConfig> | |
| 6 | - <sqlMap resource="egovframework/sqlmap/let/sts/cst/EgovConectStats_SQL_Altibase.xml"/> | |
| 7 | -</sqlMapConfig> |
--- target/classes/egovframework/sqlmap/config/altibase/sql-map-config-altibase-sym-ccm-cca.xml
... | ... | @@ -1,7 +0,0 @@ |
| 1 | -<?xml version="1.0" encoding="UTF-8"?> | |
| 2 | -<!DOCTYPE sqlMapConfig PUBLIC "-//iBATIS.com//DTD SQL Map Config 2.0//EN" | |
| 3 | - "http://www.ibatis.com/dtd/sql-map-config-2.dtd"> | |
| 4 | - | |
| 5 | -<sqlMapConfig> | |
| 6 | - <sqlMap resource="egovframework/sqlmap/let/sym/ccm/cca/EgovCmmnCodeManage_SQL_Altibase.xml"/> | |
| 7 | -</sqlMapConfig> |
--- target/classes/egovframework/sqlmap/config/altibase/sql-map-config-altibase-sym-ccm-ccc.xml
... | ... | @@ -1,7 +0,0 @@ |
| 1 | -<?xml version="1.0" encoding="UTF-8"?> | |
| 2 | -<!DOCTYPE sqlMapConfig PUBLIC "-//iBATIS.com//DTD SQL Map Config 2.0//EN" | |
| 3 | - "http://www.ibatis.com/dtd/sql-map-config-2.dtd"> | |
| 4 | - | |
| 5 | -<sqlMapConfig> | |
| 6 | - <sqlMap resource="egovframework/sqlmap/let/sym/ccm/ccc/EgovCmmnClCodeManage_SQL_Altibase.xml"/> | |
| 7 | -</sqlMapConfig> |
--- target/classes/egovframework/sqlmap/config/altibase/sql-map-config-altibase-sym-ccm-cde.xml
... | ... | @@ -1,7 +0,0 @@ |
| 1 | -<?xml version="1.0" encoding="UTF-8"?> | |
| 2 | -<!DOCTYPE sqlMapConfig PUBLIC "-//iBATIS.com//DTD SQL Map Config 2.0//EN" | |
| 3 | - "http://www.ibatis.com/dtd/sql-map-config-2.dtd"> | |
| 4 | - | |
| 5 | -<sqlMapConfig> | |
| 6 | - <sqlMap resource="egovframework/sqlmap/let/sym/ccm/cde/EgovCmmnDetailCodeManage_SQL_Altibase.xml"/> | |
| 7 | -</sqlMapConfig> |
--- target/classes/egovframework/sqlmap/config/altibase/sql-map-config-altibase-sym-ccm-zip.xml
... | ... | @@ -1,7 +0,0 @@ |
| 1 | -<?xml version="1.0" encoding="UTF-8"?> | |
| 2 | -<!DOCTYPE sqlMapConfig PUBLIC "-//iBATIS.com//DTD SQL Map Config 2.0//EN" | |
| 3 | - "http://www.ibatis.com/dtd/sql-map-config-2.dtd"> | |
| 4 | - | |
| 5 | -<sqlMapConfig> | |
| 6 | - <sqlMap resource="egovframework/sqlmap/let/sym/ccm/zip/EgovZipManage_SQL_Altibase.xml"/> | |
| 7 | -</sqlMapConfig> |
--- target/classes/egovframework/sqlmap/config/altibase/sql-map-config-altibase-sym-log-clg.xml
... | ... | @@ -1,7 +0,0 @@ |
| 1 | -<?xml version="1.0" encoding="UTF-8"?> | |
| 2 | -<!DOCTYPE sqlMapConfig PUBLIC "-//iBATIS.com//DTD SQL Map Config 2.0//EN" | |
| 3 | - "http://www.ibatis.com/dtd/sql-map-config-2.dtd"> | |
| 4 | - | |
| 5 | -<sqlMapConfig> | |
| 6 | - <sqlMap resource="egovframework/sqlmap/let/sym/log/clg/EgovLoginLog_SQL_Altibase.xml"/> | |
| 7 | -</sqlMapConfig> |
--- target/classes/egovframework/sqlmap/config/altibase/sql-map-config-altibase-sym-log-lgm.xml
... | ... | @@ -1,7 +0,0 @@ |
| 1 | -<?xml version="1.0" encoding="UTF-8"?> | |
| 2 | -<!DOCTYPE sqlMapConfig PUBLIC "-//iBATIS.com//DTD SQL Map Config 2.0//EN" | |
| 3 | - "http://www.ibatis.com/dtd/sql-map-config-2.dtd"> | |
| 4 | - | |
| 5 | -<sqlMapConfig> | |
| 6 | - <sqlMap resource="egovframework/sqlmap/let/sym/log/lgm/EgovSysLog_SQL_Altibase.xml"/> | |
| 7 | -</sqlMapConfig> |
--- target/classes/egovframework/sqlmap/config/altibase/sql-map-config-altibase-sym-mnu-mcm.xml
... | ... | @@ -1,7 +0,0 @@ |
| 1 | -<?xml version="1.0" encoding="UTF-8"?> | |
| 2 | -<!DOCTYPE sqlMapConfig PUBLIC "-//iBATIS.com//DTD SQL Map Config 2.0//EN" | |
| 3 | - "http://www.ibatis.com/dtd/sql-map-config-2.dtd"> | |
| 4 | - | |
| 5 | -<sqlMapConfig> | |
| 6 | - <sqlMap resource="egovframework/sqlmap/let/sym/mnu/mcm/EgovMenuCreat_SQL_Altibase.xml"/> | |
| 7 | -</sqlMapConfig> |
--- target/classes/egovframework/sqlmap/config/altibase/sql-map-config-altibase-sym-mnu-mpm.xml
... | ... | @@ -1,8 +0,0 @@ |
| 1 | -<?xml version="1.0" encoding="UTF-8"?> | |
| 2 | -<!DOCTYPE sqlMapConfig PUBLIC "-//iBATIS.com//DTD SQL Map Config 2.0//EN" | |
| 3 | - "http://www.ibatis.com/dtd/sql-map-config-2.dtd"> | |
| 4 | - | |
| 5 | -<sqlMapConfig> | |
| 6 | - <sqlMap resource="egovframework/sqlmap/let/sym/mnu/mpm/EgovMenuManage_SQL_Altibase.xml"/> | |
| 7 | - <sqlMap resource="egovframework/sqlmap/let/sym/mnu/mpm/EgovMainMenu_SQL_Altibase.xml"/> | |
| 8 | -</sqlMapConfig> |
--- target/classes/egovframework/sqlmap/config/altibase/sql-map-config-altibase-sym-prm.xml
... | ... | @@ -1,8 +0,0 @@ |
| 1 | -<?xml version="1.0" encoding="UTF-8"?> | |
| 2 | -<!DOCTYPE sqlMapConfig PUBLIC "-//iBATIS.com//DTD SQL Map Config 2.0//EN" | |
| 3 | - "http://www.ibatis.com/dtd/sql-map-config-2.dtd"> | |
| 4 | - | |
| 5 | -<sqlMapConfig> | |
| 6 | - <sqlMap resource="egovframework/sqlmap/let/sym/prm/EgovProgrmManage_SQL_Altibase.xml"/> | |
| 7 | - <sqlMap resource="egovframework/sqlmap/let/sym/prm/EgovProgrmManageDtl_SQL_Altibase.xml"/> | |
| 8 | -</sqlMapConfig> |
--- target/classes/egovframework/sqlmap/config/altibase/sql-map-config-altibase-uat-uap.xml
... | ... | @@ -1,7 +0,0 @@ |
| 1 | -<?xml version="1.0" encoding="UTF-8"?> | |
| 2 | -<!DOCTYPE sqlMapConfig PUBLIC "-//iBATIS.com//DTD SQL Map Config 2.0//EN" | |
| 3 | - "http://www.ibatis.com/dtd/sql-map-config-2.dtd"> | |
| 4 | - | |
| 5 | -<sqlMapConfig> | |
| 6 | - <sqlMap resource="egovframework/sqlmap/let/uat/uap/EgovLoginPolicy_SQL_Altibase.xml"/> | |
| 7 | -</sqlMapConfig> |
--- target/classes/egovframework/sqlmap/config/altibase/sql-map-config-altibase-uat.xml
... | ... | @@ -1,7 +0,0 @@ |
| 1 | -<?xml version="1.0" encoding="UTF-8"?> | |
| 2 | -<!DOCTYPE sqlMapConfig PUBLIC "-//iBATIS.com//DTD SQL Map Config 2.0//EN" | |
| 3 | - "http://www.ibatis.com/dtd/sql-map-config-2.dtd"> | |
| 4 | - | |
| 5 | -<sqlMapConfig> | |
| 6 | - <sqlMap resource="egovframework/sqlmap/let/uat/uia/EgovLoginUsr_SQL_Altibase.xml"/> | |
| 7 | -</sqlMapConfig> |
--- target/classes/egovframework/sqlmap/config/altibase/sql-map-config-altibase-uss-ion-uas.xml
... | ... | @@ -1,7 +0,0 @@ |
| 1 | -<?xml version="1.0" encoding="UTF-8"?> | |
| 2 | -<!DOCTYPE sqlMapConfig PUBLIC "-//iBATIS.com//DTD SQL Map Config 2.0//EN" | |
| 3 | - "http://www.ibatis.com/dtd/sql-map-config-2.dtd"> | |
| 4 | - | |
| 5 | -<sqlMapConfig> | |
| 6 | - <sqlMap resource="egovframework/sqlmap/let/uss/ion/uas/EgovUserAbsnce_SQL_Altibase.xml"/> | |
| 7 | -</sqlMapConfig> |
--- target/classes/egovframework/sqlmap/config/altibase/sql-map-config-altibase-uss-umt.xml
... | ... | @@ -1,7 +0,0 @@ |
| 1 | -<?xml version="1.0" encoding="UTF-8"?> | |
| 2 | -<!DOCTYPE sqlMapConfig PUBLIC "-//iBATIS.com//DTD SQL Map Config 2.0//EN" | |
| 3 | - "http://www.ibatis.com/dtd/sql-map-config-2.dtd"> | |
| 4 | - | |
| 5 | -<sqlMapConfig> | |
| 6 | - <sqlMap resource="egovframework/sqlmap/let/uss/umt/EgovUserManage_SQL_Altibase.xml"/> | |
| 7 | -</sqlMapConfig> |
--- target/classes/egovframework/sqlmap/config/cubrid/sql-map-config-cubrid-cmm.xml
... | ... | @@ -1,8 +0,0 @@ |
| 1 | -<?xml version="1.0" encoding="UTF-8"?> | |
| 2 | -<!DOCTYPE sqlMapConfig PUBLIC "-//iBATIS.com//DTD SQL Map Config 2.0//EN" | |
| 3 | - "http://www.ibatis.com/dtd/sql-map-config-2.dtd"> | |
| 4 | - | |
| 5 | -<sqlMapConfig> | |
| 6 | - <sqlMap resource="egovframework/sqlmap/let/cmm/use/EgovCmmUse_SQL_Cubrid.xml"/> | |
| 7 | - <sqlMap resource="egovframework/sqlmap/let/cmm/fms/EgovFile_SQL_Cubrid.xml"/> | |
| 8 | -</sqlMapConfig> |
--- target/classes/egovframework/sqlmap/config/cubrid/sql-map-config-cubrid-cop-bbs.xml
... | ... | @@ -1,8 +0,0 @@ |
| 1 | -<?xml version="1.0" encoding="UTF-8"?> | |
| 2 | -<!DOCTYPE sqlMapConfig PUBLIC "-//iBATIS.com//DTD SQL Map Config 2.0//EN" | |
| 3 | - "http://www.ibatis.com/dtd/sql-map-config-2.dtd"> | |
| 4 | - | |
| 5 | -<sqlMapConfig> | |
| 6 | - <sqlMap resource="egovframework/sqlmap/let/cop/bbs/EgovBBSMaster_SQL_Cubrid.xml"/> | |
| 7 | - <sqlMap resource="egovframework/sqlmap/let/cop/bbs/EgovBoard_SQL_Cubrid.xml"/> | |
| 8 | -</sqlMapConfig> |
--- target/classes/egovframework/sqlmap/config/cubrid/sql-map-config-cubrid-cop-com.xml
... | ... | @@ -1,8 +0,0 @@ |
| 1 | -<?xml version="1.0" encoding="UTF-8"?> | |
| 2 | -<!DOCTYPE sqlMapConfig PUBLIC "-//iBATIS.com//DTD SQL Map Config 2.0//EN" | |
| 3 | - "http://www.ibatis.com/dtd/sql-map-config-2.dtd"> | |
| 4 | - | |
| 5 | -<sqlMapConfig> | |
| 6 | - <sqlMap resource="egovframework/sqlmap/let/cop/com/EgovTemplate_SQL_Cubrid.xml"/> | |
| 7 | - <sqlMap resource="egovframework/sqlmap/let/cop/com/EgovBBSUse_SQL_Cubrid.xml"/> | |
| 8 | -</sqlMapConfig> |
--- target/classes/egovframework/sqlmap/config/cubrid/sql-map-config-cubrid-sec-gmt.xml
... | ... | @@ -1,7 +0,0 @@ |
| 1 | -<?xml version="1.0" encoding="UTF-8"?> | |
| 2 | -<!DOCTYPE sqlMapConfig PUBLIC "-//iBATIS.com//DTD SQL Map Config 2.0//EN" | |
| 3 | - "http://www.ibatis.com/dtd/sql-map-config-2.dtd"> | |
| 4 | - | |
| 5 | -<sqlMapConfig> | |
| 6 | - <sqlMap resource="egovframework/sqlmap/let/sec/gmt/EgovGroupManage_SQL_Cubrid.xml"/> | |
| 7 | -</sqlMapConfig> |
--- target/classes/egovframework/sqlmap/config/cubrid/sql-map-config-cubrid-sec-ram.xml
... | ... | @@ -1,8 +0,0 @@ |
| 1 | -<?xml version="1.0" encoding="UTF-8"?> | |
| 2 | -<!DOCTYPE sqlMapConfig PUBLIC "-//iBATIS.com//DTD SQL Map Config 2.0//EN" | |
| 3 | - "http://www.ibatis.com/dtd/sql-map-config-2.dtd"> | |
| 4 | - | |
| 5 | -<sqlMapConfig> | |
| 6 | - <sqlMap resource="egovframework/sqlmap/let/sec/ram/EgovAuthorManage_SQL_Cubrid.xml"/> | |
| 7 | - <sqlMap resource="egovframework/sqlmap/let/sec/ram/EgovAuthorRoleManage_SQL_Cubrid.xml"/> | |
| 8 | -</sqlMapConfig> |
--- target/classes/egovframework/sqlmap/config/cubrid/sql-map-config-cubrid-sec-rgm.xml
... | ... | @@ -1,7 +0,0 @@ |
| 1 | -<?xml version="1.0" encoding="UTF-8"?> | |
| 2 | -<!DOCTYPE sqlMapConfig PUBLIC "-//iBATIS.com//DTD SQL Map Config 2.0//EN" | |
| 3 | - "http://www.ibatis.com/dtd/sql-map-config-2.dtd"> | |
| 4 | - | |
| 5 | -<sqlMapConfig> | |
| 6 | - <sqlMap resource="egovframework/sqlmap/let/sec/rgm/EgovAuthorGroup_SQL_Cubrid.xml"/> | |
| 7 | -</sqlMapConfig> |
--- target/classes/egovframework/sqlmap/config/cubrid/sql-map-config-cubrid-sec-rmt.xml
... | ... | @@ -1,7 +0,0 @@ |
| 1 | -<?xml version="1.0" encoding="UTF-8"?> | |
| 2 | -<!DOCTYPE sqlMapConfig PUBLIC "-//iBATIS.com//DTD SQL Map Config 2.0//EN" | |
| 3 | - "http://www.ibatis.com/dtd/sql-map-config-2.dtd"> | |
| 4 | - | |
| 5 | -<sqlMapConfig> | |
| 6 | - <sqlMap resource="egovframework/sqlmap/let/sec/rmt/EgovRoleManage_SQL_Cubrid.xml"/> | |
| 7 | -</sqlMapConfig> |
--- target/classes/egovframework/sqlmap/config/cubrid/sql-map-config-cubrid-sts-cst.xml
... | ... | @@ -1,7 +0,0 @@ |
| 1 | -<?xml version="1.0" encoding="UTF-8"?> | |
| 2 | -<!DOCTYPE sqlMapConfig PUBLIC "-//iBATIS.com//DTD SQL Map Config 2.0//EN" | |
| 3 | - "http://www.ibatis.com/dtd/sql-map-config-2.dtd"> | |
| 4 | - | |
| 5 | -<sqlMapConfig> | |
| 6 | - <sqlMap resource="egovframework/sqlmap/let/sts/cst/EgovConectStats_SQL_Cubrid.xml"/> | |
| 7 | -</sqlMapConfig> |
--- target/classes/egovframework/sqlmap/config/cubrid/sql-map-config-cubrid-sym-ccm-cca.xml
... | ... | @@ -1,7 +0,0 @@ |
| 1 | -<?xml version="1.0" encoding="UTF-8"?> | |
| 2 | -<!DOCTYPE sqlMapConfig PUBLIC "-//iBATIS.com//DTD SQL Map Config 2.0//EN" | |
| 3 | - "http://www.ibatis.com/dtd/sql-map-config-2.dtd"> | |
| 4 | - | |
| 5 | -<sqlMapConfig> | |
| 6 | - <sqlMap resource="egovframework/sqlmap/let/sym/ccm/cca/EgovCmmnCodeManage_SQL_Cubrid.xml"/> | |
| 7 | -</sqlMapConfig> |
--- target/classes/egovframework/sqlmap/config/cubrid/sql-map-config-cubrid-sym-ccm-ccc.xml
... | ... | @@ -1,7 +0,0 @@ |
| 1 | -<?xml version="1.0" encoding="UTF-8"?> | |
| 2 | -<!DOCTYPE sqlMapConfig PUBLIC "-//iBATIS.com//DTD SQL Map Config 2.0//EN" | |
| 3 | - "http://www.ibatis.com/dtd/sql-map-config-2.dtd"> | |
| 4 | - | |
| 5 | -<sqlMapConfig> | |
| 6 | - <sqlMap resource="egovframework/sqlmap/let/sym/ccm/ccc/EgovCmmnClCodeManage_SQL_Cubrid.xml"/> | |
| 7 | -</sqlMapConfig> |
--- target/classes/egovframework/sqlmap/config/cubrid/sql-map-config-cubrid-sym-ccm-cde.xml
... | ... | @@ -1,7 +0,0 @@ |
| 1 | -<?xml version="1.0" encoding="UTF-8"?> | |
| 2 | -<!DOCTYPE sqlMapConfig PUBLIC "-//iBATIS.com//DTD SQL Map Config 2.0//EN" | |
| 3 | - "http://www.ibatis.com/dtd/sql-map-config-2.dtd"> | |
| 4 | - | |
| 5 | -<sqlMapConfig> | |
| 6 | - <sqlMap resource="egovframework/sqlmap/let/sym/ccm/cde/EgovCmmnDetailCodeManage_SQL_Cubrid.xml"/> | |
| 7 | -</sqlMapConfig> |
--- target/classes/egovframework/sqlmap/config/cubrid/sql-map-config-cubrid-sym-ccm-zip.xml
... | ... | @@ -1,7 +0,0 @@ |
| 1 | -<?xml version="1.0" encoding="UTF-8"?> | |
| 2 | -<!DOCTYPE sqlMapConfig PUBLIC "-//iBATIS.com//DTD SQL Map Config 2.0//EN" | |
| 3 | - "http://www.ibatis.com/dtd/sql-map-config-2.dtd"> | |
| 4 | - | |
| 5 | -<sqlMapConfig> | |
| 6 | - <sqlMap resource="egovframework/sqlmap/let/sym/ccm/zip/EgovZipManage_SQL_Cubrid.xml"/> | |
| 7 | -</sqlMapConfig> |
--- target/classes/egovframework/sqlmap/config/cubrid/sql-map-config-cubrid-sym-log-clg.xml
... | ... | @@ -1,7 +0,0 @@ |
| 1 | -<?xml version="1.0" encoding="UTF-8"?> | |
| 2 | -<!DOCTYPE sqlMapConfig PUBLIC "-//iBATIS.com//DTD SQL Map Config 2.0//EN" | |
| 3 | - "http://www.ibatis.com/dtd/sql-map-config-2.dtd"> | |
| 4 | - | |
| 5 | -<sqlMapConfig> | |
| 6 | - <sqlMap resource="egovframework/sqlmap/let/sym/log/clg/EgovLoginLog_SQL_Cubrid.xml"/> | |
| 7 | -</sqlMapConfig> |
--- target/classes/egovframework/sqlmap/config/cubrid/sql-map-config-cubrid-sym-log-lgm.xml
... | ... | @@ -1,7 +0,0 @@ |
| 1 | -<?xml version="1.0" encoding="UTF-8"?> | |
| 2 | -<!DOCTYPE sqlMapConfig PUBLIC "-//iBATIS.com//DTD SQL Map Config 2.0//EN" | |
| 3 | - "http://www.ibatis.com/dtd/sql-map-config-2.dtd"> | |
| 4 | - | |
| 5 | -<sqlMapConfig> | |
| 6 | - <sqlMap resource="egovframework/sqlmap/let/sym/log/lgm/EgovSysLog_SQL_Cubrid.xml"/> | |
| 7 | -</sqlMapConfig> |
--- target/classes/egovframework/sqlmap/config/cubrid/sql-map-config-cubrid-sym-mnu-mcm.xml
... | ... | @@ -1,8 +0,0 @@ |
| 1 | -<?xml version="1.0" encoding="UTF-8"?> | |
| 2 | -<!DOCTYPE sqlMapConfig PUBLIC "-//iBATIS.com//DTD SQL Map Config 2.0//EN" | |
| 3 | - "http://www.ibatis.com/dtd/sql-map-config-2.dtd"> | |
| 4 | - | |
| 5 | -<sqlMapConfig> | |
| 6 | - <sqlMap resource="egovframework/sqlmap/let/sym/mnu/mcm/EgovMenuCreat_SQL_Cubrid.xml"/> | |
| 7 | - | |
| 8 | -</sqlMapConfig> |
--- target/classes/egovframework/sqlmap/config/cubrid/sql-map-config-cubrid-sym-mnu-mpm.xml
... | ... | @@ -1,8 +0,0 @@ |
| 1 | -<?xml version="1.0" encoding="UTF-8"?> | |
| 2 | -<!DOCTYPE sqlMapConfig PUBLIC "-//iBATIS.com//DTD SQL Map Config 2.0//EN" | |
| 3 | - "http://www.ibatis.com/dtd/sql-map-config-2.dtd"> | |
| 4 | - | |
| 5 | -<sqlMapConfig> | |
| 6 | - <sqlMap resource="egovframework/sqlmap/let/sym/mnu/mpm/EgovMenuManage_SQL_Cubrid.xml"/> | |
| 7 | - <sqlMap resource="egovframework/sqlmap/let/sym/mnu/mpm/EgovMainMenu_SQL_Cubrid.xml"/> | |
| 8 | -</sqlMapConfig> |
--- target/classes/egovframework/sqlmap/config/cubrid/sql-map-config-cubrid-sym-prm.xml
... | ... | @@ -1,8 +0,0 @@ |
| 1 | -<?xml version="1.0" encoding="UTF-8"?> | |
| 2 | -<!DOCTYPE sqlMapConfig PUBLIC "-//iBATIS.com//DTD SQL Map Config 2.0//EN" | |
| 3 | - "http://www.ibatis.com/dtd/sql-map-config-2.dtd"> | |
| 4 | - | |
| 5 | -<sqlMapConfig> | |
| 6 | - <sqlMap resource="egovframework/sqlmap/let/sym/prm/EgovProgrmManage_SQL_Cubrid.xml"/> | |
| 7 | - <sqlMap resource="egovframework/sqlmap/let/sym/prm/EgovProgrmManageDtl_SQL_Cubrid.xml"/> | |
| 8 | -</sqlMapConfig> |
--- target/classes/egovframework/sqlmap/config/cubrid/sql-map-config-cubrid-uat-uap.xml
... | ... | @@ -1,7 +0,0 @@ |
| 1 | -<?xml version="1.0" encoding="UTF-8"?> | |
| 2 | -<!DOCTYPE sqlMapConfig PUBLIC "-//iBATIS.com//DTD SQL Map Config 2.0//EN" | |
| 3 | - "http://www.ibatis.com/dtd/sql-map-config-2.dtd"> | |
| 4 | - | |
| 5 | -<sqlMapConfig> | |
| 6 | - <sqlMap resource="egovframework/sqlmap/let/uat/uap/EgovLoginPolicy_SQL_Cubrid.xml"/> | |
| 7 | -</sqlMapConfig> |
--- target/classes/egovframework/sqlmap/config/cubrid/sql-map-config-cubrid-uat.xml
... | ... | @@ -1,7 +0,0 @@ |
| 1 | -<?xml version="1.0" encoding="UTF-8"?> | |
| 2 | -<!DOCTYPE sqlMapConfig PUBLIC "-//iBATIS.com//DTD SQL Map Config 2.0//EN" | |
| 3 | - "http://www.ibatis.com/dtd/sql-map-config-2.dtd"> | |
| 4 | - | |
| 5 | -<sqlMapConfig> | |
| 6 | - <sqlMap resource="egovframework/sqlmap/let/uat/uia/EgovLoginUsr_SQL_Cubrid.xml"/> | |
| 7 | -</sqlMapConfig> |
--- target/classes/egovframework/sqlmap/config/cubrid/sql-map-config-cubrid-uss-ion-uas.xml
... | ... | @@ -1,7 +0,0 @@ |
| 1 | -<?xml version="1.0" encoding="UTF-8"?> | |
| 2 | -<!DOCTYPE sqlMapConfig PUBLIC "-//iBATIS.com//DTD SQL Map Config 2.0//EN" | |
| 3 | - "http://www.ibatis.com/dtd/sql-map-config-2.dtd"> | |
| 4 | - | |
| 5 | -<sqlMapConfig> | |
| 6 | - <sqlMap resource="egovframework/sqlmap/let/uss/ion/uas/EgovUserAbsnce_SQL_Cubrid.xml"/> | |
| 7 | -</sqlMapConfig> |
--- target/classes/egovframework/sqlmap/config/cubrid/sql-map-config-cubrid-uss-umt.xml
... | ... | @@ -1,7 +0,0 @@ |
| 1 | -<?xml version="1.0" encoding="UTF-8"?> | |
| 2 | -<!DOCTYPE sqlMapConfig PUBLIC "-//iBATIS.com//DTD SQL Map Config 2.0//EN" | |
| 3 | - "http://www.ibatis.com/dtd/sql-map-config-2.dtd"> | |
| 4 | - | |
| 5 | -<sqlMapConfig> | |
| 6 | - <sqlMap resource="egovframework/sqlmap/let/uss/umt/EgovUserManage_SQL_Cubrid.xml"/> | |
| 7 | -</sqlMapConfig> |
--- target/classes/egovframework/sqlmap/config/maria/sql-map-config-maria-dbmigration.xml
... | ... | @@ -1,7 +0,0 @@ |
| 1 | -<?xml version="1.0" encoding="UTF-8"?> | |
| 2 | -<!DOCTYPE sqlMapConfig PUBLIC "-//iBATIS.com//DTD SQL Map Config 2.0//EN" | |
| 3 | - "http://www.ibatis.com/dtd/sql-map-config-2.dtd"> | |
| 4 | - | |
| 5 | -<sqlMapConfig> | |
| 6 | - <sqlMap resource="egovframework/sqlmap/com/migration/SQL_Kcdf.xml"/> | |
| 7 | -</sqlMapConfig> |
--- target/classes/egovframework/sqlmap/config/mysql/sql-map-config-maria.xml
... | ... | @@ -1,7 +0,0 @@ |
| 1 | -<?xml version="1.0" encoding="UTF-8"?> | |
| 2 | -<!DOCTYPE sqlMapConfig PUBLIC "-//iBATIS.com//DTD SQL Map Config 2.0//EN" | |
| 3 | - "http://www.ibatis.com/dtd/sql-map-config-2.dtd"> | |
| 4 | - | |
| 5 | -<sqlMapConfig> | |
| 6 | - <sqlMap resource="egovframework/sqlmap/com/migration/SQL_Ncms.xml"/> | |
| 7 | -</sqlMapConfig> |
--- target/classes/egovframework/sqlmap/config/mysql/sql-map-config-mysql-addr.xml
... | ... | @@ -1,8 +0,0 @@ |
| 1 | -<?xml version="1.0" encoding="UTF-8"?> | |
| 2 | -<!DOCTYPE sqlMapConfig PUBLIC "-//iBATIS.com//DTD SQL Map Config 2.0//EN" | |
| 3 | - "http://www.ibatis.com/dtd/sql-map-config-2.dtd"> | |
| 4 | -<sqlMapConfig> | |
| 5 | - <sqlMap resource="egovframework/sqlmap/let/mjo/addr/Addr_SQL_Mysql.xml"/> <!-- Addr --> | |
| 6 | - <sqlMap resource="egovframework/sqlmap/let/mjo/addr/AddrGroup_SQL_Mysql.xml"/> <!-- AddrGroup --> | |
| 7 | - <sqlMap resource="egovframework/sqlmap/let/mjo/addr/AddrTransHist_SQL_Mysql.xml"/> <!-- AddrGroup --> | |
| 8 | -</sqlMapConfig> |
--- target/classes/egovframework/sqlmap/config/mysql/sql-map-config-mysql-addragency.xml
... | ... | @@ -1,6 +0,0 @@ |
| 1 | -<?xml version="1.0" encoding="UTF-8"?> | |
| 2 | -<!DOCTYPE sqlMapConfig PUBLIC "-//iBATIS.com//DTD SQL Map Config 2.0//EN" | |
| 3 | - "http://www.ibatis.com/dtd/sql-map-config-2.dtd"> | |
| 4 | -<sqlMapConfig> | |
| 5 | - <sqlMap resource="egovframework/sqlmap/let/mjo/addragency/AddrAgency_SQL_Mysql.xml"/> <!-- Addr agency --> | |
| 6 | -</sqlMapConfig> |
--- target/classes/egovframework/sqlmap/config/mysql/sql-map-config-mysql-apikey.xml
... | ... | @@ -1,7 +0,0 @@ |
| 1 | -<?xml version="1.0" encoding="UTF-8"?> | |
| 2 | -<!DOCTYPE sqlMapConfig PUBLIC "-//iBATIS.com//DTD SQL Map Config 2.0//EN" | |
| 3 | - "http://www.ibatis.com/dtd/sql-map-config-2.dtd"> | |
| 4 | -<sqlMapConfig> | |
| 5 | - <sqlMap resource="egovframework/sqlmap/let/mjo/apikey/ApiKeyMng_SQL_Mysql.xml"/> <!-- api key list --> | |
| 6 | - <sqlMap resource="egovframework/sqlmap/let/mjo/apikey/ApiCallInfoMng_SQL_Mysql.xml"/> <!-- api call info --> | |
| 7 | -</sqlMapConfig> |
--- target/classes/egovframework/sqlmap/config/mysql/sql-map-config-mysql-block.xml
... | ... | @@ -1,6 +0,0 @@ |
| 1 | -<?xml version="1.0" encoding="UTF-8"?> | |
| 2 | -<!DOCTYPE sqlMapConfig PUBLIC "-//iBATIS.com//DTD SQL Map Config 2.0//EN" | |
| 3 | - "http://www.ibatis.com/dtd/sql-map-config-2.dtd"> | |
| 4 | -<sqlMapConfig> | |
| 5 | - <sqlMap resource="egovframework/sqlmap/let/mjo/block/Block_SQL_Mysql.xml"/> <!-- Block --> | |
| 6 | -</sqlMapConfig> |
--- target/classes/egovframework/sqlmap/config/mysql/sql-map-config-mysql-cmm.xml
... | ... | @@ -1,11 +0,0 @@ |
| 1 | -<?xml version="1.0" encoding="UTF-8"?> | |
| 2 | -<!DOCTYPE sqlMapConfig PUBLIC "-//iBATIS.com//DTD SQL Map Config 2.0//EN" | |
| 3 | - "http://www.ibatis.com/dtd/sql-map-config-2.dtd"> | |
| 4 | - | |
| 5 | -<sqlMapConfig> | |
| 6 | - <sqlMap resource="egovframework/sqlmap/let/cmm/use/EgovCmmUse_SQL_Mysql.xml"/> | |
| 7 | - <sqlMap resource="egovframework/sqlmap/let/cmm/fms/EgovFile_SQL_Mysql.xml"/> | |
| 8 | - <sqlMap resource="egovframework/sqlmap/let/cmm/read/Read_SQL_Mysql.xml"/> | |
| 9 | - <sqlMap resource="egovframework/sqlmap/let/orgChart/OrgChartManage_SQL_Mysql.xml"/><!-- 조직도 --> | |
| 10 | - <sqlMap resource="egovframework/sqlmap/com/uss/olh/hpc/EgovHpcm_SQL_mysql.xml"/><!-- 도움말 --> | |
| 11 | -</sqlMapConfig> |
--- target/classes/egovframework/sqlmap/config/mysql/sql-map-config-mysql-conf.xml
... | ... | @@ -1,6 +0,0 @@ |
| 1 | -<?xml version="1.0" encoding="UTF-8"?> | |
| 2 | -<!DOCTYPE sqlMapConfig PUBLIC "-//iBATIS.com//DTD SQL Map Config 2.0//EN" | |
| 3 | - "http://www.ibatis.com/dtd/sql-map-config-2.dtd"> | |
| 4 | -<sqlMapConfig> | |
| 5 | - <sqlMap resource="egovframework/sqlmap/let/mjo/conf/MjonConf_SQL_Mysql.xml"/> <!-- MjonConf --> | |
| 6 | -</sqlMapConfig> |
--- target/classes/egovframework/sqlmap/config/mysql/sql-map-config-mysql-cop-bbs.xml
... | ... | @@ -1,8 +0,0 @@ |
| 1 | -<?xml version="1.0" encoding="UTF-8"?> | |
| 2 | -<!DOCTYPE sqlMapConfig PUBLIC "-//iBATIS.com//DTD SQL Map Config 2.0//EN" | |
| 3 | - "http://www.ibatis.com/dtd/sql-map-config-2.dtd"> | |
| 4 | - | |
| 5 | -<sqlMapConfig> | |
| 6 | - <sqlMap resource="egovframework/sqlmap/let/cop/bbs/EgovBBSMaster_SQL_Mysql.xml"/> | |
| 7 | - <sqlMap resource="egovframework/sqlmap/let/cop/bbs/EgovBoard_SQL_Mysql.xml"/> | |
| 8 | -</sqlMapConfig> |
--- target/classes/egovframework/sqlmap/config/mysql/sql-map-config-mysql-cop-cmt.xml
... | ... | @@ -1,7 +0,0 @@ |
| 1 | -<?xml version="1.0" encoding="UTF-8"?> | |
| 2 | -<!DOCTYPE sqlMapConfig PUBLIC "-//iBATIS.com//DTD SQL Map Config 2.0//EN" | |
| 3 | - "http://www.ibatis.com/dtd/sql-map-config-2.dtd"> | |
| 4 | - | |
| 5 | -<sqlMapConfig> | |
| 6 | - <sqlMap resource="egovframework/sqlmap/let/cop/cmt/EgovArticleComment_SQL_Mysql.xml"/> | |
| 7 | -</sqlMapConfig> |
--- target/classes/egovframework/sqlmap/config/mysql/sql-map-config-mysql-cop-com.xml
... | ... | @@ -1,8 +0,0 @@ |
| 1 | -<?xml version="1.0" encoding="UTF-8"?> | |
| 2 | -<!DOCTYPE sqlMapConfig PUBLIC "-//iBATIS.com//DTD SQL Map Config 2.0//EN" | |
| 3 | - "http://www.ibatis.com/dtd/sql-map-config-2.dtd"> | |
| 4 | - | |
| 5 | -<sqlMapConfig> | |
| 6 | - <sqlMap resource="egovframework/sqlmap/let/cop/com/EgovTemplate_SQL_Mysql.xml"/> | |
| 7 | - <sqlMap resource="egovframework/sqlmap/let/cop/com/EgovBBSUse_SQL_Mysql.xml"/> | |
| 8 | -</sqlMapConfig> |
--- target/classes/egovframework/sqlmap/config/mysql/sql-map-config-mysql-cop-org.xml
... | ... | @@ -1,7 +0,0 @@ |
| 1 | -<?xml version="1.0" encoding="UTF-8"?> | |
| 2 | -<!DOCTYPE sqlMapConfig PUBLIC "-//iBATIS.com//DTD SQL Map Config 2.0//EN" | |
| 3 | - "http://www.ibatis.com/dtd/sql-map-config-2.dtd"> | |
| 4 | - | |
| 5 | -<sqlMapConfig> | |
| 6 | - <sqlMap resource="egovframework/sqlmap/let/cop/org/EgovOrgChart_SQL_Mysql.xml"/> | |
| 7 | -</sqlMapConfig> |
--- target/classes/egovframework/sqlmap/config/mysql/sql-map-config-mysql-cop-resve.xml
... | ... | @@ -1,7 +0,0 @@ |
| 1 | -<?xml version="1.0" encoding="UTF-8"?> | |
| 2 | -<!DOCTYPE sqlMapConfig PUBLIC "-//iBATIS.com//DTD SQL Map Config 2.0//EN" | |
| 3 | - "http://www.ibatis.com/dtd/sql-map-config-2.dtd"> | |
| 4 | - | |
| 5 | -<sqlMapConfig> | |
| 6 | - <sqlMap resource="egovframework/sqlmap/let/cop/resve/ResveManage_SQL_Mysql.xml"/> | |
| 7 | -</sqlMapConfig> |
--- target/classes/egovframework/sqlmap/config/mysql/sql-map-config-mysql-cop-smt-sim.xml
... | ... | @@ -1,7 +0,0 @@ |
| 1 | -<?xml version="1.0" encoding="UTF-8"?> | |
| 2 | -<!DOCTYPE sqlMapConfig PUBLIC "-//iBATIS.com//DTD SQL Map Config 2.0//EN" | |
| 3 | - "http://www.ibatis.com/dtd/sql-map-config-2.dtd"> | |
| 4 | - | |
| 5 | -<sqlMapConfig> | |
| 6 | - <sqlMap resource="egovframework/sqlmap/let/cop/smt/sim/EgovIndvdlSchdulManage_SQL_Mysql.xml"/> | |
| 7 | -</sqlMapConfig> |
--- target/classes/egovframework/sqlmap/config/mysql/sql-map-config-mysql-event.xml
... | ... | @@ -1,6 +0,0 @@ |
| 1 | -<?xml version="1.0" encoding="UTF-8"?> | |
| 2 | -<!DOCTYPE sqlMapConfig PUBLIC "-//iBATIS.com//DTD SQL Map Config 2.0//EN" | |
| 3 | - "http://www.ibatis.com/dtd/sql-map-config-2.dtd"> | |
| 4 | -<sqlMapConfig> | |
| 5 | - <sqlMap resource="egovframework/sqlmap/let/mjo/event/Event_SQL_Mysql.xml"/> <!-- 이벤트 진행 --> | |
| 6 | -</sqlMapConfig> |
--- target/classes/egovframework/sqlmap/config/mysql/sql-map-config-mysql-fax.xml
... | ... | @@ -1,12 +0,0 @@ |
| 1 | -<?xml version="1.0" encoding="UTF-8"?> | |
| 2 | -<!DOCTYPE sqlMapConfig PUBLIC "-//iBATIS.com//DTD SQL Map Config 2.0//EN" | |
| 3 | - "http://www.ibatis.com/dtd/sql-map-config-2.dtd"> | |
| 4 | - | |
| 5 | -<sqlMapConfig> | |
| 6 | - | |
| 7 | - <sqlMap resource="egovframework/sqlmap/let/fax/Fax_SQL_Mysql.xml"/> | |
| 8 | - <sqlMap resource="egovframework/sqlmap/let/fax/addr/Fax_Addr_SQL_Mysql.xml"/> <!-- 팩스 주소록 관리 --> | |
| 9 | - <sqlMap resource="egovframework/sqlmap/let/fax/addr/Fax_AddrGroup_SQL_Mysql.xml"/> <!-- 팩스 그룹 관리 --> | |
| 10 | - <sqlMap resource="egovframework/sqlmap/let/fax/addr/Fax_AddrTransHist_SQL_Mysql.xml"/> <!-- 팩스 주소록 내보내기 --> | |
| 11 | - | |
| 12 | -</sqlMapConfig> |
--- target/classes/egovframework/sqlmap/config/mysql/sql-map-config-mysql-kisa.xml
... | ... | @@ -1,6 +0,0 @@ |
| 1 | -<?xml version="1.0" encoding="UTF-8"?> | |
| 2 | -<!DOCTYPE sqlMapConfig PUBLIC "-//iBATIS.com//DTD SQL Map Config 2.0//EN" | |
| 3 | - "http://www.ibatis.com/dtd/sql-map-config-2.dtd"> | |
| 4 | -<sqlMapConfig> | |
| 5 | - <sqlMap resource="egovframework/sqlmap/let/mjo/kisa/Kisa_SQL_Mysql.xml"/> <!-- KISA --> | |
| 6 | -</sqlMapConfig> |
--- target/classes/egovframework/sqlmap/config/mysql/sql-map-config-mysql-letter.xml
... | ... | @@ -1,7 +0,0 @@ |
| 1 | -<?xml version="1.0" encoding="UTF-8"?> | |
| 2 | -<!DOCTYPE sqlMapConfig PUBLIC "-//iBATIS.com//DTD SQL Map Config 2.0//EN" | |
| 3 | - "http://www.ibatis.com/dtd/sql-map-config-2.dtd"> | |
| 4 | - | |
| 5 | -<sqlMapConfig> | |
| 6 | - <sqlMap resource="egovframework/sqlmap/let/letter/LetterMessages_SQL_Mysql.xml"/> | |
| 7 | -</sqlMapConfig> |
--- target/classes/egovframework/sqlmap/config/mysql/sql-map-config-mysql-mjon-kakao.xml
... | ... | @@ -1,12 +0,0 @@ |
| 1 | -<?xml version="1.0" encoding="UTF-8"?> | |
| 2 | -<!DOCTYPE sqlMapConfig PUBLIC "-//iBATIS.com//DTD SQL Map Config 2.0//EN" | |
| 3 | - "http://www.ibatis.com/dtd/sql-map-config-2.dtd"> | |
| 4 | -<sqlMapConfig> | |
| 5 | - <sqlMap resource="egovframework/sqlmap/let/mjo/kakao/Kakao_SQL_Mysql.xml"/> <!-- 카카오 카테고리 --> | |
| 6 | - <sqlMap resource="egovframework/sqlmap/let/mjo/kakao/Kakao_profile_SQL_Mysql.xml"/> <!-- 카카오 발신프로필 --> | |
| 7 | - <sqlMap resource="egovframework/sqlmap/let/mjo/kakao/Kakao_AT_SQL_Mysql.xml"/> <!-- 카카오 알림톡--> | |
| 8 | - <sqlMap resource="egovframework/sqlmap/let/mjo/kakao/Kakao_sampleTemplate_SQL_Mysql.xml"/> <!-- 카카오 알림톡 샘플 템플릿--> | |
| 9 | - <sqlMap resource="egovframework/sqlmap/let/mjo/kakao/KakaoSent_SQL_Mysql.xml"/> <!-- 카카오 발송결과--> | |
| 10 | - <sqlMap resource="egovframework/sqlmap/let/mjo/kakao/Kakao_FT_SQL_Mysql.xml"/> <!-- 카카오 친구톡--> | |
| 11 | - <sqlMap resource="egovframework/sqlmap/let/mjo/kakao/KakaoStatistics_SQL_Mysql.xml"/> <!-- 카카오 통계--> | |
| 12 | -</sqlMapConfig> |
--- target/classes/egovframework/sqlmap/config/mysql/sql-map-config-mysql-mjon.xml
... | ... | @@ -1,6 +0,0 @@ |
| 1 | -<?xml version="1.0" encoding="UTF-8"?> | |
| 2 | -<!DOCTYPE sqlMapConfig PUBLIC "-//iBATIS.com//DTD SQL Map Config 2.0//EN" | |
| 3 | - "http://www.ibatis.com/dtd/sql-map-config-2.dtd"> | |
| 4 | -<sqlMapConfig> | |
| 5 | - <sqlMap resource="egovframework/sqlmap/let/mjo/tax/Tax_SQL_Mysql.xml"/> <!-- 세금계산서,현금영수증 --> | |
| 6 | -</sqlMapConfig> |
--- target/classes/egovframework/sqlmap/config/mysql/sql-map-config-mysql-msg.xml
... | ... | @@ -1,26 +0,0 @@ |
| 1 | -<?xml version="1.0" encoding="UTF-8"?> | |
| 2 | -<!DOCTYPE sqlMapConfig PUBLIC "-//iBATIS.com//DTD SQL Map Config 2.0//EN" | |
| 3 | - "http://www.ibatis.com/dtd/sql-map-config-2.dtd"> | |
| 4 | -<sqlMapConfig> | |
| 5 | - <settings cacheModelsEnabled="true" useStatementNamespaces="true" /> | |
| 6 | - <sqlMap resource="egovframework/sqlmap/let/msg/MjonMsgData_SQL_mysql.xml"/> <!-- 문자메세지 --> | |
| 7 | - <sqlMap resource="egovframework/sqlmap/let/msg/MjonMsgCampainData_SQL_mysql.xml"/> <!-- 선거문자메세지 --> | |
| 8 | - <sqlMap resource="egovframework/sqlmap/let/msg/MjonMsgCustom_SQL_mysql.xml"/><!-- 문자 커스텀 --> | |
| 9 | - <sqlMap resource="egovframework/sqlmap/let/msg/MjonMsgSent_SQL_mysql.xml"/><!-- 문자 발송관리 --> | |
| 10 | - <sqlMap resource="egovframework/sqlmap/let/msg/MjonMsgResv_SQL_mysql.xml"/><!-- 문자 예약관리 --> | |
| 11 | - <sqlMap resource="egovframework/sqlmap/let/agent/MjonAgent_SQL_mysql.xml"/><!-- 전송사 Agent 상태 정보 --> | |
| 12 | - <sqlMap resource="egovframework/sqlmap/let/cert/MjonMsgCert_SQL_mysql.xml"/><!-- 인증서류 --> | |
| 13 | - <sqlMap resource="egovframework/sqlmap/let/pay/MjonPay_SQL_mysql.xml"/><!-- 결제정보 --> | |
| 14 | - <sqlMap resource="egovframework/sqlmap/let/pay/MjonPayType_SQL_mysql.xml"/><!-- 결제수단 --> | |
| 15 | - <sqlMap resource="egovframework/sqlmap/let/spam/MjonSpamMsgData_SQL_mysql.xml"/><!-- 스팸문자 문자 발송 별도 저장 처리 --> | |
| 16 | - | |
| 17 | - <sqlMap resource="egovframework/sqlmap/let/msg/MjonMsgSentTest_SQL_mysql.xml"/><!-- 문자 발송 테스트 --> | |
| 18 | - <sqlMap resource="egovframework/sqlmap/let/msg/MjonMsgRecvTest_SQL_mysql.xml"/><!-- 문자 수신 테스트 --> | |
| 19 | - | |
| 20 | - <sqlMap resource="egovframework/sqlmap/let/sttst/MjonSttstData_SQL_mysql.xml"/><!-- 문자 통계 --> | |
| 21 | - <sqlMap resource="egovframework/sqlmap/let/backup/MjonMsgDataBackup_SQL_mysql.xml"/><!-- 메시지 데이터 백업 --> | |
| 22 | - | |
| 23 | - <sqlMap resource="egovframework/sqlmap/let/kakao/MjonKakaoATData_SQL_mysql.xml"/> <!-- 알림톡메세지 --> | |
| 24 | - <sqlMap resource="egovframework/sqlmap/let/kakao/MjonKakaoFTData_SQL_mysql.xml"/> <!-- 친구톡메세지 --> | |
| 25 | - | |
| 26 | -</sqlMapConfig> |
--- target/classes/egovframework/sqlmap/config/mysql/sql-map-config-mysql-pst-rsh.xml
... | ... | @@ -1,7 +0,0 @@ |
| 1 | -<?xml version="1.0" encoding="UTF-8"?> | |
| 2 | -<!DOCTYPE sqlMapConfig PUBLIC "-//iBATIS.com//DTD SQL Map Config 2.0//EN" | |
| 3 | - "http://www.ibatis.com/dtd/sql-map-config-2.dtd"> | |
| 4 | - | |
| 5 | -<sqlMapConfig> | |
| 6 | - <sqlMap resource="egovframework/sqlmap/let/pst/rsh/Research_Action_SQL.xml"/> | |
| 7 | -</sqlMapConfig> |
--- target/classes/egovframework/sqlmap/config/mysql/sql-map-config-mysql-refund.xml
... | ... | @@ -1,6 +0,0 @@ |
| 1 | -<?xml version="1.0" encoding="UTF-8"?> | |
| 2 | -<!DOCTYPE sqlMapConfig PUBLIC "-//iBATIS.com//DTD SQL Map Config 2.0//EN" | |
| 3 | - "http://www.ibatis.com/dtd/sql-map-config-2.dtd"> | |
| 4 | -<sqlMapConfig> | |
| 5 | - <sqlMap resource="egovframework/sqlmap/let/pay/Refund_SQL_Mysql.xml"/> <!-- 환불요청 --> | |
| 6 | -</sqlMapConfig> |
--- target/classes/egovframework/sqlmap/config/mysql/sql-map-config-mysql-reject.xml
... | ... | @@ -1,6 +0,0 @@ |
| 1 | -<?xml version="1.0" encoding="UTF-8"?> | |
| 2 | -<!DOCTYPE sqlMapConfig PUBLIC "-//iBATIS.com//DTD SQL Map Config 2.0//EN" | |
| 3 | - "http://www.ibatis.com/dtd/sql-map-config-2.dtd"> | |
| 4 | -<sqlMapConfig> | |
| 5 | - <sqlMap resource="egovframework/sqlmap/let/mjo/rejt/Reject_SQL_Mysql.xml"/> <!-- 080 수신거부 --> | |
| 6 | -</sqlMapConfig> |
--- target/classes/egovframework/sqlmap/config/mysql/sql-map-config-mysql-sec-gmt.xml
... | ... | @@ -1,7 +0,0 @@ |
| 1 | -<?xml version="1.0" encoding="UTF-8"?> | |
| 2 | -<!DOCTYPE sqlMapConfig PUBLIC "-//iBATIS.com//DTD SQL Map Config 2.0//EN" | |
| 3 | - "http://www.ibatis.com/dtd/sql-map-config-2.dtd"> | |
| 4 | - | |
| 5 | -<sqlMapConfig> | |
| 6 | - <sqlMap resource="egovframework/sqlmap/let/sec/gmt/EgovGroupManage_SQL_Mysql.xml"/> | |
| 7 | -</sqlMapConfig> |
--- target/classes/egovframework/sqlmap/config/mysql/sql-map-config-mysql-sec-ram.xml
... | ... | @@ -1,8 +0,0 @@ |
| 1 | -<?xml version="1.0" encoding="UTF-8"?> | |
| 2 | -<!DOCTYPE sqlMapConfig PUBLIC "-//iBATIS.com//DTD SQL Map Config 2.0//EN" | |
| 3 | - "http://www.ibatis.com/dtd/sql-map-config-2.dtd"> | |
| 4 | - | |
| 5 | -<sqlMapConfig> | |
| 6 | - <sqlMap resource="egovframework/sqlmap/let/sec/ram/EgovAuthorManage_SQL_Mysql.xml"/> | |
| 7 | - <sqlMap resource="egovframework/sqlmap/let/sec/ram/EgovAuthorRoleManage_SQL_Mysql.xml"/> | |
| 8 | -</sqlMapConfig> |
--- target/classes/egovframework/sqlmap/config/mysql/sql-map-config-mysql-sec-rgm.xml
... | ... | @@ -1,7 +0,0 @@ |
| 1 | -<?xml version="1.0" encoding="UTF-8"?> | |
| 2 | -<!DOCTYPE sqlMapConfig PUBLIC "-//iBATIS.com//DTD SQL Map Config 2.0//EN" | |
| 3 | - "http://www.ibatis.com/dtd/sql-map-config-2.dtd"> | |
| 4 | - | |
| 5 | -<sqlMapConfig> | |
| 6 | - <sqlMap resource="egovframework/sqlmap/let/sec/rgm/EgovAuthorGroup_SQL_Mysql.xml"/> | |
| 7 | -</sqlMapConfig> |
--- target/classes/egovframework/sqlmap/config/mysql/sql-map-config-mysql-sec-rmt.xml
... | ... | @@ -1,7 +0,0 @@ |
| 1 | -<?xml version="1.0" encoding="UTF-8"?> | |
| 2 | -<!DOCTYPE sqlMapConfig PUBLIC "-//iBATIS.com//DTD SQL Map Config 2.0//EN" | |
| 3 | - "http://www.ibatis.com/dtd/sql-map-config-2.dtd"> | |
| 4 | - | |
| 5 | -<sqlMapConfig> | |
| 6 | - <sqlMap resource="egovframework/sqlmap/let/sec/rmt/EgovRoleManage_SQL_Mysql.xml"/> | |
| 7 | -</sqlMapConfig> |
--- target/classes/egovframework/sqlmap/config/mysql/sql-map-config-mysql-sts-cst.xml
... | ... | @@ -1,7 +0,0 @@ |
| 1 | -<?xml version="1.0" encoding="UTF-8"?> | |
| 2 | -<!DOCTYPE sqlMapConfig PUBLIC "-//iBATIS.com//DTD SQL Map Config 2.0//EN" | |
| 3 | - "http://www.ibatis.com/dtd/sql-map-config-2.dtd"> | |
| 4 | - | |
| 5 | -<sqlMapConfig> | |
| 6 | - <sqlMap resource="egovframework/sqlmap/let/sts/cst/EgovConectStats_SQL_Mysql.xml"/> | |
| 7 | -</sqlMapConfig> |
--- target/classes/egovframework/sqlmap/config/mysql/sql-map-config-mysql-sym-ccm-cca.xml
... | ... | @@ -1,7 +0,0 @@ |
| 1 | -<?xml version="1.0" encoding="UTF-8"?> | |
| 2 | -<!DOCTYPE sqlMapConfig PUBLIC "-//iBATIS.com//DTD SQL Map Config 2.0//EN" | |
| 3 | - "http://www.ibatis.com/dtd/sql-map-config-2.dtd"> | |
| 4 | - | |
| 5 | -<sqlMapConfig> | |
| 6 | - <sqlMap resource="egovframework/sqlmap/let/sym/ccm/cca/EgovCmmnCodeManage_SQL_Mysql.xml"/> | |
| 7 | -</sqlMapConfig> |
--- target/classes/egovframework/sqlmap/config/mysql/sql-map-config-mysql-sym-ccm-ccc.xml
... | ... | @@ -1,7 +0,0 @@ |
| 1 | -<?xml version="1.0" encoding="UTF-8"?> | |
| 2 | -<!DOCTYPE sqlMapConfig PUBLIC "-//iBATIS.com//DTD SQL Map Config 2.0//EN" | |
| 3 | - "http://www.ibatis.com/dtd/sql-map-config-2.dtd"> | |
| 4 | - | |
| 5 | -<sqlMapConfig> | |
| 6 | - <sqlMap resource="egovframework/sqlmap/let/sym/ccm/ccc/EgovCmmnClCodeManage_SQL_Mysql.xml"/> | |
| 7 | -</sqlMapConfig> |
--- target/classes/egovframework/sqlmap/config/mysql/sql-map-config-mysql-sym-ccm-cde.xml
... | ... | @@ -1,7 +0,0 @@ |
| 1 | -<?xml version="1.0" encoding="UTF-8"?> | |
| 2 | -<!DOCTYPE sqlMapConfig PUBLIC "-//iBATIS.com//DTD SQL Map Config 2.0//EN" | |
| 3 | - "http://www.ibatis.com/dtd/sql-map-config-2.dtd"> | |
| 4 | - | |
| 5 | -<sqlMapConfig> | |
| 6 | - <sqlMap resource="egovframework/sqlmap/let/sym/ccm/cde/EgovCmmnDetailCodeManage_SQL_Mysql.xml"/> | |
| 7 | -</sqlMapConfig> |
--- target/classes/egovframework/sqlmap/config/mysql/sql-map-config-mysql-sym-ccm-zip.xml
... | ... | @@ -1,7 +0,0 @@ |
| 1 | -<?xml version="1.0" encoding="UTF-8"?> | |
| 2 | -<!DOCTYPE sqlMapConfig PUBLIC "-//iBATIS.com//DTD SQL Map Config 2.0//EN" | |
| 3 | - "http://www.ibatis.com/dtd/sql-map-config-2.dtd"> | |
| 4 | - | |
| 5 | -<sqlMapConfig> | |
| 6 | - <sqlMap resource="egovframework/sqlmap/let/sym/ccm/zip/EgovZipManage_SQL_Mysql.xml"/> | |
| 7 | -</sqlMapConfig> |
--- target/classes/egovframework/sqlmap/config/mysql/sql-map-config-mysql-sym-log-clg.xml
... | ... | @@ -1,8 +0,0 @@ |
| 1 | -<?xml version="1.0" encoding="UTF-8"?> | |
| 2 | -<!DOCTYPE sqlMapConfig PUBLIC "-//iBATIS.com//DTD SQL Map Config 2.0//EN" | |
| 3 | - "http://www.ibatis.com/dtd/sql-map-config-2.dtd"> | |
| 4 | - | |
| 5 | -<sqlMapConfig> | |
| 6 | - <sqlMap resource="egovframework/sqlmap/let/sym/log/clg/EgovLoginLog_SQL_Mysql.xml"/> | |
| 7 | - <sqlMap resource="egovframework/sqlmap/let/sym/log/clg/EtcStat_SQL.xml"/> | |
| 8 | -</sqlMapConfig> |
--- target/classes/egovframework/sqlmap/config/mysql/sql-map-config-mysql-sym-log-lgm.xml
... | ... | @@ -1,7 +0,0 @@ |
| 1 | -<?xml version="1.0" encoding="UTF-8"?> | |
| 2 | -<!DOCTYPE sqlMapConfig PUBLIC "-//iBATIS.com//DTD SQL Map Config 2.0//EN" | |
| 3 | - "http://www.ibatis.com/dtd/sql-map-config-2.dtd"> | |
| 4 | - | |
| 5 | -<sqlMapConfig> | |
| 6 | - <sqlMap resource="egovframework/sqlmap/let/sym/log/lgm/EgovSysLog_SQL_Mysql.xml"/> | |
| 7 | -</sqlMapConfig> |
--- target/classes/egovframework/sqlmap/config/mysql/sql-map-config-mysql-sym-log-ulg.xml
... | ... | @@ -1,8 +0,0 @@ |
| 1 | -<?xml version="1.0" encoding="UTF-8"?> | |
| 2 | -<!DOCTYPE sqlMapConfig PUBLIC "-//iBATIS.com//DTD SQL Map Config 2.0//EN" | |
| 3 | - "http://www.ibatis.com/dtd/sql-map-config-2.dtd"> | |
| 4 | - | |
| 5 | -<sqlMapConfig> | |
| 6 | - <sqlMap resource="egovframework/sqlmap/let/sym/log/ulg/EgovUserLog_SQL_mysql.xml"/> | |
| 7 | - <sqlMap resource="egovframework/sqlmap/let/sym/log/user/UserLoginLog_SQL_mysql.xml"/> | |
| 8 | -</sqlMapConfig> |
--- target/classes/egovframework/sqlmap/config/mysql/sql-map-config-mysql-sym-mnu-mcm.xml
... | ... | @@ -1,8 +0,0 @@ |
| 1 | -<?xml version="1.0" encoding="UTF-8"?> | |
| 2 | -<!DOCTYPE sqlMapConfig PUBLIC "-//iBATIS.com//DTD SQL Map Config 2.0//EN" | |
| 3 | - "http://www.ibatis.com/dtd/sql-map-config-2.dtd"> | |
| 4 | - | |
| 5 | -<sqlMapConfig> | |
| 6 | - <settings cacheModelsEnabled="true" useStatementNamespaces="true" /> | |
| 7 | - <sqlMap resource="egovframework/sqlmap/let/sym/mnu/mcm/EgovMenuCreat_SQL_Mysql.xml"/> | |
| 8 | -</sqlMapConfig> |
--- target/classes/egovframework/sqlmap/config/mysql/sql-map-config-mysql-sym-mnu-mpm.xml
... | ... | @@ -1,9 +0,0 @@ |
| 1 | -<?xml version="1.0" encoding="UTF-8"?> | |
| 2 | -<!DOCTYPE sqlMapConfig PUBLIC "-//iBATIS.com//DTD SQL Map Config 2.0//EN" | |
| 3 | - "http://www.ibatis.com/dtd/sql-map-config-2.dtd"> | |
| 4 | - | |
| 5 | -<sqlMapConfig> | |
| 6 | - <settings cacheModelsEnabled="true" useStatementNamespaces="true" /> | |
| 7 | - <sqlMap resource="egovframework/sqlmap/let/sym/mnu/mpm/EgovMenuManage_SQL_Mysql.xml"/> | |
| 8 | - <sqlMap resource="egovframework/sqlmap/let/sym/mnu/mpm/EgovMainMenu_SQL_Mysql.xml"/> | |
| 9 | -</sqlMapConfig> |
--- target/classes/egovframework/sqlmap/config/mysql/sql-map-config-mysql-sym-prm.xml
... | ... | @@ -1,8 +0,0 @@ |
| 1 | -<?xml version="1.0" encoding="UTF-8"?> | |
| 2 | -<!DOCTYPE sqlMapConfig PUBLIC "-//iBATIS.com//DTD SQL Map Config 2.0//EN" | |
| 3 | - "http://www.ibatis.com/dtd/sql-map-config-2.dtd"> | |
| 4 | - | |
| 5 | -<sqlMapConfig> | |
| 6 | - <sqlMap resource="egovframework/sqlmap/let/sym/prm/EgovProgrmManage_SQL_Mysql.xml"/> | |
| 7 | - <sqlMap resource="egovframework/sqlmap/let/sym/prm/EgovProgrmManageDtl_SQL_Mysql.xml"/> | |
| 8 | -</sqlMapConfig> |
--- target/classes/egovframework/sqlmap/config/mysql/sql-map-config-mysql-sym-site.xml
... | ... | @@ -1,7 +0,0 @@ |
| 1 | -<?xml version="1.0" encoding="UTF-8"?> | |
| 2 | -<!DOCTYPE sqlMapConfig PUBLIC "-//iBATIS.com//DTD SQL Map Config 2.0//EN" | |
| 3 | - "http://www.ibatis.com/dtd/sql-map-config-2.dtd"> | |
| 4 | - | |
| 5 | -<sqlMapConfig> | |
| 6 | - <sqlMap resource="egovframework/sqlmap/let/sym/site/EgovSiteManage_SQL_Mysql.xml"/> | |
| 7 | -</sqlMapConfig> |
--- target/classes/egovframework/sqlmap/config/mysql/sql-map-config-mysql-sym-wordcloud.xml
... | ... | @@ -1,7 +0,0 @@ |
| 1 | -<?xml version="1.0" encoding="UTF-8"?> | |
| 2 | -<!DOCTYPE sqlMapConfig PUBLIC "-//iBATIS.com//DTD SQL Map Config 2.0//EN" | |
| 3 | - "http://www.ibatis.com/dtd/sql-map-config-2.dtd"> | |
| 4 | - | |
| 5 | -<sqlMapConfig> | |
| 6 | - <sqlMap resource="egovframework/sqlmap/let/sym/wordcloud/EgovWordCloudManage_SQL_Mysql.xml"/> | |
| 7 | -</sqlMapConfig> |
--- target/classes/egovframework/sqlmap/config/mysql/sql-map-config-mysql-symbol.xml
... | ... | @@ -1,6 +0,0 @@ |
| 1 | -<?xml version="1.0" encoding="UTF-8"?> | |
| 2 | -<!DOCTYPE sqlMapConfig PUBLIC "-//iBATIS.com//DTD SQL Map Config 2.0//EN" | |
| 3 | - "http://www.ibatis.com/dtd/sql-map-config-2.dtd"> | |
| 4 | -<sqlMapConfig> | |
| 5 | - <sqlMap resource="egovframework/sqlmap/let/symbol/MjonSymbol_SQL_mysql.xml"/> <!-- 문자메세지 --> | |
| 6 | -</sqlMapConfig> |
--- target/classes/egovframework/sqlmap/config/mysql/sql-map-config-mysql-uat-uap.xml
... | ... | @@ -1,7 +0,0 @@ |
| 1 | -<?xml version="1.0" encoding="UTF-8"?> | |
| 2 | -<!DOCTYPE sqlMapConfig PUBLIC "-//iBATIS.com//DTD SQL Map Config 2.0//EN" | |
| 3 | - "http://www.ibatis.com/dtd/sql-map-config-2.dtd"> | |
| 4 | - | |
| 5 | -<sqlMapConfig> | |
| 6 | - <sqlMap resource="egovframework/sqlmap/let/uat/uap/EgovLoginPolicy_SQL_Mysql.xml"/> | |
| 7 | -</sqlMapConfig> |
--- target/classes/egovframework/sqlmap/config/mysql/sql-map-config-mysql-uat.xml
... | ... | @@ -1,7 +0,0 @@ |
| 1 | -<?xml version="1.0" encoding="UTF-8"?> | |
| 2 | -<!DOCTYPE sqlMapConfig PUBLIC "-//iBATIS.com//DTD SQL Map Config 2.0//EN" | |
| 3 | - "http://www.ibatis.com/dtd/sql-map-config-2.dtd"> | |
| 4 | - | |
| 5 | -<sqlMapConfig> | |
| 6 | - <sqlMap resource="egovframework/sqlmap/let/uat/uia/EgovLoginUsr_SQL_Mysql.xml"/> | |
| 7 | -</sqlMapConfig> |
--- target/classes/egovframework/sqlmap/config/mysql/sql-map-config-mysql-uss-ion-bnr.xml
... | ... | @@ -1,7 +0,0 @@ |
| 1 | -<?xml version="1.0" encoding="UTF-8"?> | |
| 2 | -<!DOCTYPE sqlMapConfig PUBLIC "-//iBATIS.com//DTD SQL Map Config 2.0//EN" | |
| 3 | - "http://www.ibatis.com/dtd/sql-map-config-2.dtd"> | |
| 4 | - | |
| 5 | -<sqlMapConfig> | |
| 6 | - <sqlMap resource="egovframework/sqlmap/com/uss/ion/bnr/EgovBanner_SQL_Mysql.xml"/><!-- 배너 추가 --> | |
| 7 | -</sqlMapConfig> |
--- target/classes/egovframework/sqlmap/config/mysql/sql-map-config-mysql-uss-ion-cnf.xml
... | ... | @@ -1,6 +0,0 @@ |
| 1 | -<?xml version="1.0" encoding="UTF-8"?> | |
| 2 | -<!DOCTYPE sqlMapConfig PUBLIC "-//iBATIS.com//DTD SQL Map Config 2.0//EN" | |
| 3 | - "http://www.ibatis.com/dtd/sql-map-config-2.dtd"> | |
| 4 | -<sqlMapConfig> | |
| 5 | - <sqlMap resource="egovframework/sqlmap/let/uss/ion/cnf/HomePageConfigManage_SQL_Mysql.xml"/> | |
| 6 | -</sqlMapConfig> |
--- target/classes/egovframework/sqlmap/config/mysql/sql-map-config-mysql-uss-ion-cnt.xml
... | ... | @@ -1,7 +0,0 @@ |
| 1 | -<?xml version="1.0" encoding="UTF-8"?> | |
| 2 | -<!DOCTYPE sqlMapConfig PUBLIC "-//iBATIS.com//DTD SQL Map Config 2.0//EN" | |
| 3 | - "http://www.ibatis.com/dtd/sql-map-config-2.dtd"> | |
| 4 | - | |
| 5 | -<sqlMapConfig> | |
| 6 | - <sqlMap resource="egovframework/sqlmap/let/uss/ion/cnt/CntManage_SQL_Mysql.xml"/> | |
| 7 | -</sqlMapConfig> |
--- target/classes/egovframework/sqlmap/config/mysql/sql-map-config-mysql-uss-ion-cyb.xml
... | ... | @@ -1,7 +0,0 @@ |
| 1 | -<?xml version="1.0" encoding="UTF-8"?> | |
| 2 | -<!DOCTYPE sqlMapConfig PUBLIC "-//iBATIS.com//DTD SQL Map Config 2.0//EN" | |
| 3 | - "http://www.ibatis.com/dtd/sql-map-config-2.dtd"> | |
| 4 | - | |
| 5 | -<sqlMapConfig> | |
| 6 | - <sqlMap resource="egovframework/sqlmap/let/uss/ion/cyb/CyberAlertManage_SQL_Mysql.xml"/> | |
| 7 | -</sqlMapConfig> |
--- target/classes/egovframework/sqlmap/config/mysql/sql-map-config-mysql-uss-ion-fms.xml
... | ... | @@ -1,7 +0,0 @@ |
| 1 | -<?xml version="1.0" encoding="UTF-8"?> | |
| 2 | -<!DOCTYPE sqlMapConfig PUBLIC "-//iBATIS.com//DTD SQL Map Config 2.0//EN" | |
| 3 | - "http://www.ibatis.com/dtd/sql-map-config-2.dtd"> | |
| 4 | - | |
| 5 | -<sqlMapConfig> | |
| 6 | - <sqlMap resource="egovframework/sqlmap/let/uss/ion/fms/FmsFile_SQL_Mysql.xml"/> | |
| 7 | -</sqlMapConfig> |
--- target/classes/egovframework/sqlmap/config/mysql/sql-map-config-mysql-uss-ion-pub.xml
... | ... | @@ -1,7 +0,0 @@ |
| 1 | -<?xml version="1.0" encoding="UTF-8"?> | |
| 2 | -<!DOCTYPE sqlMapConfig PUBLIC "-//iBATIS.com//DTD SQL Map Config 2.0//EN" | |
| 3 | - "http://www.ibatis.com/dtd/sql-map-config-2.dtd"> | |
| 4 | - | |
| 5 | -<sqlMapConfig> | |
| 6 | - <sqlMap resource="egovframework/sqlmap/com/uss/ion/pub/EgovPublish_SQL_Mysql.xml"/> | |
| 7 | -</sqlMapConfig> |
--- target/classes/egovframework/sqlmap/config/mysql/sql-map-config-mysql-uss-ion-pwm.xml
... | ... | @@ -1,9 +0,0 @@ |
| 1 | -<?xml version="1.0" encoding="UTF-8"?> | |
| 2 | -<!DOCTYPE sqlMapConfig PUBLIC "-//iBATIS.com//DTD SQL Map Config 2.0//EN" | |
| 3 | - "http://www.ibatis.com/dtd/sql-map-config-2.dtd"> | |
| 4 | - | |
| 5 | -<sqlMapConfig> | |
| 6 | - <sqlMap resource="egovframework/sqlmap/let/uss/pwm/PopupManage_SQL_Mysql.xml"/><!-- 팝업관리 --> | |
| 7 | -</sqlMapConfig> | |
| 8 | - | |
| 9 | - |
--- target/classes/egovframework/sqlmap/config/mysql/sql-map-config-mysql-uss-ion-sat.xml
... | ... | @@ -1,7 +0,0 @@ |
| 1 | -<?xml version="1.0" encoding="UTF-8"?> | |
| 2 | -<!DOCTYPE sqlMapConfig PUBLIC "-//iBATIS.com//DTD SQL Map Config 2.0//EN" | |
| 3 | - "http://www.ibatis.com/dtd/sql-map-config-2.dtd"> | |
| 4 | - | |
| 5 | -<sqlMapConfig> | |
| 6 | - <sqlMap resource="egovframework/sqlmap/let/uss/ion/sat/SatManage_SQL_Mysql.xml"/> | |
| 7 | -</sqlMapConfig> |
--- target/classes/egovframework/sqlmap/config/mysql/sql-map-config-mysql-uss-ion-uas.xml
... | ... | @@ -1,7 +0,0 @@ |
| 1 | -<?xml version="1.0" encoding="UTF-8"?> | |
| 2 | -<!DOCTYPE sqlMapConfig PUBLIC "-//iBATIS.com//DTD SQL Map Config 2.0//EN" | |
| 3 | - "http://www.ibatis.com/dtd/sql-map-config-2.dtd"> | |
| 4 | - | |
| 5 | -<sqlMapConfig> | |
| 6 | - <sqlMap resource="egovframework/sqlmap/let/uss/ion/uas/EgovUserAbsnce_SQL_Mysql.xml"/> | |
| 7 | -</sqlMapConfig> |
--- target/classes/egovframework/sqlmap/config/mysql/sql-map-config-mysql-uss-olp-qim.xml
... | ... | @@ -1,7 +0,0 @@ |
| 1 | -<?xml version="1.0" encoding="UTF-8"?> | |
| 2 | -<!DOCTYPE sqlMapConfig PUBLIC "-//iBATIS.com//DTD SQL Map Config 2.0//EN" | |
| 3 | - "http://www.ibatis.com/dtd/sql-map-config-2.dtd"> | |
| 4 | - | |
| 5 | -<sqlMapConfig> | |
| 6 | - <sqlMap resource="egovframework/sqlmap/let/uss/olp/qim/EgovQustnrItemManage_SQL_Mysql.xml"/> | |
| 7 | -</sqlMapConfig> |
--- target/classes/egovframework/sqlmap/config/mysql/sql-map-config-mysql-uss-olp-qmc.xml
... | ... | @@ -1,7 +0,0 @@ |
| 1 | -<?xml version="1.0" encoding="UTF-8"?> | |
| 2 | -<!DOCTYPE sqlMapConfig PUBLIC "-//iBATIS.com//DTD SQL Map Config 2.0//EN" | |
| 3 | - "http://www.ibatis.com/dtd/sql-map-config-2.dtd"> | |
| 4 | - | |
| 5 | -<sqlMapConfig> | |
| 6 | - <sqlMap resource="egovframework/sqlmap/let/uss/olp/qmc/EgovQustnrManage_SQL_Mysql.xml"/> | |
| 7 | -</sqlMapConfig> |
--- target/classes/egovframework/sqlmap/config/mysql/sql-map-config-mysql-uss-olp-qqm.xml
... | ... | @@ -1,7 +0,0 @@ |
| 1 | -<?xml version="1.0" encoding="UTF-8"?> | |
| 2 | -<!DOCTYPE sqlMapConfig PUBLIC "-//iBATIS.com//DTD SQL Map Config 2.0//EN" | |
| 3 | - "http://www.ibatis.com/dtd/sql-map-config-2.dtd"> | |
| 4 | - | |
| 5 | -<sqlMapConfig> | |
| 6 | - <sqlMap resource="egovframework/sqlmap/let/uss/olp/qqm/EgovQustnrQestnManage_SQL_Mysql.xml"/> | |
| 7 | -</sqlMapConfig> |
--- target/classes/egovframework/sqlmap/config/mysql/sql-map-config-mysql-uss-olp-qri.xml
... | ... | @@ -1,7 +0,0 @@ |
| 1 | -<?xml version="1.0" encoding="UTF-8"?> | |
| 2 | -<!DOCTYPE sqlMapConfig PUBLIC "-//iBATIS.com//DTD SQL Map Config 2.0//EN" | |
| 3 | - "http://www.ibatis.com/dtd/sql-map-config-2.dtd"> | |
| 4 | - | |
| 5 | -<sqlMapConfig> | |
| 6 | - <sqlMap resource="egovframework/sqlmap/let/uss/olp/qri/EgovQustnrRespondInfo_SQL_Mysql.xml"/> | |
| 7 | -</sqlMapConfig> |
--- target/classes/egovframework/sqlmap/config/mysql/sql-map-config-mysql-uss-olp-qrm.xml
... | ... | @@ -1,7 +0,0 @@ |
| 1 | -<?xml version="1.0" encoding="UTF-8"?> | |
| 2 | -<!DOCTYPE sqlMapConfig PUBLIC "-//iBATIS.com//DTD SQL Map Config 2.0//EN" | |
| 3 | - "http://www.ibatis.com/dtd/sql-map-config-2.dtd"> | |
| 4 | - | |
| 5 | -<sqlMapConfig> | |
| 6 | - <sqlMap resource="egovframework/sqlmap/let/uss/olp/qrm/EgovQustnrRespondManage_SQL_Mysql.xml"/> | |
| 7 | -</sqlMapConfig> |
--- target/classes/egovframework/sqlmap/config/mysql/sql-map-config-mysql-uss-olp-qtm.xml
... | ... | @@ -1,7 +0,0 @@ |
| 1 | -<?xml version="1.0" encoding="UTF-8"?> | |
| 2 | -<!DOCTYPE sqlMapConfig PUBLIC "-//iBATIS.com//DTD SQL Map Config 2.0//EN" | |
| 3 | - "http://www.ibatis.com/dtd/sql-map-config-2.dtd"> | |
| 4 | - | |
| 5 | -<sqlMapConfig> | |
| 6 | - <sqlMap resource="egovframework/sqlmap/let/uss/olp/qtm/EgovQustnrTmplatManage_SQL_Mysql.xml"/> | |
| 7 | -</sqlMapConfig> |
--- target/classes/egovframework/sqlmap/config/mysql/sql-map-config-mysql-uss-umt.xml
... | ... | @@ -1,11 +0,0 @@ |
| 1 | -<?xml version="1.0" encoding="UTF-8"?> | |
| 2 | -<!DOCTYPE sqlMapConfig PUBLIC "-//iBATIS.com//DTD SQL Map Config 2.0//EN" | |
| 3 | - "http://www.ibatis.com/dtd/sql-map-config-2.dtd"> | |
| 4 | - | |
| 5 | -<sqlMapConfig> | |
| 6 | - <sqlMap resource="egovframework/sqlmap/let/uss/umt/EgovUserManage_SQL_Mysql.xml"/> | |
| 7 | - <sqlMap resource="egovframework/sqlmap/let/uss/umt/EgovMberManage_SQL_Mysql.xml"/><!-- 회원가입 config 추가 --> | |
| 8 | - <sqlMap resource="egovframework/sqlmap/let/uss/ion/sign/SignManage_SQL_Mysql.xml"/><!-- 결제 추가 --> | |
| 9 | - <sqlMap resource="egovframework/sqlmap/let/uss/umt/EgovMberCmpHst_SQL_Mysql.xml"/><!-- 기업회원 히스토리 추가 --> | |
| 10 | - <sqlMap resource="egovframework/sqlmap/let/uss/umt/MjonAdmProcHstry_SQL_Mysql.xml"/><!-- 관리자 처리 히스토리 --> | |
| 11 | -</sqlMapConfig> |
--- target/classes/egovframework/sqlmap/config/mysql/sql-map-config-mysql-uss.xml
... | ... | @@ -1,7 +0,0 @@ |
| 1 | -<?xml version="1.0" encoding="UTF-8"?> | |
| 2 | -<!DOCTYPE sqlMapConfig PUBLIC "-//iBATIS.com//DTD SQL Map Config 2.0//EN" | |
| 3 | - "http://www.ibatis.com/dtd/sql-map-config-2.dtd"> | |
| 4 | - | |
| 5 | -<sqlMapConfig> | |
| 6 | - <sqlMap resource="egovframework/sqlmap/let/uss/itsm/SchdlrManage_SQL_Mysql.xml"/><!-- 스케줄러 --> | |
| 7 | -</sqlMapConfig> |
--- target/classes/egovframework/sqlmap/config/mysql/sql-map-config-mysql-vacsvact.xml
... | ... | @@ -1,10 +0,0 @@ |
| 1 | -<?xml version="1.0" encoding="UTF-8"?> | |
| 2 | -<!DOCTYPE sqlMapConfig PUBLIC "-//iBATIS.com//DTD SQL Map Config 2.0//EN" | |
| 3 | - "http://www.ibatis.com/dtd/sql-map-config-2.dtd"> | |
| 4 | -<sqlMapConfig> | |
| 5 | - <sqlMap resource="egovframework/sqlmap/let/mjo/payva/VacsAhst_SQL_Mysql.xml"/> <!-- 가상계좌 거래내역 원장 --> | |
| 6 | - <sqlMap resource="egovframework/sqlmap/let/mjo/payva/VacsErrlog_SQL_Mysql.xml"/> <!-- 오류내역 --> | |
| 7 | - <sqlMap resource="egovframework/sqlmap/let/mjo/payva/VacsTotl_SQL_Mysql.xml"/> <!-- 집계 --> | |
| 8 | - <sqlMap resource="egovframework/sqlmap/let/mjo/payva/VacsVact_SQL_Mysql.xml"/> <!-- 가상계좌 원장 --> | |
| 9 | - | |
| 10 | -</sqlMapConfig> |
--- target/classes/egovframework/sqlmap/config/oracle/sql-map-config-oracle-dbmigration.xml
... | ... | @@ -1,7 +0,0 @@ |
| 1 | -<?xml version="1.0" encoding="UTF-8"?> | |
| 2 | -<!DOCTYPE sqlMapConfig PUBLIC "-//iBATIS.com//DTD SQL Map Config 2.0//EN" | |
| 3 | - "http://www.ibatis.com/dtd/sql-map-config-2.dtd"> | |
| 4 | - | |
| 5 | -<sqlMapConfig> | |
| 6 | - <sqlMap resource="egovframework/sqlmap/com/migration/SQL_Oracle.xml"/> | |
| 7 | -</sqlMapConfig> |
--- target/classes/egovframework/sqlmap/config/tibero/sql-map-config-tibero-cmm.xml
... | ... | @@ -1,8 +0,0 @@ |
| 1 | -<?xml version="1.0" encoding="UTF-8"?> | |
| 2 | -<!DOCTYPE sqlMapConfig PUBLIC "-//iBATIS.com//DTD SQL Map Config 2.0//EN" | |
| 3 | - "http://www.ibatis.com/dtd/sql-map-config-2.dtd"> | |
| 4 | - | |
| 5 | -<sqlMapConfig> | |
| 6 | - <sqlMap resource="egovframework/sqlmap/let/cmm/use/EgovCmmUse_SQL_Tibero.xml"/> | |
| 7 | - <sqlMap resource="egovframework/sqlmap/let/cmm/fms/EgovFile_SQL_Tibero.xml"/> | |
| 8 | -</sqlMapConfig> |
--- target/classes/egovframework/sqlmap/config/tibero/sql-map-config-tibero-cop-bbs.xml
... | ... | @@ -1,8 +0,0 @@ |
| 1 | -<?xml version="1.0" encoding="UTF-8"?> | |
| 2 | -<!DOCTYPE sqlMapConfig PUBLIC "-//iBATIS.com//DTD SQL Map Config 2.0//EN" | |
| 3 | - "http://www.ibatis.com/dtd/sql-map-config-2.dtd"> | |
| 4 | - | |
| 5 | -<sqlMapConfig> | |
| 6 | - <sqlMap resource="egovframework/sqlmap/let/cop/bbs/EgovBBSMaster_SQL_Tibero.xml"/> | |
| 7 | - <sqlMap resource="egovframework/sqlmap/let/cop/bbs/EgovBoard_SQL_Tibero.xml"/> | |
| 8 | -</sqlMapConfig> |
--- target/classes/egovframework/sqlmap/config/tibero/sql-map-config-tibero-cop-com.xml
... | ... | @@ -1,8 +0,0 @@ |
| 1 | -<?xml version="1.0" encoding="UTF-8"?> | |
| 2 | -<!DOCTYPE sqlMapConfig PUBLIC "-//iBATIS.com//DTD SQL Map Config 2.0//EN" | |
| 3 | - "http://www.ibatis.com/dtd/sql-map-config-2.dtd"> | |
| 4 | - | |
| 5 | -<sqlMapConfig> | |
| 6 | - <sqlMap resource="egovframework/sqlmap/let/cop/com/EgovTemplate_SQL_Tibero.xml"/> | |
| 7 | - <sqlMap resource="egovframework/sqlmap/let/cop/com/EgovBBSUse_SQL_Tibero.xml"/> | |
| 8 | -</sqlMapConfig> |
--- target/classes/egovframework/sqlmap/config/tibero/sql-map-config-tibero-sec-gmt.xml
... | ... | @@ -1,7 +0,0 @@ |
| 1 | -<?xml version="1.0" encoding="UTF-8"?> | |
| 2 | -<!DOCTYPE sqlMapConfig PUBLIC "-//iBATIS.com//DTD SQL Map Config 2.0//EN" | |
| 3 | - "http://www.ibatis.com/dtd/sql-map-config-2.dtd"> | |
| 4 | - | |
| 5 | -<sqlMapConfig> | |
| 6 | - <sqlMap resource="egovframework/sqlmap/let/sec/gmt/EgovGroupManage_SQL_Tibero.xml"/> | |
| 7 | -</sqlMapConfig> |
--- target/classes/egovframework/sqlmap/config/tibero/sql-map-config-tibero-sec-ram.xml
... | ... | @@ -1,8 +0,0 @@ |
| 1 | -<?xml version="1.0" encoding="UTF-8"?> | |
| 2 | -<!DOCTYPE sqlMapConfig PUBLIC "-//iBATIS.com//DTD SQL Map Config 2.0//EN" | |
| 3 | - "http://www.ibatis.com/dtd/sql-map-config-2.dtd"> | |
| 4 | - | |
| 5 | -<sqlMapConfig> | |
| 6 | - <sqlMap resource="egovframework/sqlmap/let/sec/ram/EgovAuthorManage_SQL_Tibero.xml"/> | |
| 7 | - <sqlMap resource="egovframework/sqlmap/let/sec/ram/EgovAuthorRoleManage_SQL_Tibero.xml"/> | |
| 8 | -</sqlMapConfig> |
--- target/classes/egovframework/sqlmap/config/tibero/sql-map-config-tibero-sec-rgm.xml
... | ... | @@ -1,7 +0,0 @@ |
| 1 | -<?xml version="1.0" encoding="UTF-8"?> | |
| 2 | -<!DOCTYPE sqlMapConfig PUBLIC "-//iBATIS.com//DTD SQL Map Config 2.0//EN" | |
| 3 | - "http://www.ibatis.com/dtd/sql-map-config-2.dtd"> | |
| 4 | - | |
| 5 | -<sqlMapConfig> | |
| 6 | - <sqlMap resource="egovframework/sqlmap/let/sec/rgm/EgovAuthorGroup_SQL_Tibero.xml"/> | |
| 7 | -</sqlMapConfig> |
--- target/classes/egovframework/sqlmap/config/tibero/sql-map-config-tibero-sec-rmt.xml
... | ... | @@ -1,7 +0,0 @@ |
| 1 | -<?xml version="1.0" encoding="UTF-8"?> | |
| 2 | -<!DOCTYPE sqlMapConfig PUBLIC "-//iBATIS.com//DTD SQL Map Config 2.0//EN" | |
| 3 | - "http://www.ibatis.com/dtd/sql-map-config-2.dtd"> | |
| 4 | - | |
| 5 | -<sqlMapConfig> | |
| 6 | - <sqlMap resource="egovframework/sqlmap/let/sec/rmt/EgovRoleManage_SQL_Tibero.xml"/> | |
| 7 | -</sqlMapConfig> |
--- target/classes/egovframework/sqlmap/config/tibero/sql-map-config-tibero-sts-cst.xml
... | ... | @@ -1,7 +0,0 @@ |
| 1 | -<?xml version="1.0" encoding="UTF-8"?> | |
| 2 | -<!DOCTYPE sqlMapConfig PUBLIC "-//iBATIS.com//DTD SQL Map Config 2.0//EN" | |
| 3 | - "http://www.ibatis.com/dtd/sql-map-config-2.dtd"> | |
| 4 | - | |
| 5 | -<sqlMapConfig> | |
| 6 | - <sqlMap resource="egovframework/sqlmap/let/sts/cst/EgovConectStats_SQL_Tibero.xml"/> | |
| 7 | -</sqlMapConfig> |
--- target/classes/egovframework/sqlmap/config/tibero/sql-map-config-tibero-sym-ccm-cca.xml
... | ... | @@ -1,7 +0,0 @@ |
| 1 | -<?xml version="1.0" encoding="UTF-8"?> | |
| 2 | -<!DOCTYPE sqlMapConfig PUBLIC "-//iBATIS.com//DTD SQL Map Config 2.0//EN" | |
| 3 | - "http://www.ibatis.com/dtd/sql-map-config-2.dtd"> | |
| 4 | - | |
| 5 | -<sqlMapConfig> | |
| 6 | - <sqlMap resource="egovframework/sqlmap/let/sym/ccm/cca/EgovCmmnCodeManage_SQL_Tibero.xml"/> | |
| 7 | -</sqlMapConfig> |
--- target/classes/egovframework/sqlmap/config/tibero/sql-map-config-tibero-sym-ccm-ccc.xml
... | ... | @@ -1,7 +0,0 @@ |
| 1 | -<?xml version="1.0" encoding="UTF-8"?> | |
| 2 | -<!DOCTYPE sqlMapConfig PUBLIC "-//iBATIS.com//DTD SQL Map Config 2.0//EN" | |
| 3 | - "http://www.ibatis.com/dtd/sql-map-config-2.dtd"> | |
| 4 | - | |
| 5 | -<sqlMapConfig> | |
| 6 | - <sqlMap resource="egovframework/sqlmap/let/sym/ccm/ccc/EgovCmmnClCodeManage_SQL_Tibero.xml"/> | |
| 7 | -</sqlMapConfig> |
--- target/classes/egovframework/sqlmap/config/tibero/sql-map-config-tibero-sym-ccm-cde.xml
... | ... | @@ -1,7 +0,0 @@ |
| 1 | -<?xml version="1.0" encoding="UTF-8"?> | |
| 2 | -<!DOCTYPE sqlMapConfig PUBLIC "-//iBATIS.com//DTD SQL Map Config 2.0//EN" | |
| 3 | - "http://www.ibatis.com/dtd/sql-map-config-2.dtd"> | |
| 4 | - | |
| 5 | -<sqlMapConfig> | |
| 6 | - <sqlMap resource="egovframework/sqlmap/let/sym/ccm/cde/EgovCmmnDetailCodeManage_SQL_Tibero.xml"/> | |
| 7 | -</sqlMapConfig> |
--- target/classes/egovframework/sqlmap/config/tibero/sql-map-config-tibero-sym-ccm-zip.xml
... | ... | @@ -1,7 +0,0 @@ |
| 1 | -<?xml version="1.0" encoding="UTF-8"?> | |
| 2 | -<!DOCTYPE sqlMapConfig PUBLIC "-//iBATIS.com//DTD SQL Map Config 2.0//EN" | |
| 3 | - "http://www.ibatis.com/dtd/sql-map-config-2.dtd"> | |
| 4 | - | |
| 5 | -<sqlMapConfig> | |
| 6 | - <sqlMap resource="egovframework/sqlmap/let/sym/ccm/zip/EgovZipManage_SQL_Tibero.xml"/> | |
| 7 | -</sqlMapConfig> |
--- target/classes/egovframework/sqlmap/config/tibero/sql-map-config-tibero-sym-log-clg.xml
... | ... | @@ -1,7 +0,0 @@ |
| 1 | -<?xml version="1.0" encoding="UTF-8"?> | |
| 2 | -<!DOCTYPE sqlMapConfig PUBLIC "-//iBATIS.com//DTD SQL Map Config 2.0//EN" | |
| 3 | - "http://www.ibatis.com/dtd/sql-map-config-2.dtd"> | |
| 4 | - | |
| 5 | -<sqlMapConfig> | |
| 6 | - <sqlMap resource="egovframework/sqlmap/let/sym/log/clg/EgovLoginLog_SQL_Tibero.xml"/> | |
| 7 | -</sqlMapConfig> |
--- target/classes/egovframework/sqlmap/config/tibero/sql-map-config-tibero-sym-log-lgm.xml
... | ... | @@ -1,7 +0,0 @@ |
| 1 | -<?xml version="1.0" encoding="UTF-8"?> | |
| 2 | -<!DOCTYPE sqlMapConfig PUBLIC "-//iBATIS.com//DTD SQL Map Config 2.0//EN" | |
| 3 | - "http://www.ibatis.com/dtd/sql-map-config-2.dtd"> | |
| 4 | - | |
| 5 | -<sqlMapConfig> | |
| 6 | - <sqlMap resource="egovframework/sqlmap/let/sym/log/lgm/EgovSysLog_SQL_Tibero.xml"/> | |
| 7 | -</sqlMapConfig> |
--- target/classes/egovframework/sqlmap/config/tibero/sql-map-config-tibero-sym-mnu-mcm.xml
... | ... | @@ -1,8 +0,0 @@ |
| 1 | -<?xml version="1.0" encoding="UTF-8"?> | |
| 2 | -<!DOCTYPE sqlMapConfig PUBLIC "-//iBATIS.com//DTD SQL Map Config 2.0//EN" | |
| 3 | - "http://www.ibatis.com/dtd/sql-map-config-2.dtd"> | |
| 4 | - | |
| 5 | -<sqlMapConfig> | |
| 6 | - <sqlMap resource="egovframework/sqlmap/let/sym/mnu/mcm/EgovMenuCreat_SQL_Tibero.xml"/> | |
| 7 | - | |
| 8 | -</sqlMapConfig> |
--- target/classes/egovframework/sqlmap/config/tibero/sql-map-config-tibero-sym-mnu-mpm.xml
... | ... | @@ -1,8 +0,0 @@ |
| 1 | -<?xml version="1.0" encoding="UTF-8"?> | |
| 2 | -<!DOCTYPE sqlMapConfig PUBLIC "-//iBATIS.com//DTD SQL Map Config 2.0//EN" | |
| 3 | - "http://www.ibatis.com/dtd/sql-map-config-2.dtd"> | |
| 4 | - | |
| 5 | -<sqlMapConfig> | |
| 6 | - <sqlMap resource="egovframework/sqlmap/let/sym/mnu/mpm/EgovMenuManage_SQL_Tibero.xml"/> | |
| 7 | - <sqlMap resource="egovframework/sqlmap/let/sym/mnu/mpm/EgovMainMenu_SQL_Tibero.xml"/> | |
| 8 | -</sqlMapConfig> |
--- target/classes/egovframework/sqlmap/config/tibero/sql-map-config-tibero-sym-prm.xml
... | ... | @@ -1,8 +0,0 @@ |
| 1 | -<?xml version="1.0" encoding="UTF-8"?> | |
| 2 | -<!DOCTYPE sqlMapConfig PUBLIC "-//iBATIS.com//DTD SQL Map Config 2.0//EN" | |
| 3 | - "http://www.ibatis.com/dtd/sql-map-config-2.dtd"> | |
| 4 | - | |
| 5 | -<sqlMapConfig> | |
| 6 | - <sqlMap resource="egovframework/sqlmap/let/sym/prm/EgovProgrmManage_SQL_Tibero.xml"/> | |
| 7 | - <sqlMap resource="egovframework/sqlmap/let/sym/prm/EgovProgrmManageDtl_SQL_Tibero.xml"/> | |
| 8 | -</sqlMapConfig> |
--- target/classes/egovframework/sqlmap/config/tibero/sql-map-config-tibero-uat-uap.xml
... | ... | @@ -1,7 +0,0 @@ |
| 1 | -<?xml version="1.0" encoding="UTF-8"?> | |
| 2 | -<!DOCTYPE sqlMapConfig PUBLIC "-//iBATIS.com//DTD SQL Map Config 2.0//EN" | |
| 3 | - "http://www.ibatis.com/dtd/sql-map-config-2.dtd"> | |
| 4 | - | |
| 5 | -<sqlMapConfig> | |
| 6 | - <sqlMap resource="egovframework/sqlmap/let/uat/uap/EgovLoginPolicy_SQL_Tibero.xml"/> | |
| 7 | -</sqlMapConfig> |
--- target/classes/egovframework/sqlmap/config/tibero/sql-map-config-tibero-uat.xml
... | ... | @@ -1,7 +0,0 @@ |
| 1 | -<?xml version="1.0" encoding="UTF-8"?> | |
| 2 | -<!DOCTYPE sqlMapConfig PUBLIC "-//iBATIS.com//DTD SQL Map Config 2.0//EN" | |
| 3 | - "http://www.ibatis.com/dtd/sql-map-config-2.dtd"> | |
| 4 | - | |
| 5 | -<sqlMapConfig> | |
| 6 | - <sqlMap resource="egovframework/sqlmap/let/uat/uia/EgovLoginUsr_SQL_Tibero.xml"/> | |
| 7 | -</sqlMapConfig> |
--- target/classes/egovframework/sqlmap/config/tibero/sql-map-config-tibero-uss-ion-uas.xml
... | ... | @@ -1,7 +0,0 @@ |
| 1 | -<?xml version="1.0" encoding="UTF-8"?> | |
| 2 | -<!DOCTYPE sqlMapConfig PUBLIC "-//iBATIS.com//DTD SQL Map Config 2.0//EN" | |
| 3 | - "http://www.ibatis.com/dtd/sql-map-config-2.dtd"> | |
| 4 | - | |
| 5 | -<sqlMapConfig> | |
| 6 | - <sqlMap resource="egovframework/sqlmap/let/uss/ion/uas/EgovUserAbsnce_SQL_Tibero.xml"/> | |
| 7 | -</sqlMapConfig> |
--- target/classes/egovframework/sqlmap/config/tibero/sql-map-config-tibero-uss-umt.xml
... | ... | @@ -1,7 +0,0 @@ |
| 1 | -<?xml version="1.0" encoding="UTF-8"?> | |
| 2 | -<!DOCTYPE sqlMapConfig PUBLIC "-//iBATIS.com//DTD SQL Map Config 2.0//EN" | |
| 3 | - "http://www.ibatis.com/dtd/sql-map-config-2.dtd"> | |
| 4 | - | |
| 5 | -<sqlMapConfig> | |
| 6 | - <sqlMap resource="egovframework/sqlmap/let/uss/umt/EgovUserManage_SQL_Tibero.xml"/> | |
| 7 | -</sqlMapConfig> |
--- target/classes/egovframework/sqlmap/let/agent/MjonAgent_SQL_mysql.xml
... | ... | @@ -1,186 +0,0 @@ |
| 1 | -<?xml version="1.0" encoding="UTF-8"?><!-- | |
| 2 | - 수정일 수정자 수정내용 | |
| 3 | - ========= ======= ================================================= | |
| 4 | - 2022.04.27 우영두 | |
| 5 | ---> | |
| 6 | -<!DOCTYPE sqlMap PUBLIC "-//iBATIS.com//DTD SQL Map 2.0//EN" "http://www.ibatis.com/dtd/sql-map-config-2.dtd"> | |
| 7 | -<sqlMap namespace="Msg"> | |
| 8 | - <typeAlias alias="mjonMsgAgentStsVO" type="itn.let.mjo.msgagent.service.MjonMsgAgentStsVO"/> | |
| 9 | - <typeAlias alias="mberVO" type = "itn.let.uss.umt.service.MberManageVO"/> | |
| 10 | - | |
| 11 | - <select id="mjonMsgAgentStsDAO.selectMjonMsgAgentStsList" parameterClass="mjonMsgAgentStsVO" resultClass="mjonMsgAgentStsVO"> | |
| 12 | - SELECT | |
| 13 | - AGENT_CODE AS agentCode | |
| 14 | - , SEND_RATE AS sendRate | |
| 15 | - , USE_YN AS useYn | |
| 16 | - , MSG_TYPE AS msgType | |
| 17 | - , REP_AGENT AS repAgent | |
| 18 | - , AGENT_PRICE AS agentPrice | |
| 19 | - , REGIST_PNTTM AS registPnttm | |
| 20 | - , REGISTER_ID AS registerId | |
| 21 | - , LAST_UPDT_PNTTM AS lastUpdtPnttm | |
| 22 | - , LAST_UPDUSR_ID AS lastUpdusrId | |
| 23 | - FROM | |
| 24 | - MJ_AGENT_SEND_RATE | |
| 25 | - ORDER BY AGENT_CODE | |
| 26 | - | |
| 27 | - </select> | |
| 28 | - | |
| 29 | - | |
| 30 | - <select id="mjonMsgAgentStsDAO.selectMjonMsgAgentStsMultiList" parameterClass="mjonMsgAgentStsVO" resultClass="mjonMsgAgentStsVO"> | |
| 31 | - SELECT | |
| 32 | - /* 전송사 상태 정보 조회 (다중처리 화면) - 2023.05.23 Hans */ | |
| 33 | - AGENT_CODE AS agentCode | |
| 34 | - , SEND_RATE AS sendRate | |
| 35 | - , USE_YN AS useYn | |
| 36 | - , MSG_TYPE AS msgType | |
| 37 | - , REP_AGENT AS repAgent | |
| 38 | - , AGENT_PRICE AS agentPrice | |
| 39 | - , REGIST_PNTTM AS registPnttm | |
| 40 | - , REGISTER_ID AS registerId | |
| 41 | - , LAST_UPDT_PNTTM AS lastUpdtPnttm | |
| 42 | - , LAST_UPDUSR_ID AS lastUpdusrId | |
| 43 | - FROM | |
| 44 | - MJ_AGENT_SEND_RATE | |
| 45 | - WHERE 1=1 | |
| 46 | - <isNotEmpty property="searchUseYn"> | |
| 47 | - <![CDATA[ AND USE_YN= #searchUseYn# ]]> | |
| 48 | - </isNotEmpty> | |
| 49 | - ORDER BY AGENT_CODE ASC, MSG_TYPE DESC | |
| 50 | - | |
| 51 | - | |
| 52 | - </select> | |
| 53 | - | |
| 54 | - | |
| 55 | - | |
| 56 | - <select id="mjonMsgAgentStsDAO.selectMsgAvgPriceList" parameterClass="mjonMsgAgentStsVO" resultClass="mjonMsgAgentStsVO"> | |
| 57 | - SELECT | |
| 58 | - MSG_TYPE AS msgType | |
| 59 | - , (SUM(SEND_RATE * AGENT_PRICE)/SUM(SEND_RATE)) agentPrice | |
| 60 | - FROM MJ_AGENT_SEND_RATE | |
| 61 | - WHERE USE_YN = 'Y' AND SEND_RATE > 0 | |
| 62 | - GROUP BY MSG_TYPE | |
| 63 | - </select> | |
| 64 | - | |
| 65 | - <select id="mjonMsgAgentStsDAO.selectMjonMsgAgentMinMaxInfo" parameterClass="mjonMsgAgentStsVO" resultClass="mjonMsgAgentStsVO"> | |
| 66 | - SELECT | |
| 67 | - MIN(AGENT_PRICE) AS minPrice | |
| 68 | - , MAX(AGENT_PRICE) AS maxPrice | |
| 69 | - FROM | |
| 70 | - MJ_AGENT_SEND_RATE | |
| 71 | - WHERE USE_YN = 'Y' AND SEND_RATE > 0 AND MSG_TYPE = #msgType# | |
| 72 | - LIMIT 1 | |
| 73 | - </select> | |
| 74 | - | |
| 75 | - <select id="mjonMsgAgentStsDAO.selectMjonMsgAgentStsData" parameterClass="mjonMsgAgentStsVO" resultClass="int"> | |
| 76 | - SELECT | |
| 77 | - COUNT(*) | |
| 78 | - FROM | |
| 79 | - MJ_AGENT_SEND_RATE | |
| 80 | - WHERE 1=1 | |
| 81 | - AND MSG_TYPE = #msgType# | |
| 82 | - AND AGENT_CODE = #agentCode# | |
| 83 | - </select> | |
| 84 | - | |
| 85 | - <update id="mjonMsgAgentStsDAO.updateMjonMsgAgentStsData" parameterClass="mjonMsgAgentStsVO"> | |
| 86 | - UPDATE | |
| 87 | - MJ_AGENT_SEND_RATE | |
| 88 | - SET | |
| 89 | - USE_YN = #useYn# | |
| 90 | - , SEND_RATE = #sendRate# | |
| 91 | - , REP_AGENT = #repAgent# | |
| 92 | - , AGENT_PRICE = #agentPrice# | |
| 93 | - WHERE 1=1 | |
| 94 | - AND AGENT_CODE = #agentCode# | |
| 95 | - AND MSG_TYPE = #msgType# | |
| 96 | - </update> | |
| 97 | - | |
| 98 | - <update id="mjonMsgAgentStsDAO.updateMjonRepAgent" parameterClass="mjonMsgAgentStsVO"> | |
| 99 | - UPDATE | |
| 100 | - MJ_AGENT_SEND_RATE | |
| 101 | - SET | |
| 102 | - REP_AGENT = #repAgent# | |
| 103 | - WHERE 1=1 | |
| 104 | - AND MSG_TYPE = #msgType# | |
| 105 | - </update> | |
| 106 | - | |
| 107 | - <insert id="mjonMsgAgentStsDAO.insertMjonMsgAgentStsData" parameterClass="mjonMsgAgentStsVO"> | |
| 108 | - INSERT INTO MJ_AGENT_SEND_RATE | |
| 109 | - ( | |
| 110 | - AGENT_CODE | |
| 111 | - , SEND_RATE | |
| 112 | - , USE_YN | |
| 113 | - , MSG_TYPE | |
| 114 | - , REGISTER_ID | |
| 115 | - , REGIST_PNTTM | |
| 116 | - , LAST_UPDUSR_ID | |
| 117 | - , LAST_UPDT_PNTTM | |
| 118 | - ) | |
| 119 | - VALUES | |
| 120 | - ( | |
| 121 | - #agentCode# | |
| 122 | - , #sendRate# | |
| 123 | - , 'Y' | |
| 124 | - , #msgType# | |
| 125 | - , #userId# | |
| 126 | - , now() | |
| 127 | - , #userId# | |
| 128 | - , now() | |
| 129 | - ) | |
| 130 | - | |
| 131 | - </insert> | |
| 132 | - | |
| 133 | - <select id="mjonMsgAgentStsDAO.selectMsgAgentListByHotline" resultClass="mjonMsgAgentStsVO"> | |
| 134 | - | |
| 135 | - SELECT ASR.AGENT_CODE AS agentCode, | |
| 136 | - ASR.SEND_RATE AS sendRate, | |
| 137 | - ASR.REP_AGENT AS repAgent, | |
| 138 | - ASR.MSG_TYPE AS msgType, | |
| 139 | - ASR.USE_YN AS useYn, | |
| 140 | - LCD.CODE_NM AS agentCodeNm, | |
| 141 | - LCD.CODE_DC AS agetnCodeDc | |
| 142 | - FROM MJ_AGENT_SEND_RATE ASR | |
| 143 | - INNER JOIN LETTCCMMNDETAILCODE LCD | |
| 144 | - ON ASR.AGENT_CODE = LCD.CODE | |
| 145 | - INNER JOIN LETTCCMMNCODE LCC | |
| 146 | - ON LCD.CODE_ID = LCC.CODE_ID | |
| 147 | - AND LCC.CODE_ID = 'ITN019' | |
| 148 | - WHERE ASR.USE_YN IN ('Y', 'N') | |
| 149 | - GROUP BY ASR.AGENT_CODE | |
| 150 | - ORDER BY ASR.USE_YN DESC, ASR.AGENT_CODE | |
| 151 | - | |
| 152 | - </select> | |
| 153 | - | |
| 154 | - <update id="mjonMsgAgentStsDAO.updateMberHotlineAgentCodeInfo" parameterClass="mberVO"> | |
| 155 | - | |
| 156 | - UPDATE LETTNGNRLMBER | |
| 157 | - SET HOTLINE_AGENT_CODE = #hotlineAgentCode# | |
| 158 | - WHERE MBER_ID = #mberId# | |
| 159 | - | |
| 160 | - </update> | |
| 161 | - | |
| 162 | - <select id="mjonMsgAgentStsDAO.selectMsgAgentListByAgentCode" parameterClass="mjonMsgAgentStsVO" resultClass="mjonMsgAgentStsVO"> | |
| 163 | - | |
| 164 | - SELECT ASR.AGENT_CODE AS agentCode, | |
| 165 | - ASR.SEND_RATE AS sendRate, | |
| 166 | - ASR.REP_AGENT AS repAgent, | |
| 167 | - ASR.MSG_TYPE AS msgType, | |
| 168 | - ASR.USE_YN AS useYn, | |
| 169 | - LCD.CODE_NM AS agentCodeNm, | |
| 170 | - LCD.CODE_DC AS agetnCodeDc | |
| 171 | - FROM MJ_AGENT_SEND_RATE ASR | |
| 172 | - INNER JOIN LETTCCMMNDETAILCODE LCD | |
| 173 | - ON ASR.AGENT_CODE = LCD.CODE | |
| 174 | - INNER JOIN LETTCCMMNCODE LCC | |
| 175 | - ON LCD.CODE_ID = LCC.CODE_ID | |
| 176 | - AND LCC.CODE_ID = 'ITN019' | |
| 177 | - WHERE ASR.AGENT_CODE = #agentCode# | |
| 178 | - AND ASR.MSG_TYPE = #msgType# | |
| 179 | - ORDER BY ASR.AGENT_CODE | |
| 180 | - | |
| 181 | - </select> | |
| 182 | - | |
| 183 | -</sqlMap> | |
| 184 | - | |
| 185 | - | |
| 186 | - (No newline at end of file) |
--- target/classes/egovframework/sqlmap/let/backup/MjonMsgDataBackup_SQL_mysql.xml
... | ... | @@ -1,144 +0,0 @@ |
| 1 | -<?xml version="1.0" encoding="UTF-8"?><!-- | |
| 2 | - 수정일 수정자 수정내용 | |
| 3 | - ========= ======= ================================================= | |
| 4 | - 2021.03.01 신명섭 | |
| 5 | ---> | |
| 6 | -<!DOCTYPE sqlMap PUBLIC "-//iBATIS.com//DTD SQL Map 2.0//EN" "http://www.ibatis.com/dtd/sql-map-config-2.dtd"> | |
| 7 | -<sqlMap namespace="MjonMsgDataBackup"> | |
| 8 | - <typeAlias alias="mjonMsgVO" type="itn.let.mjo.msg.service.MjonMsgVO"/> | |
| 9 | - | |
| 10 | - <select id="mjonMsgDataBackup.selectBackupTableName" parameterClass="mjonMsgVO" resultClass="mjonMsgVO"> | |
| 11 | - /* mjonMsgDataBackup.selectBackupTableName | |
| 12 | - 1-생성 테이블 명 | |
| 13 | - 2-백업 대상 데이터의 년도 | |
| 14 | - 3-삭제 기준이 되는 데이터의 년도 해당년도-01-01 00:00:00 이전 데이터는 삭제한다. | |
| 15 | - */ | |
| 16 | - SELECT concat('MJ_MSG_DATA_BACKUP_' | |
| 17 | - , date_format(date_Add(now(), interval -1 year),'%Y') | |
| 18 | - ) AS userData | |
| 19 | - , date_format(date_Add(now(), interval -1 year),'%Y') AS sentDate | |
| 20 | - , date_format(date_Add(now(), interval -3 year),'%Y') AS rsltDate | |
| 21 | - | |
| 22 | - </select> | |
| 23 | - | |
| 24 | - <select id="mjonMsgDataBackup.selectBackupTable" parameterClass="mjonMsgVO" resultClass="mjonMsgVO"> | |
| 25 | - SELECT * | |
| 26 | - FROM $userData$ | |
| 27 | - LIMIT 1 | |
| 28 | - </select> | |
| 29 | - | |
| 30 | - <insert id="mjonMsgDataBackup.insertCreateTable" parameterClass="mjonMsgVO"> | |
| 31 | - | |
| 32 | - CREATE TABLE `$userData$` ( | |
| 33 | - `MSG_ID` varchar(20) NOT NULL COMMENT '문자ID', | |
| 34 | - `USER_ID` varchar(20) NOT NULL COMMENT '문자온 일반회원ID', | |
| 35 | - `USERDATA` int(11) NOT NULL COMMENT '(I)사용자 정의 코드(참조용으로 사용되는 것으로 메시지 전송 시에는 사용되지 않는다-문자온/아이하트 참조키용)', | |
| 36 | - `MSG_SEQ` bigint(20) DEFAULT NULL COMMENT '(I)메시지의 고유번호. 자동 증가하는 것으로 MSG_DATA의 PRIMARY KEY가 된다. 알림톡 대체문자를 처리하기 위해서 int=>bigint로 변경', | |
| 37 | - `CUR_STATE` int(11) NOT NULL COMMENT '상태 값(발송요청:0, 전송 중:1, 전송:2, 결과수신:3)', | |
| 38 | - `SENT_DATE` datetime DEFAULT NULL COMMENT '메시지를 전송한 시각', | |
| 39 | - `RSLT_DATE` datetime DEFAULT NULL COMMENT '핸드폰에 전달된 시간 (이통사가 핸드폰이 수신했다고 주장하는 시간)', | |
| 40 | - `REPORT_DATE` datetime DEFAULT NULL COMMENT '레포트 처리한 시간', | |
| 41 | - `REQ_DATE` datetime NOT NULL COMMENT '예약일시', | |
| 42 | - `RSLT_CODE` int(11) DEFAULT NULL COMMENT '결과처리코드', | |
| 43 | - `RSLT_CODE2` char(1) DEFAULT NULL COMMENT '결과처리 상세코드', | |
| 44 | - `RSLT_NET` char(3) DEFAULT NULL COMMENT '결과처리 통신사', | |
| 45 | - `CALL_TO` varchar(30) DEFAULT NULL COMMENT '수신번호 (하이픈 등의 문자를 제외한 12byte이하의 숫자로 입력한다.)', | |
| 46 | - `CALL_FROM` varchar(30) DEFAULT NULL COMMENT '발신번호 (하이픈 등의 문자를 제외한 12byte이하의 숫자로 입력한다.)', | |
| 47 | - `SUBJECT` varchar(120) DEFAULT NULL COMMENT 'MMS경우 제목', | |
| 48 | - `SMS_TXT` mediumtext DEFAULT NULL COMMENT 'SMS용 메시지본문', | |
| 49 | - `MSG_TYPE` int(11) NOT NULL COMMENT '메시지의 (4: SMS 전송, 5: URL 전송, 6: MMS전송, 7: BARCODE전송, 8: 카카오 알림톡 전송, 9:카카오 친구톡 전송)', | |
| 50 | - `MSG_PAY_CODE` varchar(3) DEFAULT NULL COMMENT '재전송 기능에 의한 최종전송콘텐트 종류 저장', | |
| 51 | - `CONT_SEQ` int(11) DEFAULT NULL COMMENT 'MMS의 콘텐츠 Key(MMS_CONTENTS_INFO의 CONT_SEQ)', | |
| 52 | - `MSG_TYPE_RESEND` int(11) DEFAULT NULL COMMENT '재전송할 문자 타입. 값이 있으면 재전송. 없으면 단 건 전송', | |
| 53 | - `CENTER_SEQ_RESEND` int(11) DEFAULT NULL COMMENT '재전송할 센터. NPro 내부적으로 사용함.', | |
| 54 | - `MSG_NOTICETALK_SENDER_KEY` varchar(40) DEFAULT NULL COMMENT '카카오 알림톡에 등록된 사용자 고유키', | |
| 55 | - `MSG_NOTICETALK_TMP_KEY` varchar(30) DEFAULT NULL COMMENT '카카오 알림톡에 등록된 문자 템플릿 고유키', | |
| 56 | - `MSG_RESEND_COUNT` int(11) NOT NULL DEFAULT 0 COMMENT '첫 번째 전송 값 실패하여 재전송한 카운트.(기본값 : 0, 전송 : 1, 재전송 : 2)', | |
| 57 | - `MSG_RESENDDATE` datetime DEFAULT NULL COMMENT '재전송된 시간', | |
| 58 | - `SENT_DATE_PRE` datetime DEFAULT NULL COMMENT '이전 메시지를 전송한 시각', | |
| 59 | - `RSLT_DATE_PRE` datetime DEFAULT NULL COMMENT '이전 핸드폰에 전달된 시간', | |
| 60 | - `REPORT_DATE_PRE` datetime DEFAULT NULL COMMENT '이전 레포트 처리한 시간', | |
| 61 | - `RSLT_CODE_PRE` int(11) DEFAULT NULL COMMENT '이전 결과처리코드', | |
| 62 | - `RSLT_CODE2_PRE` char(1) DEFAULT NULL COMMENT '이전 결과처리 상세코드 (결과코드는 아래 표 참조)', | |
| 63 | - `RSLT_NET_PRE` varchar(3) DEFAULT NULL COMMENT '이전 결과처리 통신사', | |
| 64 | - `CONECT_MTHD` char(2) DEFAULT '01' COMMENT '접속한 기기(01:웹 , 02:모바일, 03: 애드온모듈)', | |
| 65 | - `AGENT_CODE` char(2) DEFAULT '01' COMMENT '전송사(01:아이하트 , ...)', | |
| 66 | - `DEL_FLAG` char(1) DEFAULT 'N' COMMENT '사용자 삭제여부(N:미삭제, Y:삭제)', | |
| 67 | - `FILE_CNT` int(10) DEFAULT NULL COMMENT '첨부파일 갯수', | |
| 68 | - `FILE_PATH1` varchar(128) DEFAULT NULL COMMENT '첨부파일 1 경로', | |
| 69 | - `FILE_PATH2` varchar(128) DEFAULT NULL COMMENT '첨부파일 2 경로', | |
| 70 | - `FILE_PATH3` varchar(128) DEFAULT NULL COMMENT '첨부파일 3 경로', | |
| 71 | - `MSG_GROUP_ID` varchar(20) NOT NULL COMMENT '문자그룹ID', | |
| 72 | - `NEO_TYPE` char(2) DEFAULT NULL COMMENT 'NEO MMS메세지 타입(2:일반SMS 전송, 6: MMS파일 전송)', | |
| 73 | - `RESERVE_C_YN` char(1) DEFAULT 'N' COMMENT '예약 취소 유무', | |
| 74 | - `REFUND_YN` char(1) DEFAULT 'N' COMMENT '문자발송 실패의 환불처리 유무', | |
| 75 | - `RESULT_LOG_UPDT_PNTTM` datetime DEFAULT NULL COMMENT '문자발송 후 LOG 테이블의 결과를 업데이트한 시간', | |
| 76 | - `BIZ_KAKAO_RESEND_TYPE` varchar(30) DEFAULT NULL COMMENT '카카오 재전송 type', | |
| 77 | - `BIZ_KAKAO_RESEND_DATA` mediumtext DEFAULT NULL COMMENT '카카오 재전송 내용', | |
| 78 | - `BIZ_KAKAO_JSON_FILE` varchar(30) DEFAULT NULL COMMENT '카카오 json 첨부파일', | |
| 79 | - `BIZ_KAKAO_RESEND_YN` char(1) DEFAULT 'N' COMMENT '카카오 재전송 여부 (N:미전송, Y:재전송)', | |
| 80 | - `RESELLERCODE` varchar(10) DEFAULT '301210054' COMMENT '발송사업자 식별코드 정의', | |
| 81 | - PRIMARY KEY (`USERDATA`), | |
| 82 | - | |
| 83 | - KEY `IDX_MJ_MSG_DATA_BACKUP_2022_01` (`MSG_ID`,`CUR_STATE`,`REQ_DATE`), | |
| 84 | - KEY `IDX_$userData$_11` (`AGENT_CODE`), | |
| 85 | - KEY `IDX_$userData$_12` (`CONECT_MTHD`), | |
| 86 | - KEY `IDX_$userData$_13` (`MSG_TYPE`), | |
| 87 | - KEY `IDX_$userData$_14` (`DEL_FLAG`), | |
| 88 | - KEY `IDX_$userData$_06` (`MSG_ID`), | |
| 89 | - KEY `IDX_$userData$_07` (`CUR_STATE`), | |
| 90 | - KEY `IDX_$userData$_08` (`REQ_DATE`), | |
| 91 | - KEY `IDX_$userData$_09` (`USER_ID`), | |
| 92 | - KEY `IDX_$userData$_10` (`MSG_GROUP_ID`), | |
| 93 | - KEY `IDX_$userData$_15` (`SENT_DATE`), | |
| 94 | - KEY `IDX_$userData$_16` (`RSLT_CODE`), | |
| 95 | - KEY `IDX_$userData$_17` (`RSLT_CODE2`), | |
| 96 | - KEY `IDX_$userData$_18` (`RSLT_DATE`), | |
| 97 | - KEY `IDX_$userData$_19` (`CALL_TO`), | |
| 98 | - KEY `IDX_$userData$_20` (`CUR_STATE`,`USER_ID`,`SENT_DATE`), | |
| 99 | - KEY `IDX_$userData$_31` (`REFUND_YN`), | |
| 100 | - KEY `IDX_$userData$_32` (`RESERVE_C_YN`) | |
| 101 | - ) ENGINE=InnoDB DEFAULT CHARSET=utf8 COMMENT='문자온 메세지데이터 백업 $userData$ '; | |
| 102 | - | |
| 103 | - </insert> | |
| 104 | - | |
| 105 | - <insert id="mjonMsgDataBackup.insertCreateTableWithTableCopy" parameterClass="mjonMsgVO"> | |
| 106 | - | |
| 107 | - CREATE TABLE `$userData$` LIKE mj_msg_data; | |
| 108 | - | |
| 109 | - </insert> | |
| 110 | - | |
| 111 | - <delete id="mjonMsgDataBackup.deleteToBackupTable" parameterClass="mjonMsgVO"> | |
| 112 | - /* | |
| 113 | - DELETE FROM $userData$ | |
| 114 | - WHERE 1=1 | |
| 115 | - */ | |
| 116 | - TRUNCATE TABLE $userData$ | |
| 117 | - </delete> | |
| 118 | - | |
| 119 | - <insert id="mjonMsgDataBackup.insertToBackupTable" parameterClass="mjonMsgVO"> | |
| 120 | - INSERT INTO $userData$ | |
| 121 | - SELECT * | |
| 122 | - FROM mj_msg_data | |
| 123 | - WHERE DATE_FORMAT(sent_date,'%Y')=#sentDate# | |
| 124 | - | |
| 125 | - </insert> | |
| 126 | - | |
| 127 | - <delete id="mjonMsgDataBackup.deleteToOriginTable" parameterClass="mjonMsgVO"> | |
| 128 | - DELETE FROM mj_msg_data | |
| 129 | - WHERE #rsltDate#>DATE_FORMAT(sent_date,'%Y') | |
| 130 | - </delete> | |
| 131 | - | |
| 132 | - <delete id="mjonMsgDataBackup.deleteToOriginTableWithDay" parameterClass="mjonMsgVO"> | |
| 133 | - DELETE FROM mj_msg_data | |
| 134 | - WHERE DATE_FORMAT(sent_date,'%Y%m%d')=#rsltDate# | |
| 135 | - </delete> | |
| 136 | - | |
| 137 | - <delete id="mjonMsgDataBackup.deleteDropTable" parameterClass="mjonMsgVO"> | |
| 138 | - /* | |
| 139 | - DELETE FROM $userData$ | |
| 140 | - WHERE 1=1 | |
| 141 | - */ | |
| 142 | - DROP TABLE $userData$ | |
| 143 | - </delete> | |
| 144 | -</sqlMap>(No newline at end of file) |
--- target/classes/egovframework/sqlmap/let/cert/MjonMsgCert_SQL_mysql.xml
... | ... | @@ -1,170 +0,0 @@ |
| 1 | -<?xml version="1.0" encoding="UTF-8"?><!-- | |
| 2 | - 수정일 수정자 수정내용 | |
| 3 | - ========= ======= ================================================= | |
| 4 | - 2021.03.01 신명섭 | |
| 5 | ---> | |
| 6 | -<!DOCTYPE sqlMap PUBLIC "-//iBATIS.com//DTD SQL Map 2.0//EN" "http://www.ibatis.com/dtd/sql-map-config-2.dtd"> | |
| 7 | -<sqlMap namespace="Cert"> | |
| 8 | - <typeAlias alias="certVO" type="itn.let.mjo.cert.service.CertVO"/> | |
| 9 | - <typeAlias alias="FileVO" type="itn.com.cmm.service.FileVO"/> | |
| 10 | - | |
| 11 | - <select id="certDAO.selectCertEtcList" parameterClass="certVO" resultClass="certVO"> | |
| 12 | - SELECT | |
| 13 | - COUNT(CERT_ID) OVER() AS totCnt, | |
| 14 | - CERT_ID AS certId, | |
| 15 | - USER_ID AS userId, | |
| 16 | - (SELECT MBER_NM FROM lettngnrlmber D WHERE D.MBER_ID = USER_ID LIMIT 1) AS mberNm, | |
| 17 | - FRST_REGISTER_ID AS frstRegisterId, | |
| 18 | - DATE_FORMAT(FRST_REGIST_PNTTM, '%Y-%m-%d %T') AS frstRegistPnttm , | |
| 19 | - ATCH_FILE_ID AS atchFileId, | |
| 20 | - SENT_PHONE_NUMBER AS sentPhoneNumber, /** 발신서류 경우 발신번호 */ | |
| 21 | - ( SELECT CONCAT( GROUP_CONCAT(FILE_SN SEPARATOR '^') | |
| 22 | - , '|' | |
| 23 | - , GROUP_CONCAT(FILE_EXTSN SEPARATOR '^') ) | |
| 24 | - FROM LETTNFILEDETAIL | |
| 25 | - WHERE ATCH_FILE_ID = A.ATCH_FILE_ID | |
| 26 | - ) | |
| 27 | - AS atchFileIds, | |
| 28 | - CERT_ETC_TYPE AS certEtcType, | |
| 29 | - B.CODE_NM AS certEtcTypeTxt | |
| 30 | - FROM MJ_CERTFILE A | |
| 31 | - LEFT JOIN ( | |
| 32 | - SELECT CODE_NM , CODE , CODE_DC | |
| 33 | - FROM LETTCCMMNDETAILCODE | |
| 34 | - WHERE USE_AT = 'Y' | |
| 35 | - AND CODE_ID = 'ITN035' | |
| 36 | - ) B ON A.CERT_ETC_TYPE = B.CODE /** 기타문서타입 */ | |
| 37 | - WHERE 1=1 | |
| 38 | - <isNotEmpty property="searchKeyword"> | |
| 39 | - <isEqual property="certType" compareValue="01"> /** 발신인증 */ | |
| 40 | - <isEqual property="searchCondition" compareValue=""> | |
| 41 | - AND ( USER_ID LIKE CONCAT ('%', #searchKeyword#,'%') | |
| 42 | - OR FRST_REGISTER_ID LIKE CONCAT ('%', #searchKeyword#,'%') | |
| 43 | - OR SENT_PHONE_NUMBER LIKE CONCAT ('%', #searchKeyword#,'%') | |
| 44 | - ) | |
| 45 | - </isEqual> | |
| 46 | - <isEqual property="searchCondition" compareValue="1"> | |
| 47 | - AND USER_ID LIKE CONCAT ('%', #searchKeyword#,'%') | |
| 48 | - </isEqual> | |
| 49 | - <isEqual property="searchCondition" compareValue="2"> | |
| 50 | - AND SENT_PHONE_NUMBER LIKE CONCAT ('%', #searchKeyword#,'%') | |
| 51 | - </isEqual> | |
| 52 | - <isEqual property="searchCondition" compareValue="3"> | |
| 53 | - AND FRST_REGISTER_ID LIKE CONCAT ('%', #searchKeyword#,'%') | |
| 54 | - </isEqual> | |
| 55 | - </isEqual> | |
| 56 | - <isEqual property="certType" compareValue="09"> /** 기타서류 */ | |
| 57 | - <isEqual property="searchCondition" compareValue=""> | |
| 58 | - AND ( USER_ID LIKE CONCAT ('%', #searchKeyword#,'%') | |
| 59 | - OR FRST_REGISTER_ID LIKE CONCAT ('%', #searchKeyword#,'%') | |
| 60 | - ) | |
| 61 | - </isEqual> | |
| 62 | - <isEqual property="searchCondition" compareValue="1"> | |
| 63 | - AND USER_ID LIKE CONCAT ('%', #searchKeyword#,'%') | |
| 64 | - </isEqual> | |
| 65 | - <isEqual property="searchCondition" compareValue="2"> | |
| 66 | - AND FRST_REGISTER_ID LIKE CONCAT ('%', #searchKeyword#,'%') | |
| 67 | - </isEqual> | |
| 68 | - </isEqual> | |
| 69 | - | |
| 70 | - </isNotEmpty> | |
| 71 | - <isNotEmpty property="searchCondition2"> | |
| 72 | - AND CERT_ETC_TYPE = #searchCondition2# | |
| 73 | - </isNotEmpty> | |
| 74 | - AND CERT_TYPE = #certType# | |
| 75 | - ORDER BY 1=1 | |
| 76 | - <isNotEmpty property="searchSortCnd"> | |
| 77 | - ,$searchSortCnd$ | |
| 78 | - </isNotEmpty> | |
| 79 | - <isNotEmpty property="searchSortOrd"> | |
| 80 | - $searchSortOrd$ | |
| 81 | - </isNotEmpty> | |
| 82 | - LIMIT #recordCountPerPage# OFFSET #firstIndex# | |
| 83 | - </select> | |
| 84 | - | |
| 85 | - <!-- 기타서류 파일 관리::입력 --> | |
| 86 | - <insert id="certDAO.insertCertFile"> | |
| 87 | - INSERT INTO MJ_CERTFILE | |
| 88 | - ( | |
| 89 | - CERT_ID, | |
| 90 | - USER_ID, | |
| 91 | - SENT_PHONE_NUMBER, | |
| 92 | - FRST_REGISTER_ID, | |
| 93 | - FRST_REGIST_PNTTM, | |
| 94 | - REGISTER_ID, | |
| 95 | - ATCH_FILE_ID, | |
| 96 | - CERT_TYPE, | |
| 97 | - CERT_ETC_TYPE | |
| 98 | - ) | |
| 99 | - VALUES | |
| 100 | - ( | |
| 101 | - #certId#, | |
| 102 | - #userId#, | |
| 103 | - #sentPhoneNumber#, | |
| 104 | - #frstRegisterId#, | |
| 105 | - now(), | |
| 106 | - #registerId#, | |
| 107 | - #atchFileId#, | |
| 108 | - #certType#, | |
| 109 | - #certEtcType# | |
| 110 | - ) | |
| 111 | - </insert> | |
| 112 | - | |
| 113 | - <!-- 첨부파일관리 리스트 --> | |
| 114 | - <select id="certDAO.selectCertFileList" parameterClass="certVO" resultClass="certVO"> | |
| 115 | - <![CDATA[ | |
| 116 | - SELECT | |
| 117 | - CERT_ID AS certId, | |
| 118 | - USER_ID AS userId, | |
| 119 | - CERT_ETC_TYPE AS certEtcType, | |
| 120 | - SENT_PHONE_NUMBER AS sentPhoneNumber, | |
| 121 | - FRST_REGISTER_ID AS frstRegisterId, | |
| 122 | - DATE_FORMAT(FRST_REGIST_PNTTM, '%Y-%m-%d %T') AS frstRegistPnttm , | |
| 123 | - A.ATCH_FILE_ID AS atchFileId, | |
| 124 | - B.ORIGNL_FILE_NM AS orignlFileNm , | |
| 125 | - B.FILE_SN AS fileSn , | |
| 126 | - B.FILE_STRE_COURS AS fileStreCours, | |
| 127 | - B.STRE_FILE_NM AS streFileNm, | |
| 128 | - B.FILE_SIZE AS fileSize, | |
| 129 | - CONCAT( B.FILE_STRE_COURS, B.STRE_FILE_NM) as whFile | |
| 130 | - FROM MJ_CERTFILE A LEFT JOIN LETTNFILEDETAIL B | |
| 131 | - ON A.ATCH_FILE_ID = B.ATCH_FILE_ID | |
| 132 | - WHERE 1=1 | |
| 133 | - AND A.CERT_ID = #certId# | |
| 134 | - ]]> | |
| 135 | - </select> | |
| 136 | - | |
| 137 | - <!-- 첨부파일 삭제를 위한 리스트 조회 --> | |
| 138 | - <select id="certDAO.selectCertDetailFileList" parameterClass="certVO" resultClass="FileVO" > | |
| 139 | - <![CDATA[ | |
| 140 | - SELECT | |
| 141 | - B.ATCH_FILE_ID AS atchFileId, | |
| 142 | - B.ORIGNL_FILE_NM AS orignlFileNm , | |
| 143 | - B.FILE_SN AS fileSn , | |
| 144 | - B.FILE_STRE_COURS AS fileStreCours, | |
| 145 | - B.STRE_FILE_NM AS streFileNm, | |
| 146 | - B.FILE_SIZE AS fileSize, | |
| 147 | - CONCAT( B.FILE_STRE_COURS, B.STRE_FILE_NM) as whFile | |
| 148 | - FROM MJ_CERTFILE A INNER JOIN LETTNFILEDETAIL B | |
| 149 | - ON A.ATCH_FILE_ID = B.ATCH_FILE_ID | |
| 150 | - WHERE 1=1 | |
| 151 | - AND A.CERT_ID = #certId# | |
| 152 | - ]]> | |
| 153 | - </select> | |
| 154 | - | |
| 155 | - <delete id="certDAO.deleteCertEtc" parameterClass="certVO" > | |
| 156 | - <![CDATA[ | |
| 157 | - DELETE FROM MJ_CERTFILE | |
| 158 | - WHERE CERT_ID = #certId# | |
| 159 | - ]]> | |
| 160 | - </delete> | |
| 161 | - | |
| 162 | - <update id="certDAO.updateCertFile" parameterClass="certVO"> | |
| 163 | - UPDATE MJ_CERTFILE SET USER_ID = #userId# | |
| 164 | - , CERT_ETC_TYPE = #certEtcType# | |
| 165 | - , SENT_PHONE_NUMBER = #sentPhoneNumber# | |
| 166 | - WHERE CERT_ID = #certId# | |
| 167 | - </update> | |
| 168 | - | |
| 169 | - | |
| 170 | -</sqlMap> (No newline at end of file) |
--- target/classes/egovframework/sqlmap/let/cmm/fms/EgovFile_SQL_Mysql.xml
... | ... | @@ -1,194 +0,0 @@ |
| 1 | -<?xml version="1.0" encoding="UTF-8"?> | |
| 2 | -<!DOCTYPE sqlMap PUBLIC "-//iBATIS.com//DTD SQL Map 2.0//EN" "http://www.ibatis.com/dtd/sql-map-config-2.dtd"> | |
| 3 | - | |
| 4 | -<sqlMap namespace="File"> | |
| 5 | - | |
| 6 | - <typeAlias alias="egovMap" type="egovframework.rte.psl.dataaccess.util.EgovMap"/> | |
| 7 | - <typeAlias alias="FileVO" type="itn.com.cmm.service.FileVO"/> | |
| 8 | - | |
| 9 | - <resultMap id="fileList" class="itn.com.cmm.service.FileVO"> | |
| 10 | - <result property="atchFileId" column="ATCH_FILE_ID" columnIndex="1"/> | |
| 11 | - <result property="fileCn" column="FILE_CN" columnIndex="2"/> | |
| 12 | - <result property="fileExtsn" column="FILE_EXTSN" columnIndex="3"/> | |
| 13 | - <result property="fileMg" column="FILE_SIZE" columnIndex="4"/> | |
| 14 | - <result property="fileSn" column="FILE_SN" columnIndex="5"/> | |
| 15 | - <result property="fileStreCours" column="FILE_STRE_COURS" columnIndex="6"/> | |
| 16 | - <result property="orignlFileNm" column="ORIGNL_FILE_NM" columnIndex="7"/> | |
| 17 | - <result property="streFileNm" column="STRE_FILE_NM" columnIndex="8"/> | |
| 18 | - <result property="creatDt" column="CREAT_DT" columnIndex="9"/> | |
| 19 | - </resultMap> | |
| 20 | - | |
| 21 | - <resultMap id="fileDetail" class="itn.com.cmm.service.FileVO"> | |
| 22 | - <result property="atchFileId" column="ATCH_FILE_ID" columnIndex="1"/> | |
| 23 | - <result property="fileCn" column="FILE_CN" columnIndex="2"/> | |
| 24 | - <result property="fileExtsn" column="FILE_EXTSN" columnIndex="3"/> | |
| 25 | - <result property="fileMg" column="FILE_SIZE" columnIndex="4"/> | |
| 26 | - <result property="fileSn" column="FILE_SN" columnIndex="5"/> | |
| 27 | - <result property="fileStreCours" column="FILE_STRE_COURS" columnIndex="6"/> | |
| 28 | - <result property="orignlFileNm" column="ORIGNL_FILE_NM" columnIndex="7"/> | |
| 29 | - <result property="streFileNm" column="STRE_FILE_NM" columnIndex="8"/> | |
| 30 | - <result property="thumbFileNm" column="THUMB_FILE_NM" /> | |
| 31 | - </resultMap> | |
| 32 | - | |
| 33 | - | |
| 34 | - <select id="FileManageDAO.selectFileList" parameterClass="FileVO" resultMap="fileList" > | |
| 35 | - <![CDATA[ | |
| 36 | - SELECT | |
| 37 | - a.ATCH_FILE_ID, b.FILE_CN, b.FILE_SN, b.FILE_STRE_COURS, b.STRE_FILE_NM, | |
| 38 | - b.FILE_EXTSN, b.ORIGNL_FILE_NM, b.FILE_SIZE, DATE_FORMAT(a.CREAT_DT, '%Y-%m-%d %T' ) AS CREAT_DT | |
| 39 | - FROM | |
| 40 | - LETTNFILE a, LETTNFILEDETAIL b | |
| 41 | - WHERE | |
| 42 | - a.ATCH_FILE_ID = #atchFileId# | |
| 43 | - AND | |
| 44 | - a.ATCH_FILE_ID = b.ATCH_FILE_ID | |
| 45 | - AND | |
| 46 | - a.USE_AT = 'Y' | |
| 47 | - ORDER BY b.FILE_SN | |
| 48 | - ]]> | |
| 49 | - </select> | |
| 50 | - | |
| 51 | - <insert id="FileManageDAO.insertFileMaster" parameterClass="FileVO" > | |
| 52 | - <![CDATA[ | |
| 53 | - INSERT INTO LETTNFILE | |
| 54 | - (ATCH_FILE_ID, CREAT_DT, USE_AT) | |
| 55 | - VALUES | |
| 56 | - ( #atchFileId#, SYSDATE(), 'Y') | |
| 57 | - ]]> | |
| 58 | - </insert> | |
| 59 | - | |
| 60 | - <insert id="FileManageDAO.insertFileDetail" parameterClass="FileVO" > | |
| 61 | - <![CDATA[ | |
| 62 | - INSERT INTO LETTNFILEDETAIL | |
| 63 | - ( ATCH_FILE_ID, FILE_SN, FILE_STRE_COURS, STRE_FILE_NM, | |
| 64 | - ORIGNL_FILE_NM, FILE_EXTSN, FILE_SIZE, FILE_CN, THUMB_FILE_NM ) | |
| 65 | - VALUES | |
| 66 | - ( #atchFileId#, #fileSn#, #fileStreCours#, #streFileNm#, | |
| 67 | - #orignlFileNm#, #fileExtsn#, #fileMg#, #fileCn#, #thumbFileNm# ) | |
| 68 | - ]]> | |
| 69 | - </insert> | |
| 70 | - | |
| 71 | - <delete id="FileManageDAO.deleteFileDetail" parameterClass="FileVO" > | |
| 72 | - <![CDATA[ | |
| 73 | - DELETE FROM LETTNFILEDETAIL | |
| 74 | - WHERE | |
| 75 | - ATCH_FILE_ID = #atchFileId# | |
| 76 | - AND | |
| 77 | - FILE_SN = #fileSn# | |
| 78 | - ]]> | |
| 79 | - </delete> | |
| 80 | - | |
| 81 | - <select id="FileManageDAO.getMaxFileSN" parameterClass="FileVO" resultClass="java.lang.Integer"> | |
| 82 | - <![CDATA[ | |
| 83 | - SELECT IFNULL(MAX(FILE_SN),0)+1 AS FILE_SN | |
| 84 | - FROM LETTNFILEDETAIL | |
| 85 | - WHERE ATCH_FILE_ID = #atchFileId# | |
| 86 | - ]]> | |
| 87 | - </select> | |
| 88 | - | |
| 89 | - <select id="FileManageDAO.selectFileInf" parameterClass="FileVO" resultMap="fileDetail" > | |
| 90 | - <![CDATA[ | |
| 91 | - SELECT | |
| 92 | - ATCH_FILE_ID, FILE_CN, FILE_SN, FILE_STRE_COURS, STRE_FILE_NM, | |
| 93 | - FILE_EXTSN, ORIGNL_FILE_NM, FILE_SIZE, THUMB_FILE_NM | |
| 94 | - FROM | |
| 95 | - LETTNFILEDETAIL | |
| 96 | - WHERE | |
| 97 | - ATCH_FILE_ID = #atchFileId# | |
| 98 | - AND | |
| 99 | - FILE_SN = #fileSn# | |
| 100 | - ]]> | |
| 101 | - </select> | |
| 102 | - | |
| 103 | - <update id="FileManageDAO.deleteCOMTNFILE" parameterClass="FileVO" > | |
| 104 | - <![CDATA[ | |
| 105 | - UPDATE LETTNFILE | |
| 106 | - SET USE_AT = 'N' | |
| 107 | - WHERE ATCH_FILE_ID = #atchFileId# | |
| 108 | - ]]> | |
| 109 | - </update> | |
| 110 | - | |
| 111 | - <select id="FileManageDAO.selectFileListByFileNm" parameterClass="FileVO" resultMap="fileList" > | |
| 112 | - <![CDATA[ | |
| 113 | - SELECT | |
| 114 | - a.ATCH_FILE_ID, b.FILE_CN, b.FILE_SN, b.FILE_STRE_COURS, b.STRE_FILE_NM, | |
| 115 | - b.FILE_EXTSN, b.ORIGNL_FILE_NM, b.FILE_SIZE, DATE_FORMAT(a.CREAT_DT, '%Y-%m-%d %T' ) AS CREAT_DT | |
| 116 | - FROM | |
| 117 | - LETTNFILE a, LETTNFILEDETAIL b | |
| 118 | - WHERE | |
| 119 | - a.ATCH_FILE_ID = b.ATCH_FILE_ID | |
| 120 | - AND | |
| 121 | - a.USE_AT = 'Y' | |
| 122 | - ]]> | |
| 123 | - <isEqual prepend="AND" property="searchCnd" compareValue="streFileNm"> | |
| 124 | - <![CDATA[ b.STRE_FILE_NM LIKE CONCAT ('%', #searchWrd#,'%') ]]> | |
| 125 | - </isEqual> | |
| 126 | - <isEqual prepend="AND" property="searchCnd" compareValue="orignlFileNm"> | |
| 127 | - <![CDATA[ b.ORIGNL_FILE_NM LIKE CONCAT ('%', #searchWrd#,'%') ]]> | |
| 128 | - </isEqual> | |
| 129 | - <![CDATA[ | |
| 130 | - ORDER BY a.ATCH_FILE_ID, b.FILE_SN | |
| 131 | - LIMIT #recordCountPerPage# OFFSET #firstIndex# | |
| 132 | - ]]> | |
| 133 | - </select> | |
| 134 | - | |
| 135 | - <select id="FileManageDAO.selectFileListCntByFileNm" parameterClass="FileVO" resultClass="java.lang.Integer" > | |
| 136 | - <![CDATA[ | |
| 137 | - SELECT | |
| 138 | - COUNT(a.ATCH_FILE_ID) | |
| 139 | - FROM | |
| 140 | - LETTNFILE a, LETTNFILEDETAIL b | |
| 141 | - WHERE | |
| 142 | - a.ATCH_FILE_ID = b.ATCH_FILE_ID | |
| 143 | - AND | |
| 144 | - a.USE_AT = 'Y' | |
| 145 | - ]]> | |
| 146 | - <isEqual prepend="AND" property="searchCnd" compareValue="streFileNm"> | |
| 147 | - <![CDATA[ b.STRE_FILE_NM LIKE CONCAT ('%', #searchWrd#,'%') ]]> | |
| 148 | - </isEqual> | |
| 149 | - <isEqual prepend="AND" property="searchCnd" compareValue="orignlFileNm"> | |
| 150 | - <![CDATA[ b.ORIGNL_FILE_NM LIKE CONCAT ('%', #searchWrd#,'%') ]]> | |
| 151 | - </isEqual> | |
| 152 | - </select> | |
| 153 | - | |
| 154 | - <select id="FileManageDAO.selectImageFileList" parameterClass="FileVO" resultMap="fileList" > | |
| 155 | - <![CDATA[ | |
| 156 | - SELECT | |
| 157 | - a.ATCH_FILE_ID, b.FILE_CN, b.FILE_SN, b.FILE_STRE_COURS, b.STRE_FILE_NM, | |
| 158 | - b.FILE_EXTSN, b.ORIGNL_FILE_NM, b.FILE_SIZE, a.CREAT_DT | |
| 159 | - FROM | |
| 160 | - LETTNFILE a, LETTNFILEDETAIL b | |
| 161 | - WHERE | |
| 162 | - a.ATCH_FILE_ID = #atchFileId# | |
| 163 | - AND | |
| 164 | - a.ATCH_FILE_ID = b.ATCH_FILE_ID | |
| 165 | - AND | |
| 166 | - UPPER(b.FILE_EXTSN) IN ('GIF','JPG','BMP','PNG') | |
| 167 | - AND | |
| 168 | - a.USE_AT = 'Y' | |
| 169 | - ]]> | |
| 170 | - <isNotEmpty property="fileSn" > | |
| 171 | - AND b.FILE_SN = #fileSn# | |
| 172 | - </isNotEmpty > | |
| 173 | - ORDER BY b.FILE_SN | |
| 174 | - </select> | |
| 175 | - | |
| 176 | - <update id="FileManageDAO.updateFileInfo" parameterClass="FileVO" > | |
| 177 | - <![CDATA[ | |
| 178 | - INSERT INTO LETTNFILEDETAIL | |
| 179 | - ( ATCH_FILE_ID, FILE_SN, FILE_STRE_COURS, STRE_FILE_NM, | |
| 180 | - ORIGNL_FILE_NM, FILE_EXTSN, FILE_SIZE, FILE_CN ) | |
| 181 | - VALUES | |
| 182 | - ( #atchFileId#, #fileSn#, #fileStreCours#, #streFileNm#, | |
| 183 | - #orignlFileNm#, #fileExtsn#, #fileMg#, #fileCn# ) | |
| 184 | - ON DUPLICATE KEY UPDATE ATCH_FILE_ID = #atchFileId#, | |
| 185 | - FILE_STRE_COURS = #fileStreCours#, | |
| 186 | - STRE_FILE_NM = #streFileNm#, | |
| 187 | - ORIGNL_FILE_NM = #orignlFileNm#, | |
| 188 | - FILE_EXTSN = #fileExtsn#, | |
| 189 | - FILE_SIZE = #fileMg#, | |
| 190 | - FILE_CN = #fileCn# | |
| 191 | - ]]> | |
| 192 | - </update> | |
| 193 | - | |
| 194 | -</sqlMap> |
--- target/classes/egovframework/sqlmap/let/cmm/read/Read_SQL_Mysql.xml
... | ... | @@ -1,38 +0,0 @@ |
| 1 | -<?xml version="1.0" encoding="UTF-8"?> | |
| 2 | -<!DOCTYPE sqlMap PUBLIC "-//iBATIS.com//DTD SQL Map 2.0//EN" "http://www.ibatis.com/dtd/sql-map-config-2.dtd"> | |
| 3 | - | |
| 4 | -<sqlMap namespace="Read"> | |
| 5 | - | |
| 6 | - <typeAlias alias="egovMap" type="egovframework.rte.psl.dataaccess.util.EgovMap"/> | |
| 7 | - <typeAlias alias="readVO" type="itn.com.cmm.ReadVO"/> | |
| 8 | - | |
| 9 | - <resultMap id="readList" class="itn.com.cmm.ReadVO"> | |
| 10 | - <result property="menuNo" column="MENU_NO" columnIndex="1"/> | |
| 11 | - <result property="readId" column="READ_ID" columnIndex="2"/> | |
| 12 | - <result property="loginId" column="LOGIN_ID" columnIndex="3"/> | |
| 13 | - </resultMap> | |
| 14 | - | |
| 15 | - <select id="readDAO.selectReadYn" parameterClass="readVO" resultMap="readList" > | |
| 16 | - SELECT | |
| 17 | - MENU_NO, | |
| 18 | - READ_ID, | |
| 19 | - LOGIN_ID | |
| 20 | - FROM | |
| 21 | - READYN | |
| 22 | - WHERE | |
| 23 | - READ_ID = #readId# | |
| 24 | - AND LOGIN_ID= #loginId# | |
| 25 | - </select> | |
| 26 | - | |
| 27 | - <insert id="readDAO.insertReadYn" parameterClass="readVO" > | |
| 28 | - INSERT INTO READYN ( | |
| 29 | - MENU_NO, | |
| 30 | - READ_ID, | |
| 31 | - LOGIN_ID | |
| 32 | - ) values( | |
| 33 | - #menuNo#, | |
| 34 | - #readId#, | |
| 35 | - #loginId# | |
| 36 | - ) | |
| 37 | - </insert> | |
| 38 | -</sqlMap> (No newline at end of file) |
--- target/classes/egovframework/sqlmap/let/cmm/use/EgovCmmUse_SQL_Mysql.xml
... | ... | @@ -1,74 +0,0 @@ |
| 1 | -<?xml version="1.0" encoding="UTF-8"?> | |
| 2 | -<!DOCTYPE sqlMap PUBLIC "-//iBATIS.com//DTD SQL Map 2.0//EN" "http://www.ibatis.com/dtd/sql-map-config-2.dtd"> | |
| 3 | - | |
| 4 | -<sqlMap namespace="CmmUse"> | |
| 5 | - | |
| 6 | - <typeAlias alias="egovMap" type="egovframework.rte.psl.dataaccess.util.EgovMap"/> | |
| 7 | - <typeAlias alias="ComDefaultCodeVO" type="itn.com.cmm.ComDefaultCodeVO"/> | |
| 8 | - | |
| 9 | - <resultMap id="CmmCodeDetail" class="itn.com.cmm.service.CmmnDetailCode"> | |
| 10 | - <result property="codeId" column="CODE_ID" columnIndex="1"/> | |
| 11 | - <result property="code" column="CODE" columnIndex="2"/> | |
| 12 | - <result property="codeNm" column="CODE_NM" columnIndex="3"/> | |
| 13 | - <result property="codeDc" column="CODE_DC" columnIndex="4"/> | |
| 14 | - </resultMap> | |
| 15 | - | |
| 16 | - <select id="CmmUseDAO.selectCmmCodeDetail" parameterClass="ComDefaultCodeVO" resultMap="CmmCodeDetail"> | |
| 17 | - <![CDATA[ | |
| 18 | - SELECT | |
| 19 | - CODE_ID, CODE, CODE_NM, CODE_DC | |
| 20 | - FROM | |
| 21 | - LETTCCMMNDETAILCODE | |
| 22 | - WHERE | |
| 23 | - USE_AT = 'Y' | |
| 24 | - AND CODE_ID = #codeId# | |
| 25 | - ORDER BY SORT | |
| 26 | - ]]> | |
| 27 | - </select> | |
| 28 | - | |
| 29 | - <select id="CmmUseDAO.selectOgrnztIdDetail" parameterClass="ComDefaultCodeVO" resultMap="CmmCodeDetail"> | |
| 30 | - <![CDATA[ | |
| 31 | - SELECT | |
| 32 | - #tableNm# CODE_ID, | |
| 33 | - ORGNZT_ID CODE, | |
| 34 | - ORGNZT_NM CODE_NM, | |
| 35 | - ORGNZT_DC CODE_DC | |
| 36 | - FROM | |
| 37 | - LETTNORGNZTINFO | |
| 38 | - WHERE 1=1 | |
| 39 | - ]]> | |
| 40 | - <isEqual prepend="AND" property="haveDetailCondition" compareValue="Y"> | |
| 41 | - ORGNZT_ID LIKE #detailConditionValue# | |
| 42 | - </isEqual> | |
| 43 | - </select> | |
| 44 | - | |
| 45 | - <select id="CmmUseDAO.selectGroupIdDetail" parameterClass="ComDefaultCodeVO" resultMap="CmmCodeDetail"> | |
| 46 | - <![CDATA[ | |
| 47 | - SELECT | |
| 48 | - #tableNm# CODE_ID, | |
| 49 | - GROUP_ID CODE, | |
| 50 | - GROUP_NM CODE_NM, | |
| 51 | - GROUP_DC CODE_DC | |
| 52 | - FROM | |
| 53 | - LETTNAUTHORGROUPINFO | |
| 54 | - WHERE 1=1 | |
| 55 | - ]]> | |
| 56 | - <isEqual prepend="AND" property="haveDetailCondition" compareValue="Y"> | |
| 57 | - GROUP_ID LIKE #detailConditionValue# | |
| 58 | - </isEqual> | |
| 59 | - </select> | |
| 60 | - | |
| 61 | - <select id="CmmUseDAO.selectCmmCodeDetailValue" parameterClass="ComDefaultCodeVO" resultMap="CmmCodeDetail"> | |
| 62 | - <![CDATA[ | |
| 63 | - SELECT | |
| 64 | - CODE_ID, CODE, CODE_NM, CODE_DC | |
| 65 | - FROM | |
| 66 | - LETTCCMMNDETAILCODE | |
| 67 | - WHERE | |
| 68 | - USE_AT = 'Y' | |
| 69 | - AND CODE_ID = #codeId# | |
| 70 | - AND CODE = #code# | |
| 71 | - ]]> | |
| 72 | - </select> | |
| 73 | - | |
| 74 | -</sqlMap> (No newline at end of file) |
--- target/classes/egovframework/sqlmap/let/cop/bbs/EgovBBSMaster_SQL_Mysql.xml
... | ... | @@ -1,672 +0,0 @@ |
| 1 | -<?xml version="1.0" encoding="UTF-8"?> | |
| 2 | -<!DOCTYPE sqlMap PUBLIC "-//iBATIS.com//DTD SQL Map 2.0//EN" "http://www.ibatis.com/dtd/sql-map-config-2.dtd"> | |
| 3 | - | |
| 4 | -<sqlMap namespace="BBSMaster"> | |
| 5 | - | |
| 6 | - <typeAlias alias="egovMap" type="egovframework.rte.psl.dataaccess.util.EgovMap"/> | |
| 7 | - <typeAlias alias="BoardMasterVO" type="itn.let.cop.bbs.service.BoardMasterVO"/> | |
| 8 | - <typeAlias alias="BoardMaster" type="itn.let.cop.bbs.service.BoardMaster"/> | |
| 9 | - <typeAlias alias="boardVO" type="itn.let.cop.bbs.service.BoardVO"/> | |
| 10 | - <typeAlias alias="ComDefaultVO" type="itn.com.cmm.ComDefaultVO"/> | |
| 11 | - | |
| 12 | - | |
| 13 | - <resultMap id="boardMasterList" class="itn.let.cop.bbs.service.BoardMasterVO"> | |
| 14 | - <result property="bbsId" column="BBS_ID"/> | |
| 15 | - <result property="bbsTyCode" column="BBS_TY_CODE"/> | |
| 16 | - <result property="bbsTyCodeNm" column="BBS_TY_CODE_NM"/> | |
| 17 | - <result property="bbsAttrbCode" column="BBS_ATTRB_CODE"/> | |
| 18 | - <result property="bbsAttrbCodeNm" column="BBS_ATTRB_CODE_NM"/> | |
| 19 | - <result property="bbsNm" column="BBS_NM"/> | |
| 20 | - <result property="tmplatId" column="TMPLAT_ID"/> | |
| 21 | - <result property="useAt" column="USE_AT"/> | |
| 22 | - <result property="useAtTxt" column="USE_AT_TXT"/> | |
| 23 | - <result property="frstRegisterPnttm" column="FRST_REGIST_PNTTM"/> | |
| 24 | - <result property="totCnt" column="TOTCNT"/> | |
| 25 | - <result property="newCnt" column="NEWCNT"/> | |
| 26 | - <result property="writeYn" column="WRITE_YN"/> | |
| 27 | - <result property="menuNm" column="MENU_NM"/> | |
| 28 | - </resultMap> | |
| 29 | - | |
| 30 | - <resultMap id="boardMasterDetail" class="itn.let.cop.bbs.service.BoardMasterVO"> | |
| 31 | - <result property="bbsId" column="BBS_ID"/> | |
| 32 | - <result property="bbsTyCode" column="BBS_TY_CODE"/> | |
| 33 | - <result property="bbsAttrbCode" column="BBS_ATTRB_CODE"/> | |
| 34 | - <result property="bbsNm" column="BBS_NM"/> | |
| 35 | - <result property="bbsIntrcn" column="BBS_INTRCN"/> | |
| 36 | - <result property="replyPosblAt" column="REPLY_POSBL_AT"/> | |
| 37 | - <result property="fileAtchPosblAt" column="FILE_ATCH_POSBL_AT"/> | |
| 38 | - <result property="posblAtchFileNumber" column="ATCH_POSBL_FILE_NUMBER"/> | |
| 39 | - <result property="posblAtchFileSize" column="ATCH_POSBL_FILE_SIZE"/> | |
| 40 | - <result property="tmplatId" column="TMPLAT_ID"/> | |
| 41 | - <result property="frstRegisterId" column="FRST_REGISTER_ID"/> | |
| 42 | - <result property="frstRegisterNm" column="FRST_REGISTER_NM"/> | |
| 43 | - <result property="frstRegisterPnttm" column="FRST_REGIST_PNTTM"/> | |
| 44 | - <result property="bbsTyCodeNm" column="BBS_TY_CODE_NM"/> | |
| 45 | - <result property="bbsAttrbCodeNm" column="BBS_ATTRB_CODE_NM"/> | |
| 46 | - <result property="tmplatNm" column="TMPLAT_NM"/> | |
| 47 | - <result property="authFlag" column="AUTH_FLAG"/> | |
| 48 | - <result property="tmplatCours" column="TMPLAT_COURS"/> | |
| 49 | - | |
| 50 | - <result property="listNum" column="LIST_NUM" nullValue="0" /> | |
| 51 | - <result property="pageNum" column="PAGE_NUM" nullValue="0" /> | |
| 52 | - <result property="titleNum" column="TITLE_NUM" nullValue="0" /> | |
| 53 | - <result property="addYn" column="ADD_YN" nullValue="" /> | |
| 54 | - <result property="noticeYn" column="NOTICE_YN" nullValue="" /> | |
| 55 | - <result property="passwordYn" column="PASSWORD_YN" nullValue="" /> | |
| 56 | - <result property="openYn" column="OPEN_YN" nullValue="" /> | |
| 57 | - <result property="regidayYn" column="REGIDAY_YN" nullValue="" /> | |
| 58 | - <result property="regierYn" column="REGIER_YN" nullValue="" /> | |
| 59 | - <result property="ipYn" column="IP_YN" nullValue="" /> | |
| 60 | - <result property="manageAuth" column="MANAGE_AUTH" nullValue="" /> | |
| 61 | - <result property="noticeAuth" column="NOTICE_AUTH" nullValue="" /> | |
| 62 | - <result property="listAuth" column="LIST_AUTH" nullValue="" /> | |
| 63 | - <result property="viewAuth" column="VIEW_AUTH" nullValue="" /> | |
| 64 | - <result property="writeAuth" column="WRITE_AUTH" nullValue="" /> | |
| 65 | - <result property="replyAuth" column="REPLY_AUTH" nullValue="" /> | |
| 66 | - <result property="addAuth" column="ADD_AUTH" nullValue="" /> | |
| 67 | - <result property="fileatchAuth" column="FILEATCH_AUTH" nullValue="" /> | |
| 68 | - <result property="deleteAuth" column="DELETE_AUTH" nullValue="" /> | |
| 69 | - <result property="viewsYn" column="VIEWS_YN" nullValue="" /> | |
| 70 | - <result property="useAt" column="USE_AT" nullValue="" /> | |
| 71 | - <result property="bbsDc" column="BBS_DC" nullValue="" /> | |
| 72 | - <result property="menuCours" column="MENU_COURS" nullValue="" /> | |
| 73 | - <result property="firstDeptMenuNo" column="FIRST_DEPT_MENU_NO" nullValue="" /> | |
| 74 | - <result property="thumbAtchFileYn" column="THUMB_ATCH_FILE_YN" nullValue="" /> | |
| 75 | - <result property="seCmmnCdId" column="SE_CMMN_CD_ID" nullValue="" /> | |
| 76 | - <result property="koglCnYn" column="KOGL_CN_YN" nullValue="" /> | |
| 77 | - <result property="linkUrlYn" column="LINK_URL_YN" nullValue="" /> | |
| 78 | - <result property="ntceDateYn" column="NTCE_DATE_YN" nullValue="" /> | |
| 79 | - <result property="writeYn" column="WRITE_YN" nullValue="" /> | |
| 80 | - <result property="menuNm" column="MENU_NM" nullValue="" /> | |
| 81 | - <result property="menuNo" column="MENU_NO" nullValue="" /> | |
| 82 | - | |
| 83 | - </resultMap> | |
| 84 | - | |
| 85 | - <resultMap id="boardMasterAll" class="itn.let.cop.bbs.service.BoardMasterVO"> | |
| 86 | - <result property="bbsId" column="BBS_ID"/> | |
| 87 | - <result property="bbsTyCode" column="BBS_TY_CODE"/> | |
| 88 | - <result property="bbsAttrbCode" column="BBS_ATTRB_CODE"/> | |
| 89 | - <result property="bbsNm" column="BBS_NM"/> | |
| 90 | - <result property="tmplatId" column="TMPLAT_ID"/> | |
| 91 | - </resultMap> | |
| 92 | - | |
| 93 | - <select id="BBSAttributeManageDAO.selectBBSMasterInfs" parameterClass="BoardMasterVO" resultMap="boardMasterList" > | |
| 94 | - <![CDATA[ | |
| 95 | - SELECT | |
| 96 | - a.BBS_ID, a.BBS_TY_CODE, b.CODE_NM as BBS_TY_CODE_NM, | |
| 97 | - a.BBS_ATTRB_CODE, c.CODE_NM as BBS_ATTRB_CODE_NM, a.BBS_NM, | |
| 98 | - a.TMPLAT_ID, a.USE_AT, IF(a.USE_AT = 'N', '미사용', '사용') USE_AT_TXT , | |
| 99 | - DATE_FORMAT(a.FRST_REGIST_PNTTM, '%Y-%m-%d %T') as FRST_REGIST_PNTTM, | |
| 100 | - IFNULL(d.TOTCNT, 0) as TOTCNT, IFNULL(d.NEWCNT, 0) as NEWCNT, a.WRITE_YN, | |
| 101 | - if(e.MENU_NM='root' , '', e.MENU_NM) as MENU_NM | |
| 102 | - FROM | |
| 103 | - LETTNBBSMASTER a | |
| 104 | - LEFT OUTER JOIN | |
| 105 | - (SELECT CODE_ID, CODE, CODE_NM FROM | |
| 106 | - LETTCCMMNDETAILCODE WHERE CODE_ID = 'COM004' AND USE_AT='Y') b | |
| 107 | - ON a.BBS_TY_CODE = b.CODE | |
| 108 | - LEFT OUTER JOIN | |
| 109 | - (SELECT CODE_ID, CODE, CODE_NM FROM | |
| 110 | - LETTCCMMNDETAILCODE WHERE CODE_ID = 'COM009' AND USE_AT='Y') c | |
| 111 | - ON a.BBS_ATTRB_CODE = c.CODE | |
| 112 | - LEFT OUTER JOIN | |
| 113 | - (SELECT BBS_ID, COUNT(1) AS TOTCNT, COUNT(IF(TIMESTAMPDIFF(DAY, FRST_REGIST_PNTTM, SYSDATE()) <= 7, BBS_ID, NULL)) as NEWCNT | |
| 114 | - FROM (SELECT BBS_ID, FRST_REGIST_PNTTM, USE_AT | |
| 115 | - FROM LETTNBBS WHERE USE_AT = 'Y') z GROUP BY z.BBS_ID | |
| 116 | - ) d | |
| 117 | - ON a.BBS_ID = d.BBS_ID | |
| 118 | - LEFT OUTER JOIN LETTNMENUINFO e ON a.MENU_NO = e.MENU_NO | |
| 119 | - WHERE 1=1 | |
| 120 | - ]]> | |
| 121 | - <isNotEmpty property="useAt"> | |
| 122 | - AND a.USE_AT = #useAt# | |
| 123 | - </isNotEmpty> | |
| 124 | - <isEqual prepend="AND" property="searchCnd" compareValue="0"> | |
| 125 | - <![CDATA[( a.BBS_NM LIKE CONCAT ('%', #searchWrd#,'%') or MENU_NM LIKE CONCAT ('%', #searchWrd#,'%') ) ]]> | |
| 126 | - </isEqual> | |
| 127 | - <isEqual prepend="AND" property="searchCnd" compareValue="1"> | |
| 128 | - <![CDATA[ b.CODE_NM LIKE CONCAT ('%', #searchWrd#,'%') ]]> | |
| 129 | - </isEqual> | |
| 130 | - <isNotEmpty prepend="AND" property="bbsMngId"> | |
| 131 | - <![CDATA[ a.BBS_ID IN (SELECT BBS_ID FROM LETTNBBSMNG WHERE EMPLYR_ID = #bbsMngId#) ]]> | |
| 132 | - </isNotEmpty> | |
| 133 | - <isNotEmpty property="bbsTyCode"> | |
| 134 | - AND a.BBS_TY_CODE = #bbsTyCode# | |
| 135 | - </isNotEmpty> | |
| 136 | - <isNotEmpty property="seCmmnCdId"> | |
| 137 | - AND a.SE_CMMN_CD_ID = #seCmmnCdId# | |
| 138 | - </isNotEmpty> | |
| 139 | - ORDER BY 1=1 | |
| 140 | - <isNotEmpty property="searchSortCnd"> | |
| 141 | - ,$searchSortCnd$ | |
| 142 | - </isNotEmpty> | |
| 143 | - <isNotEmpty property="searchSortOrd"> | |
| 144 | - $searchSortOrd$ | |
| 145 | - </isNotEmpty> | |
| 146 | - | |
| 147 | - LIMIT #recordCountPerPage# OFFSET #firstIndex# | |
| 148 | - </select> | |
| 149 | - | |
| 150 | - <select id="BBSAttributeManageDAO.selectBBSMasterInfsCnt" parameterClass="BoardMasterVO" resultClass="java.lang.Integer" > | |
| 151 | - <![CDATA[ | |
| 152 | - SELECT | |
| 153 | - COUNT(a.BBS_ID) | |
| 154 | - FROM | |
| 155 | - LETTNBBSMASTER a | |
| 156 | - LEFT OUTER JOIN | |
| 157 | - (SELECT CODE_ID, CODE, CODE_NM FROM | |
| 158 | - LETTCCMMNDETAILCODE WHERE CODE_ID = 'COM004' AND USE_AT='Y') b | |
| 159 | - ON a.BBS_TY_CODE = b.CODE | |
| 160 | - LEFT OUTER JOIN | |
| 161 | - (SELECT CODE_ID, CODE, CODE_NM FROM | |
| 162 | - LETTCCMMNDETAILCODE WHERE CODE_ID = 'COM009' AND USE_AT='Y') c | |
| 163 | - ON a.BBS_ATTRB_CODE = c.CODE | |
| 164 | - LEFT OUTER JOIN LETTNMENUINFO e ON a.MENU_NO = e.MENU_NO | |
| 165 | - WHERE 1=1 | |
| 166 | - ]]> | |
| 167 | - <isNotEmpty property="useAt"> | |
| 168 | - AND a.USE_AT = #useAt# | |
| 169 | - </isNotEmpty> | |
| 170 | - <isEqual prepend="AND" property="searchCnd" compareValue="0"> | |
| 171 | - <![CDATA[( a.BBS_NM LIKE CONCAT ('%', #searchWrd#,'%') or MENU_NM LIKE CONCAT ('%', #searchWrd#,'%') ) ]]> | |
| 172 | - </isEqual> | |
| 173 | - <isEqual prepend="AND" property="searchCnd" compareValue="1"> | |
| 174 | - <![CDATA[ b.CODE_NM LIKE CONCAT ('%', #searchWrd#,'%') ]]> | |
| 175 | - </isEqual> | |
| 176 | - <isNotEmpty prepend="AND" property="bbsMngId"> | |
| 177 | - <![CDATA[ a.BBS_ID IN (SELECT BBS_ID FROM LETTNBBSMNG WHERE EMPLYR_ID = #bbsMngId#) ]]> | |
| 178 | - </isNotEmpty> | |
| 179 | - <isNotEmpty property="searchConditionSite"> /* 수퍼 관리자가 조회 */ | |
| 180 | - AND a.SITE_ID = #searchConditionSite# | |
| 181 | - </isNotEmpty> | |
| 182 | - </select> | |
| 183 | - | |
| 184 | - <update id="BBSAttributeManageDAO.deleteBBSMasterInf" parameterClass="BoardMaster"> | |
| 185 | - <![CDATA[ | |
| 186 | - UPDATE LETTNBBSMASTER SET | |
| 187 | - USE_AT = 'N', | |
| 188 | - LAST_UPDUSR_ID = #lastUpdusrId#, | |
| 189 | - LAST_UPDT_PNTTM = SYSDATE() | |
| 190 | - WHERE BBS_ID = #bbsId# | |
| 191 | - ]]> | |
| 192 | - </update> | |
| 193 | - | |
| 194 | - <select id="BBSAttributeManageDAO.selectAllBBSMaster" parameterClass="BoardMasterVO" resultMap="boardMasterAll" > | |
| 195 | - <![CDATA[ | |
| 196 | - SELECT | |
| 197 | - BBS_ID, BBS_TY_CODE, BBS_ATTRB_CODE, BBS_NM, TMPLAT_ID | |
| 198 | - FROM | |
| 199 | - LETTNBBSMASTER | |
| 200 | - WHERE USE_AT = 'Y' | |
| 201 | - ]]> | |
| 202 | - </select> | |
| 203 | - | |
| 204 | - <select id="BBSAttributeManageDAO.selectAllBdMstrByTrget" parameterClass="BoardMasterVO" resultMap="boardMasterAll" > | |
| 205 | - <![CDATA[ | |
| 206 | - SELECT | |
| 207 | - a.BBS_ID, a.BBS_TY_CODE, a.BBS_ATTRB_CODE, a.BBS_NM, a.TMPLAT_ID | |
| 208 | - FROM | |
| 209 | - LETTNBBSMASTER a, LETTNBBSUSE b | |
| 210 | - WHERE | |
| 211 | - a.BBS_ID = b.BBS_ID | |
| 212 | - AND | |
| 213 | - b.TRGET_ID = #trgetId# | |
| 214 | - AND | |
| 215 | - a.USE_AT = 'Y' AND b.USE_AT = 'Y' | |
| 216 | - ORDER BY a.BBS_ID | |
| 217 | - ]]> | |
| 218 | - </select> | |
| 219 | - | |
| 220 | - <select id="BBSAttributeManageDAO.selectBdMstrListByTrget" parameterClass="BoardMasterVO" resultMap="boardMasterList" > | |
| 221 | - <![CDATA[ | |
| 222 | - /* no use */ | |
| 223 | - SELECT | |
| 224 | - a.BBS_ID, a.BBS_TY_CODE, b.CODE_NM as BBS_TY_CODE_NM, | |
| 225 | - a.BBS_ATTRB_CODE, c.CODE_NM as BBS_ATTRB_CODE_NM, a.BBS_NM, | |
| 226 | - a.TMPLAT_ID, a.USE_AT, IF(a.USE_AT = 'N', '미사용', '사용') USE_AT_TXT , | |
| 227 | - DATE_FORMAT(a.FRST_REGIST_PNTTM, '%Y-%m-%d') as FRST_REGIST_PNTTM | |
| 228 | - FROM | |
| 229 | - LETTNBBSMASTER a | |
| 230 | - LEFT OUTER JOIN | |
| 231 | - (SELECT CODE_ID, CODE, CODE_NM FROM | |
| 232 | - LETTCCMMNDETAILCODE WHERE CODE_ID = 'COM004' AND USE_AT='Y') b | |
| 233 | - ON a.BBS_TY_CODE = b.CODE | |
| 234 | - LEFT OUTER JOIN | |
| 235 | - (SELECT CODE_ID, CODE, CODE_NM FROM | |
| 236 | - LETTCCMMNDETAILCODE WHERE CODE_ID = 'COM009' AND USE_AT='Y') c | |
| 237 | - ON a.BBS_ATTRB_CODE = c.CODE, | |
| 238 | - LETTNBBSUSE d | |
| 239 | - WHERE | |
| 240 | - a.BBS_ID = d.BBS_ID | |
| 241 | - AND | |
| 242 | - d.TRGET_ID = #trgetId# | |
| 243 | - ]]> | |
| 244 | - <isEqual prepend="AND" property="searchCnd" compareValue="0"> | |
| 245 | - <![CDATA[ a.BBS_NM LIKE CONCAT ('%', #searchWrd#,'%') ]]> | |
| 246 | - </isEqual> | |
| 247 | - <isEqual prepend="AND" property="searchCnd" compareValue="1"> | |
| 248 | - <![CDATA[ b.CODE_NM LIKE CONCAT ('%', #searchWrd#,'%') ]]> | |
| 249 | - </isEqual> | |
| 250 | - <![CDATA[ | |
| 251 | - ORDER BY a.FRST_REGIST_PNTTM DESC | |
| 252 | - LIMIT #recordCountPerPage# OFFSET #firstIndex# | |
| 253 | - ]]> | |
| 254 | - </select> | |
| 255 | - | |
| 256 | - <select id="BBSAttributeManageDAO.selectBdMstrListCntByTrget" parameterClass="BoardMasterVO" resultClass="java.lang.Integer" > | |
| 257 | - <![CDATA[ | |
| 258 | - /* no use */ | |
| 259 | - SELECT | |
| 260 | - COUNT(a.BBS_ID) | |
| 261 | - FROM | |
| 262 | - LETTNBBSMASTER a | |
| 263 | - LEFT OUTER JOIN | |
| 264 | - (SELECT CODE_ID, CODE, CODE_NM FROM | |
| 265 | - LETTCCMMNDETAILCODE WHERE CODE_ID = 'COM004' AND USE_AT='Y') b | |
| 266 | - ON a.BBS_TY_CODE = b.CODE | |
| 267 | - LEFT OUTER JOIN | |
| 268 | - (SELECT CODE_ID, CODE, CODE_NM FROM | |
| 269 | - LETTCCMMNDETAILCODE WHERE CODE_ID = 'COM009' AND USE_AT='Y') c | |
| 270 | - ON a.BBS_ATTRB_CODE = c.CODE, | |
| 271 | - LETTNBBSUSE d | |
| 272 | - WHERE | |
| 273 | - a.BBS_ID = d.BBS_ID | |
| 274 | - AND | |
| 275 | - d.TRGET_ID = #trgetId# | |
| 276 | - ]]> | |
| 277 | - <isEqual prepend="AND" property="searchCnd" compareValue="0"> | |
| 278 | - <![CDATA[ a.BBS_NM LIKE CONCAT ('%', #searchWrd#,'%') ]]> | |
| 279 | - </isEqual> | |
| 280 | - <isEqual prepend="AND" property="searchCnd" compareValue="1"> | |
| 281 | - <![CDATA[ b.CODE_NM LIKE CONCAT ('%', #searchWrd#,'%') ]]> | |
| 282 | - </isEqual> | |
| 283 | - </select> | |
| 284 | - | |
| 285 | - <select id="BBSAttributeManageDAO.selectNotUsedBdMstrList" parameterClass="BoardMasterVO" resultMap="boardMasterList" > | |
| 286 | - <![CDATA[ | |
| 287 | - /* no use */ | |
| 288 | - SELECT | |
| 289 | - a.BBS_ID, a.BBS_TY_CODE, b.CODE_NM as BBS_TY_CODE_NM, | |
| 290 | - a.BBS_ATTRB_CODE, c.CODE_NM as BBS_ATTRB_CODE_NM, a.BBS_NM, | |
| 291 | - a.TMPLAT_ID, a.USE_AT, IF(a.USE_AT = 'N', '미사용', '사용') USE_AT_TXT , | |
| 292 | - DATE_FORMAT(a.FRST_REGIST_PNTTM, '%Y-%m-%d') as FRST_REGIST_PNTTM | |
| 293 | - FROM | |
| 294 | - LETTNBBSMASTER a | |
| 295 | - LEFT OUTER JOIN | |
| 296 | - (SELECT CODE_ID, CODE, CODE_NM FROM | |
| 297 | - LETTCCMMNDETAILCODE WHERE CODE_ID = 'COM004' AND USE_AT='Y') b | |
| 298 | - ON a.BBS_TY_CODE = b.CODE | |
| 299 | - LEFT OUTER JOIN | |
| 300 | - (SELECT CODE_ID, CODE, CODE_NM FROM | |
| 301 | - LETTCCMMNDETAILCODE WHERE CODE_ID = 'COM009' AND USE_AT='Y') c | |
| 302 | - ON a.BBS_ATTRB_CODE = c.CODE | |
| 303 | - WHERE a.USE_AT = 'Y' | |
| 304 | - AND a.BBS_ID NOT IN (SELECT BBS_ID FROM LETTNBBSUSE WHERE USE_AT = 'Y') | |
| 305 | - ]]> | |
| 306 | - <isEqual prepend="AND" property="searchCnd" compareValue="0"> | |
| 307 | - <![CDATA[ a.BBS_NM LIKE CONCAT ('%', #searchWrd#,'%') ]]> | |
| 308 | - </isEqual> | |
| 309 | - <isEqual prepend="AND" property="searchCnd" compareValue="1"> | |
| 310 | - <![CDATA[ b.CODE_NM LIKE CONCAT ('%', #searchWrd#,'%') ]]> | |
| 311 | - </isEqual> | |
| 312 | - <![CDATA[ | |
| 313 | - ORDER BY a.FRST_REGIST_PNTTM DESC | |
| 314 | - LIMIT #recordCountPerPage# OFFSET #firstIndex# | |
| 315 | - ]]> | |
| 316 | - </select> | |
| 317 | - | |
| 318 | - <select id="BBSAttributeManageDAO.selectNotUsedBdMstrListCnt" parameterClass="BoardMasterVO" resultClass="java.lang.Integer" > | |
| 319 | - <![CDATA[ | |
| 320 | - /* no use */ | |
| 321 | - SELECT | |
| 322 | - COUNT(a.BBS_ID) | |
| 323 | - FROM | |
| 324 | - LETTNBBSMASTER a | |
| 325 | - LEFT OUTER JOIN | |
| 326 | - (SELECT CODE_ID, CODE, CODE_NM FROM | |
| 327 | - LETTCCMMNDETAILCODE WHERE CODE_ID = 'COM004' AND USE_AT='Y') b | |
| 328 | - ON a.BBS_TY_CODE = b.CODE | |
| 329 | - LEFT OUTER JOIN | |
| 330 | - (SELECT CODE_ID, CODE, CODE_NM FROM | |
| 331 | - LETTCCMMNDETAILCODE WHERE CODE_ID = 'COM009' AND USE_AT='Y') c | |
| 332 | - ON a.BBS_ATTRB_CODE = c.CODE | |
| 333 | - WHERE a.USE_AT = 'Y' | |
| 334 | - AND a.BBS_ID NOT IN (SELECT BBS_ID FROM LETTNBBSUSE WHERE USE_AT = 'Y') | |
| 335 | - ]]> | |
| 336 | - <isEqual prepend="AND" property="searchCnd" compareValue="0"> | |
| 337 | - <![CDATA[ a.BBS_NM LIKE CONCAT ('%', #searchWrd#,'%') ]]> | |
| 338 | - </isEqual> | |
| 339 | - <isEqual prepend="AND" property="searchCnd" compareValue="1"> | |
| 340 | - <![CDATA[ b.CODE_NM LIKE CONCAT ('%', #searchWrd#,'%') ]]> | |
| 341 | - </isEqual> | |
| 342 | - </select> | |
| 343 | - | |
| 344 | - <insert id="BBSAttributeManageDAO.insertBBSMasterInf" parameterClass="BoardMaster" > | |
| 345 | - | |
| 346 | - INSERT INTO LETTNBBSMASTER | |
| 347 | - (BBS_ID, BBS_TY_CODE, BBS_ATTRB_CODE, BBS_NM, BBS_INTRCN, | |
| 348 | - REPLY_POSBL_AT, FILE_ATCH_POSBL_AT, ATCH_POSBL_FILE_NUMBER, | |
| 349 | - ATCH_POSBL_FILE_SIZE, TMPLAT_ID, USE_AT, | |
| 350 | - FRST_REGISTER_ID, FRST_REGIST_PNTTM, BBS_DC, | |
| 351 | - | |
| 352 | - LIST_NUM, PAGE_NUM, TITLE_NUM, | |
| 353 | - ADD_YN, NOTICE_YN, PASSWORD_YN, OPEN_YN, | |
| 354 | - REGIDAY_YN, REGIER_YN, IP_YN, MANAGE_AUTH, | |
| 355 | - NOTICE_AUTH, LIST_AUTH, VIEW_AUTH, WRITE_AUTH, | |
| 356 | - REPLY_AUTH, ADD_AUTH, FILEATCH_AUTH, DELETE_AUTH , | |
| 357 | - <isEqual property="bbsTyCode" compareValue="BBST07"> | |
| 358 | - MENU_NO, | |
| 359 | - </isEqual> | |
| 360 | - VIEWS_YN,SE_CMMN_CD_ID | |
| 361 | - ) | |
| 362 | - VALUES | |
| 363 | - ( #bbsId#, #bbsTyCode#, #bbsAttrbCode#, #bbsNm#, #bbsIntrcn#, | |
| 364 | - #replyPosblAt#, #fileAtchPosblAt#, #posblAtchFileNumber#, | |
| 365 | - #posblAtchFileSize#, #tmplatId#, #useAt#, #frstRegisterId#, SYSDATE(), #bbsDc#, | |
| 366 | - | |
| 367 | - #listNum#, #pageNum#, #titleNum#, | |
| 368 | - #addYn#, #noticeYn#, #passwordYn#, #openYn#, | |
| 369 | - #regidayYn#, #regierYn#, #ipYn#, #manageAuth#, | |
| 370 | - #noticeAuth#, #listAuth#, #viewAuth#, #writeAuth#, | |
| 371 | - #replyAuth#, #addAuth#, #fileatchAuth#, #deleteAuth# , | |
| 372 | - <isEqual property="bbsTyCode" compareValue="BBST07"> | |
| 373 | - '9620000', /**사전정보공표 */ | |
| 374 | - </isEqual> | |
| 375 | - #viewsYn#,#seCmmnCdId# | |
| 376 | - ) | |
| 377 | - </insert> | |
| 378 | - | |
| 379 | - <select id="BBSAttributeManageDAO.selectBBSMasterInf" parameterClass="BoardMaster" resultMap="boardMasterDetail" > | |
| 380 | - | |
| 381 | - <![CDATA[ | |
| 382 | - SELECT | |
| 383 | - a.BBS_ID, a.BBS_TY_CODE, b.CODE_NM as BBS_TY_CODE_NM, a.BBS_INTRCN, | |
| 384 | - a.BBS_ATTRB_CODE, c.CODE_NM as BBS_ATTRB_CODE_NM, a.BBS_NM, | |
| 385 | - a.TMPLAT_ID, d.CODE_NM as TMPLAT_NM, d.CODE_DC as TMPLAT_COURS, a.FILE_ATCH_POSBL_AT, a.ATCH_POSBL_FILE_NUMBER, | |
| 386 | - a.ATCH_POSBL_FILE_SIZE, a.REPLY_POSBL_AT, a.FRST_REGISTER_ID, e.USER_NM as FRST_REGISTER_NM, | |
| 387 | - a.USE_AT, DATE_FORMAT(a.FRST_REGIST_PNTTM, '%Y-%m-%d') as FRST_REGIST_PNTTM, | |
| 388 | - '' as AUTH_FLAG, /* 게시판사용 테이블 사용안함 */ | |
| 389 | - a.LIST_NUM , | |
| 390 | - a.PAGE_NUM, | |
| 391 | - a.TITLE_NUM, | |
| 392 | - a.REPLY_YN, | |
| 393 | - a.ADD_YN, | |
| 394 | - a.NOTICE_YN, | |
| 395 | - a.PASSWORD_YN, | |
| 396 | - a.OPEN_YN, | |
| 397 | - a.REGIDAY_YN, | |
| 398 | - a.REGIER_YN, | |
| 399 | - a.IP_YN, | |
| 400 | - a.MANAGE_AUTH, | |
| 401 | - a.NOTICE_AUTH, | |
| 402 | - a.LIST_AUTH, | |
| 403 | - a.VIEW_AUTH, | |
| 404 | - a.WRITE_AUTH, | |
| 405 | - a.REPLY_AUTH, | |
| 406 | - a.ADD_AUTH, | |
| 407 | - a.FILEATCH_AUTH, | |
| 408 | - a.DELETE_AUTH , | |
| 409 | - a.VIEWS_YN, | |
| 410 | - a.BBS_DC, | |
| 411 | - REPLACE(GETMENUCOURS(h.MENU_NO), '|', ' > ') as MENU_COURS, | |
| 412 | - get1DepthMenuNo(h.MENU_NO) as FIRST_DEPT_MENU_NO, | |
| 413 | - a.THUMB_ATCH_FILE_YN, | |
| 414 | - a.SE_CMMN_CD_ID, | |
| 415 | - a.KOGL_CN_YN, | |
| 416 | - a.LINK_URL_YN, | |
| 417 | - a.NTCE_DATE_YN, | |
| 418 | - a.WRITE_YN, | |
| 419 | - h.MENU_NM, | |
| 420 | - h.MENU_NO | |
| 421 | - FROM | |
| 422 | - LETTNBBSMASTER a | |
| 423 | - LEFT OUTER JOIN | |
| 424 | - (SELECT CODE_ID, CODE, CODE_NM FROM LETTCCMMNDETAILCODE WHERE CODE_ID = 'COM004' AND USE_AT='Y') b | |
| 425 | - ON a.BBS_TY_CODE = b.CODE | |
| 426 | - LEFT OUTER JOIN | |
| 427 | - (SELECT CODE_ID, CODE, CODE_NM FROM LETTCCMMNDETAILCODE WHERE CODE_ID = 'COM009' AND USE_AT='Y') c | |
| 428 | - ON a.BBS_ATTRB_CODE = c.CODE | |
| 429 | - LEFT OUTER JOIN | |
| 430 | - (SELECT CODE_ID, CODE, CODE_NM, CODE_DC FROM LETTCCMMNDETAILCODE WHERE CODE_ID = 'COM005' AND USE_AT='Y') d | |
| 431 | - ON a.TMPLAT_ID = d.CODE | |
| 432 | - LEFT OUTER JOIN COMVNUSERMASTER e | |
| 433 | - ON a.FRST_REGISTER_ID = e.ESNTL_ID | |
| 434 | - LEFT OUTER JOIN LETTNPROGRMLIST f | |
| 435 | - ON a.MENU_NO = f.PROGRM_FILE_NM | |
| 436 | - LEFT OUTER JOIN LETTNMENUINFO h | |
| 437 | - ON f.PROGRM_FILE_NM = h.PROGRM_FILE_NM | |
| 438 | - | |
| 439 | - WHERE a.BBS_ID = #bbsId# | |
| 440 | - ]]> | |
| 441 | - </select> | |
| 442 | - | |
| 443 | - | |
| 444 | - <update id="BBSAttributeManageDAO.updateBBSMasterInf" parameterClass="BoardMaster"> | |
| 445 | - UPDATE LETTNBBSMASTER SET | |
| 446 | - BBS_NM = #bbsNm#, | |
| 447 | - BBS_INTRCN = #bbsIntrcn#, | |
| 448 | - BBS_TY_CODE = #bbsTyCode#, | |
| 449 | - FILE_ATCH_POSBL_AT = #fileAtchPosblAt#, | |
| 450 | - ATCH_POSBL_FILE_NUMBER = #posblAtchFileNumber#, | |
| 451 | - ATCH_POSBL_FILE_SIZE = #posblAtchFileSize#, | |
| 452 | - TMPLAT_ID = #tmplatId#, | |
| 453 | - LAST_UPDUSR_ID = #lastUpdusrId#, | |
| 454 | - LAST_UPDT_PNTTM = SYSDATE(), | |
| 455 | - REPLY_POSBL_AT = #replyPosblAt#, | |
| 456 | - USE_AT = #useAt# , | |
| 457 | - LIST_NUM = #listNum#, | |
| 458 | - PAGE_NUM = #pageNum#, | |
| 459 | - TITLE_NUM = #titleNum#, | |
| 460 | - ADD_YN = #addYn#, | |
| 461 | - NOTICE_YN = #noticeYn#, | |
| 462 | - PASSWORD_YN = #passwordYn#, | |
| 463 | - OPEN_YN = #openYn#, | |
| 464 | - REGIDAY_YN = #regidayYn#, | |
| 465 | - REGIER_YN = #regierYn#, | |
| 466 | - IP_YN = #ipYn#, | |
| 467 | - MANAGE_AUTH = #manageAuth#, | |
| 468 | - NOTICE_AUTH = #noticeAuth#, | |
| 469 | - LIST_AUTH = #listAuth#, | |
| 470 | - VIEW_AUTH = #viewAuth#, | |
| 471 | - WRITE_AUTH = #writeAuth#, | |
| 472 | - REPLY_AUTH = #replyAuth#, | |
| 473 | - ADD_AUTH = #addAuth#, | |
| 474 | - FILEATCH_AUTH = #fileatchAuth#, | |
| 475 | - DELETE_AUTH = #deleteAuth#, | |
| 476 | - VIEWS_YN = #viewsYn#, | |
| 477 | - <isNotEmpty property="writeYn"> | |
| 478 | - WRITE_YN = #writeYn# , | |
| 479 | - </isNotEmpty> | |
| 480 | - <isNotEmpty property="thumbAtchFileYn"> | |
| 481 | - THUMB_ATCH_FILE_YN = #thumbAtchFileYn# , | |
| 482 | - </isNotEmpty> | |
| 483 | - <isNotEmpty property="seCmmnCdId"> | |
| 484 | - SE_CMMN_CD_ID = #seCmmnCdId#, | |
| 485 | - </isNotEmpty> | |
| 486 | - <isNotEmpty property="koglCnYn"> | |
| 487 | - KOGL_CN_YN = #koglCnYn#, | |
| 488 | - </isNotEmpty> | |
| 489 | - <isNotEmpty property="linkUrlYn"> | |
| 490 | - LINK_URL_YN = #linkUrlYn#, | |
| 491 | - </isNotEmpty> | |
| 492 | - <isNotEmpty property="ntceDateYn"> | |
| 493 | - NTCE_DATE_YN = #ntceDateYn#, | |
| 494 | - </isNotEmpty> | |
| 495 | - <isEqual property="bbsTyCode" compareValue="BBST07"> | |
| 496 | - MENU_NO = '9620000', /**사전정보공표 */ | |
| 497 | - </isEqual> | |
| 498 | - BBS_DC = #bbsDc# | |
| 499 | - WHERE BBS_ID = #bbsId# | |
| 500 | - </update> | |
| 501 | - | |
| 502 | - <select id="BBSAttributeManageDAO.selectBBSMngIdList" parameterClass="BoardMaster" resultClass="egovMap" > | |
| 503 | - <![CDATA[ | |
| 504 | - SELECT a.MNG_ID, | |
| 505 | - a.EMPLYR_ID, | |
| 506 | - b.EMAIL_ADRES , | |
| 507 | - b.ESNTL_ID | |
| 508 | - FROM LETTNBBSMNG a | |
| 509 | - INNER JOIN LETTNEMPLYRINFO b | |
| 510 | - ON a.EMPLYR_ID = b.EMPLYR_ID | |
| 511 | - WHERE a.BBS_ID = #bbsId# | |
| 512 | - ORDER BY a.EMPLYR_ID | |
| 513 | - ]]> | |
| 514 | - </select> | |
| 515 | - | |
| 516 | - <insert id="BBSAttributeManageDAO.insertBBSMngInf" parameterClass="BoardMaster"> | |
| 517 | - <![CDATA[ | |
| 518 | - INSERT INTO LETTNBBSMNG | |
| 519 | - (MNG_ID, BBS_ID, EMPLYR_ID) | |
| 520 | - VALUES | |
| 521 | - (#mngId#, #bbsId#, #bbsMngId#) | |
| 522 | - ]]> | |
| 523 | - </insert> | |
| 524 | - | |
| 525 | - <select id="BBSAttributeManageDAO.selectBBSMaxMngId" resultClass="java.lang.Integer"> | |
| 526 | - <![CDATA[ | |
| 527 | - SELECT IFNULL(MAX(MNG_ID), 0) + 1 FROM LETTNBBSMNG | |
| 528 | - ]]> | |
| 529 | - </select> | |
| 530 | - | |
| 531 | - <select id="BBSAttributeManageDAO.selectBBSMngInfCnt" parameterClass="BoardMaster" resultClass="java.lang.Integer" > | |
| 532 | - <![CDATA[ | |
| 533 | - SELECT COUNT(1) | |
| 534 | - FROM LETTNBBSMNG | |
| 535 | - WHERE BBS_ID = #bbsId# | |
| 536 | - AND EMPLYR_ID = #bbsMngId# | |
| 537 | - ]]> | |
| 538 | - </select> | |
| 539 | - | |
| 540 | - <delete id="BBSAttributeManageDAO.deleteBBSMngInf" parameterClass="BoardMaster"> | |
| 541 | - <![CDATA[ | |
| 542 | - DELETE FROM LETTNBBSMNG | |
| 543 | - WHERE MNG_ID = #mngId# | |
| 544 | - ]]> | |
| 545 | - </delete> | |
| 546 | - | |
| 547 | - <select id="BBSAttributeManageDAO.selectBBSIdList" parameterClass="ComDefaultVO" resultClass="egovMap" > | |
| 548 | - SELECT BBS_ID | |
| 549 | - ,BBS_NM , IF(B.MENU_NM='root' , '', B.MENU_NM) AS MENU_NM | |
| 550 | - FROM LETTNBBSMASTER A LEFT OUTER JOIN LETTNMENUINFO B ON A.MENU_NO = B.MENU_NO | |
| 551 | - WHERE USE_AT = 'Y' | |
| 552 | - AND BBS_NM LIKE CONCAT('%', #searchKeyword#, '%') | |
| 553 | - ORDER BY BBS_NM | |
| 554 | - LIMIT #recordCountPerPage# OFFSET #firstIndex# | |
| 555 | - </select> | |
| 556 | - | |
| 557 | - <select id="BBSAttributeManageDAO.selectBBSIdListCnt" parameterClass="ComDefaultVO" resultClass="java.lang.Integer" > | |
| 558 | - SELECT COUNT(1) | |
| 559 | - FROM LETTNBBSMASTER A | |
| 560 | - WHERE USE_AT = 'Y' | |
| 561 | - AND BBS_NM LIKE CONCAT('%', #searchKeyword#, '%') | |
| 562 | - <isNotEmpty property="siteId"> | |
| 563 | - AND SITE_ID = #siteId# | |
| 564 | - </isNotEmpty> | |
| 565 | - </select> | |
| 566 | - | |
| 567 | - <insert id="BBSAttributeManageDAO.insupNoticeBbsid" parameterClass="BoardMaster"> | |
| 568 | - <![CDATA[ | |
| 569 | - INSERT INTO SITE_MAIN_BBS (SITE_ID, NOTICE_BBSID) VALUES (#siteId#, #noticeBbsid#) | |
| 570 | - ON DUPLICATE KEY UPDATE SITE_ID=#siteId#, NOTICE_BBSID= #noticeBbsid# | |
| 571 | - | |
| 572 | - ]]> | |
| 573 | - </insert> | |
| 574 | - | |
| 575 | - <insert id="BBSAttributeManageDAO.insupQnaBbsid" parameterClass="BoardMaster"> | |
| 576 | - <![CDATA[ | |
| 577 | - INSERT INTO SITE_MAIN_BBS (SITE_ID, QNA_BBSID) VALUES (#siteId#, #qnaBbsid#) | |
| 578 | - ON DUPLICATE KEY UPDATE SITE_ID=#siteId#, QNA_BBSID= #qnaBbsid# | |
| 579 | - ]]> | |
| 580 | - </insert> | |
| 581 | - | |
| 582 | - <insert id="BBSAttributeManageDAO.insupNewsBbsid" parameterClass="BoardMaster"> | |
| 583 | - <![CDATA[ | |
| 584 | - INSERT INTO SITE_MAIN_BBS (SITE_ID, NEWS_BBSID) VALUES (#siteId#, #newsBbsid#) | |
| 585 | - ON DUPLICATE KEY UPDATE SITE_ID=#siteId#, NEWS_BBSID= #newsBbsid# | |
| 586 | - ]]> | |
| 587 | - </insert> | |
| 588 | - | |
| 589 | - <insert id="BBSAttributeManageDAO.insupLibraryBbsid" parameterClass="BoardMaster"> | |
| 590 | - <![CDATA[ | |
| 591 | - INSERT INTO SITE_MAIN_BBS (SITE_ID, LIBRARY_BBSID) VALUES (#siteId#, #libraryBbsid#) | |
| 592 | - ON DUPLICATE KEY UPDATE SITE_ID=#siteId#, LIBRARY_BBSID= #libraryBbsid# | |
| 593 | - ]]> | |
| 594 | - </insert> | |
| 595 | - | |
| 596 | - <select id="BBSAttributeManageDAO.getSiteMainNbsVO" parameterClass="BoardMasterVO" resultClass="BoardMasterVO" > | |
| 597 | - SELECT NOTICE_BBSID as noticeBbsid , | |
| 598 | - QNA_BBSID as qnaBbsid, | |
| 599 | - NEWS_BBSID as newsBbsid, | |
| 600 | - LIBRARY_BBSID as libraryBbsid | |
| 601 | - FROM SITE_MAIN_BBS | |
| 602 | - WHERE 1=1 | |
| 603 | - </select> | |
| 604 | - | |
| 605 | - <select id="BBSAttributeManageDAO.selectMenuBbs" parameterClass="BoardMasterVO" resultClass="BoardMasterVO" > | |
| 606 | - <![CDATA[ | |
| 607 | - SELECT | |
| 608 | - BBS_ID AS bbsId, | |
| 609 | - BBS_TY_CODE AS bbsTyCode , | |
| 610 | - BBS_ATTRB_CODE AS bbsAttrbCode , | |
| 611 | - BBS_NM AS bbsNm , | |
| 612 | - MENU_NO AS menuNo, | |
| 613 | - BBS_SORT AS bbsSort | |
| 614 | - FROM | |
| 615 | - LETTNBBSMASTER | |
| 616 | - WHERE MENU_NO = #menuNo# | |
| 617 | - ]]> | |
| 618 | - </select> | |
| 619 | - | |
| 620 | - <update id="BBSAttributeManageDAO.deleteMenuBbs" parameterClass="BoardMasterVO"> | |
| 621 | - <![CDATA[ | |
| 622 | - UPDATE LETTNBBSMASTER SET | |
| 623 | - MENU_NO = '', | |
| 624 | - BBS_SORT = 0 | |
| 625 | - WHERE MENU_NO = #menuNo# | |
| 626 | - ]]> | |
| 627 | - </update> | |
| 628 | - | |
| 629 | - <update id="BBSAttributeManageDAO.updateMenuBbs" parameterClass="BoardMasterVO"> | |
| 630 | - UPDATE LETTNBBSMASTER SET | |
| 631 | - MENU_NO = #menuNo#, | |
| 632 | - BBS_SORT = #bbsSort# | |
| 633 | - WHERE BBS_ID = #bbsId# | |
| 634 | - </update> | |
| 635 | - | |
| 636 | - | |
| 637 | - <select id="BBSAttributeManageDAO.selectBBSMenuByUrl" parameterClass="BoardMasterVO" resultClass="BoardMasterVO" > | |
| 638 | - SELECT A.BBS_ID AS bbsId | |
| 639 | - , A.BBS_NM AS bbsNm | |
| 640 | - , A.BBS_SORT AS bbsSort | |
| 641 | - , C.MENU_NM AS menuNm | |
| 642 | - , C.MENU_NO AS menuNo | |
| 643 | - , A.VIEWS_YN AS viewsYn | |
| 644 | - FROM LETTNBBSMASTER A INNER JOIN LETTNPROGRMLIST B ON A.MENU_NO = B.PROGRM_FILE_NM | |
| 645 | - AND B.URL = #url# | |
| 646 | - AND A.USE_AT = 'Y' | |
| 647 | - LEFT OUTER JOIN LETTNMENUINFO C ON B.PROGRM_FILE_NM = C.PROGRM_FILE_NM | |
| 648 | - ORDER BY A.BBS_SORT | |
| 649 | - </select> | |
| 650 | - | |
| 651 | - <update id="BBSAttributeManageDAO.deleteMenuNo" parameterClass="BoardMasterVO"> | |
| 652 | - UPDATE LETTNBBSMASTER SET | |
| 653 | - MENU_NO = null, | |
| 654 | - BBS_SORT = 0 | |
| 655 | - WHERE MENU_NO = #menuNo# | |
| 656 | - </update> | |
| 657 | - | |
| 658 | - <select id="BBSAttributeManageDAO.selectBbsIdByNttId" parameterClass="boardVO" resultClass="BoardMasterVO" > | |
| 659 | - SELECT BBS_ID AS bbsId , | |
| 660 | - NTT_ID AS nttId FROM LETTNBBS A | |
| 661 | - WHERE A.NTT_ID = #nttId# | |
| 662 | - </select> | |
| 663 | - | |
| 664 | - <select id="BBSAttributeManageDAO.selectBbsAdmin" parameterClass="boardVO" resultClass="boardVO" > | |
| 665 | - SELECT BBS_ID AS bbsId | |
| 666 | - ,BBS_NM AS bbsNm | |
| 667 | - ,BBS_SORT AS bbsSort | |
| 668 | - FROM LETTNBBSMASTER | |
| 669 | - WHERE BBS_ID = 'BBSMSTR_000000000632' ; | |
| 670 | - </select> | |
| 671 | - | |
| 672 | -</sqlMap> |
--- target/classes/egovframework/sqlmap/let/cop/bbs/EgovBoard_SQL_Mysql.xml
... | ... | @@ -1,2251 +0,0 @@ |
| 1 | -<?xml version="1.0" encoding="UTF-8"?> | |
| 2 | -<!DOCTYPE sqlMap PUBLIC "-//iBATIS.com//DTD SQL Map 2.0//EN" "http://www.ibatis.com/dtd/sql-map-config-2.dtd"> | |
| 3 | - | |
| 4 | -<sqlMap namespace="Board"> | |
| 5 | - | |
| 6 | - <typeAlias alias="egovMap" type="egovframework.rte.psl.dataaccess.util.EgovMap"/> | |
| 7 | - <typeAlias alias="Board" type="itn.let.cop.bbs.service.Board"/> | |
| 8 | - <typeAlias alias="BoardVO" type="itn.let.cop.bbs.service.BoardVO"/> | |
| 9 | - <typeAlias alias="BoardChgHst" type="itn.let.cop.bbs.service.BoardChgHst"/> | |
| 10 | - <typeAlias alias="searchTotalVO" type="itn.let.cop.bbs.service.SearchTotalVO"/> | |
| 11 | - <typeAlias alias="BoardMaster" type="itn.let.cop.bbs.service.BoardMaster"/> | |
| 12 | - <typeAlias alias="BoardMasterVO" type="itn.let.cop.bbs.service.BoardMasterVO"/> | |
| 13 | - <typeAlias alias="MberManageVO" type="itn.let.uss.umt.service.MberManageVO"/> | |
| 14 | - | |
| 15 | - | |
| 16 | - <resultMap id="boardChgHstList" class="itn.let.cop.bbs.service.BoardChgHst"> | |
| 17 | - <result property="nttId" column="NTT_ID" /> | |
| 18 | - <result property="bbsId" column="BBS_ID" /> | |
| 19 | - <result property="bbsNm" column="BBS_NM" /> | |
| 20 | - <result property="histId" column="HIST_ID" /> | |
| 21 | - <result property="histSe" column="HIST_SE" /> | |
| 22 | - <result property="nttSj" column="NTT_SJ" /> | |
| 23 | - <result property="nttCn" column="NTT_CN" /> | |
| 24 | - <result property="frstRegisterNm" column="FRST_REGISTER_NM" /> | |
| 25 | - <result property="frstRegistPnttm" column="FRST_REGIST_PNTTM" /> | |
| 26 | - <result property="frstRegisterId" column="FRST_REGISTER_ID" /> | |
| 27 | - <result property="ntcrIp" column="NTCR_IP" /> | |
| 28 | - </resultMap> | |
| 29 | - | |
| 30 | - <resultMap id="boardList" class="itn.let.cop.bbs.service.BoardVO"> | |
| 31 | - <result property="bbsId" column="BBS_ID" columnIndex="1"/> | |
| 32 | - <result property="nttId" column="NTT_ID" columnIndex="2"/> | |
| 33 | - <result property="nttSj" column="NTT_SJ" columnIndex="3"/> | |
| 34 | - <result property="frstRegisterId" column="FRST_REGISTER_ID" columnIndex="4"/> | |
| 35 | - <result property="frstRegisterNm" column="FRST_REGISTER_NM" columnIndex="5"/> | |
| 36 | - <result property="frstRegisterPnttm" column="FRST_REGIST_PNTTM" columnIndex="6"/> | |
| 37 | - <result property="inqireCo" column="RDCNT" columnIndex="7"/> | |
| 38 | - <result property="parnts" column="PARNTSCTT_NO" columnIndex="8"/> | |
| 39 | - <result property="replyAt" column="ANSWER_AT" columnIndex="9"/> | |
| 40 | - <result property="replyLc" column="ANSWER_LC" columnIndex="10"/> | |
| 41 | - <result property="useAt" column="USE_AT" columnIndex="11"/> | |
| 42 | - <result property="atchFileId" column="ATCH_FILE_ID" columnIndex="12"/> | |
| 43 | - <result property="ntceBgnde" column="NTCE_BGNDE" columnIndex="13"/> | |
| 44 | - <result property="ntceEndde" column="NTCE_ENDDE" columnIndex="14"/> | |
| 45 | - <result property="atchFileCnt" column="ATCH_FILE_CNT" columnIndex="15" /> | |
| 46 | - <result property="fileSn" column="FILE_SN" /> | |
| 47 | - <result property="secretAt" column="SECRET_AT" /> | |
| 48 | - <result property="noticeAt" column="NOTICE_AT" /> | |
| 49 | - <result property="newFlag" column="NEW_FLAG" /> | |
| 50 | - <result property="nttCn" column="NTT_CN" /> | |
| 51 | - <result property="reportTyCd" column="REPORT_TY_CD" /> | |
| 52 | - <result property="reportTyNm" column="REPORT_TY_NM" /> | |
| 53 | - <result property="answerNttId" column="ANSWER_NTT_ID" /> | |
| 54 | - <result property="answerCnt" column="ANSWER_CNT" /> | |
| 55 | - <result property="pubPeriod" column="PUB_PERIOD" /> | |
| 56 | - <result property="pubTime" column="PUB_TIME" /> | |
| 57 | - <result property="pubLink" column="PUB_LINK" /> | |
| 58 | - <result property="pubLoc" column="PUB_LOC" /> | |
| 59 | - <result property="seCd" column="SE_CD" /> | |
| 60 | - <result property="seCdTxt" column="SE_CD_TXT" /> | |
| 61 | - | |
| 62 | - </resultMap> | |
| 63 | - | |
| 64 | - <resultMap id="boardList2" class="itn.let.cop.bbs.service.BoardVO"> | |
| 65 | - <result property="bbsId" column="BBS_ID" columnIndex="1"/> | |
| 66 | - <result property="nttId" column="NTT_ID" columnIndex="2"/> | |
| 67 | - <result property="nttSj" column="NTT_SJ" columnIndex="3"/> | |
| 68 | - <result property="frstRegisterId" column="FRST_REGISTER_ID" columnIndex="4"/> | |
| 69 | - <result property="frstRegisterNm" column="FRST_REGISTER_NM" columnIndex="5"/> | |
| 70 | - <result property="frstRegisterPnttm" column="FRST_REGIST_PNTTM" columnIndex="6"/> | |
| 71 | - <result property="inqireCo" column="RDCNT" columnIndex="7"/> | |
| 72 | - <result property="parnts" column="PARNTSCTT_NO" columnIndex="8"/> | |
| 73 | - <result property="replyAt" column="ANSWER_AT" columnIndex="9"/> | |
| 74 | - <result property="replyLc" column="ANSWER_LC" columnIndex="10"/> | |
| 75 | - <result property="useAt" column="USE_AT" columnIndex="11"/> | |
| 76 | - <result property="atchFileId" column="ATCH_FILE_ID" columnIndex="12"/> | |
| 77 | - <result property="ntceBgnde" column="NTCE_BGNDE" columnIndex="13"/> | |
| 78 | - <result property="ntceEndde" column="NTCE_ENDDE" columnIndex="14"/> | |
| 79 | - <result property="atchFileCnt" column="ATCH_FILE_CNT" columnIndex="15" /> | |
| 80 | - <result property="fileSn" column="FILE_SN" /> | |
| 81 | - <result property="secretAt" column="SECRET_AT" /> | |
| 82 | - <result property="noticeAt" column="NOTICE_AT" /> | |
| 83 | - <result property="newFlag" column="NEW_FLAG" /> | |
| 84 | - <result property="nttCn" column="NTT_CN" /> | |
| 85 | - <result property="reportTyCd" column="REPORT_TY_CD" /> | |
| 86 | - <result property="reportTyNm" column="REPORT_TY_NM" /> | |
| 87 | - <result property="answerNttId" column="ANSWER_NTT_ID" /> | |
| 88 | - <result property="answerCnt" column="ANSWER_CNT" /> | |
| 89 | - <result property="pubPeriod" column="PUB_PERIOD" /> | |
| 90 | - <result property="pubTime" column="PUB_TIME" /> | |
| 91 | - <result property="pubLink" column="PUB_LINK" /> | |
| 92 | - <result property="pubLoc" column="PUB_LOC" /> | |
| 93 | - <result property="seCd" column="SE_CD" /> | |
| 94 | - <result property="seCdTxt" column="SE_CD_TXT" /> | |
| 95 | - <result property="bbsNm" column="BBS_NM" /> | |
| 96 | - | |
| 97 | - </resultMap> | |
| 98 | - | |
| 99 | - | |
| 100 | - <resultMap id="boardListRead" class="itn.let.cop.bbs.service.BoardVO"> | |
| 101 | - <result property="bbsId" column="BBS_ID" columnIndex="1"/> | |
| 102 | - <result property="nttId" column="NTT_ID" columnIndex="2"/> | |
| 103 | - <result property="nttSj" column="NTT_SJ" columnIndex="3"/> | |
| 104 | - <result property="frstRegisterId" column="FRST_REGISTER_ID" columnIndex="4"/> | |
| 105 | - <result property="frstRegisterNm" column="FRST_REGISTER_NM" columnIndex="5"/> | |
| 106 | - <result property="frstRegisterPnttm" column="FRST_REGIST_PNTTM" columnIndex="6"/> | |
| 107 | - <result property="inqireCo" column="RDCNT" columnIndex="7"/> | |
| 108 | - <result property="parnts" column="PARNTSCTT_NO" columnIndex="8"/> | |
| 109 | - <result property="replyAt" column="ANSWER_AT" columnIndex="9"/> | |
| 110 | - <result property="replyLc" column="ANSWER_LC" columnIndex="10"/> | |
| 111 | - <result property="useAt" column="USE_AT" columnIndex="11"/> | |
| 112 | - <result property="atchFileId" column="ATCH_FILE_ID" columnIndex="12"/> | |
| 113 | - <result property="ntceBgnde" column="NTCE_BGNDE" columnIndex="13"/> | |
| 114 | - <result property="ntceEndde" column="NTCE_ENDDE" columnIndex="14"/> | |
| 115 | - <result property="atchFileCnt" column="ATCH_FILE_CNT" columnIndex="15" /> | |
| 116 | - <result property="fileSn" column="FILE_SN" /> | |
| 117 | - <result property="secretAt" column="SECRET_AT" /> | |
| 118 | - <result property="noticeAt" column="NOTICE_AT" /> | |
| 119 | - <result property="newFlag" column="NEW_FLAG" /> | |
| 120 | - <result property="nttCn" column="NTT_CN" /> | |
| 121 | - <result property="reportTyCd" column="REPORT_TY_CD" /> | |
| 122 | - <result property="reportTyNm" column="REPORT_TY_NM" /> | |
| 123 | - <result property="answerNttId" column="ANSWER_NTT_ID" /> | |
| 124 | - <result property="answerCnt" column="ANSWER_CNT" /> | |
| 125 | - </resultMap> | |
| 126 | - | |
| 127 | - <resultMap id="boardDetail" class="itn.let.cop.bbs.service.BoardVO"> | |
| 128 | - <result property="bbsId" column="BBS_ID" columnIndex="1"/> | |
| 129 | - <result property="nttId" column="NTT_ID" columnIndex="2"/> | |
| 130 | - <result property="nttSj" column="NTT_SJ" columnIndex="3"/> | |
| 131 | - <result property="ntcrId" column="NTCR_ID" columnIndex="4"/> | |
| 132 | - <result property="ntcrNm" column="NTCR_NM" columnIndex="5"/> | |
| 133 | - <result property="nttNo" column="NTT_NO" columnIndex="6"/> | |
| 134 | - <result property="nttCn" column="NTT_CN" columnIndex="7"/> | |
| 135 | - <result property="password" column="PASSWORD" columnIndex="8"/> | |
| 136 | - <result property="frstRegisterId" column="FRST_REGISTER_ID" columnIndex="9"/> | |
| 137 | - <result property="frstRegisterNm" column="FRST_REGISTER_NM" columnIndex="10"/> | |
| 138 | - <result property="frstRegisterPnttm" column="FRST_REGIST_PNTTM" columnIndex="11"/> | |
| 139 | - <result property="ntceBgnde" column="NTCE_BGNDE" columnIndex="12"/> | |
| 140 | - <result property="ntceEndde" column="NTCE_ENDDE" columnIndex="13"/> | |
| 141 | - <result property="inqireCo" column="RDCNT" columnIndex="14"/> | |
| 142 | - <result property="useAt" column="USE_AT" columnIndex="15"/> | |
| 143 | - <result property="atchFileId" column="ATCH_FILE_ID" columnIndex="16"/> | |
| 144 | - <result property="parnts" column="PARNTSCTT_NO" columnIndex="17"/> | |
| 145 | - <result property="replyAt" column="ANSWER_AT" columnIndex="18"/> | |
| 146 | - <result property="replyLc" column="ANSWER_LC" columnIndex="19"/> | |
| 147 | - <result property="sortOrdr" column="SORT_ORDR" columnIndex="19"/> | |
| 148 | - <result property="bbsTyCode" column="BBS_TY_CODE" columnIndex="20"/> | |
| 149 | - <result property="bbsAttrbCode" column="BBS_ATTRB_CODE" columnIndex="21"/> | |
| 150 | - <result property="replyPosblAt" column="REPLY_POSBL_AT" columnIndex="22"/> | |
| 151 | - <result property="fileAtchPosblAt" column="FILE_ATCH_POSBL_AT" columnIndex="23"/> | |
| 152 | - <result property="posblAtchFileNumber" column="ATCH_POSBL_FILE_NUMBER" columnIndex="24"/> | |
| 153 | - <result property="bbsNm" column="BBS_NM" columnIndex="25"/> | |
| 154 | - <result property="noticeAt" column="NOTICE_AT" columnIndex="26"/> | |
| 155 | - <result property="secretAt" column="SECRET_AT" columnIndex="27"/> | |
| 156 | - <result property="atchFileCnt" column="ATCH_FILE_CNT" /> | |
| 157 | - <result property="offmTelno" column="OFFM_TELNO" /> | |
| 158 | - <result property="ntcrIp" column="NTCR_IP" /> | |
| 159 | - <result property="mblDn" column="MBL_DN" nullValue="" /> | |
| 160 | - <result property="userTyCd" column="USER_TY_CD" /> | |
| 161 | - <result property="userPosition" column="USER_POSITION" /> | |
| 162 | - <result property="userTyNm" column="USER_TY_NM" /> | |
| 163 | - <result property="reportTyCd" column="REPORT_TY_CD" /> | |
| 164 | - <result property="reportTyNm" column="REPORT_TY_NM" /> | |
| 165 | - | |
| 166 | - <result property="thumbAtchFileId" column="THUMB_ATCH_FILE_ID" /> | |
| 167 | - <result property="thumbAtchFileCnt" column="THUMB_ATCH_FILE_CNT" /> | |
| 168 | - <result property="seCd" column="SE_CD" /> | |
| 169 | - <result property="koglCn" column="KOGL_CN" /> | |
| 170 | - <result property="linkUrl" column="LINK_URL" /> | |
| 171 | - | |
| 172 | - <result property="pubPeriod" column="PUB_PERIOD" /> | |
| 173 | - <result property="pubTime" column="PUB_TIME" /> | |
| 174 | - <result property="pubLink" column="PUB_LINK" /> | |
| 175 | - <result property="pubLoc" column="PUB_LOC" /> | |
| 176 | - | |
| 177 | - <result property="seCdTxt" column="SE_CD_TXT" /> | |
| 178 | - <result property="answerCnt" column="ANSWER_CNT" /> | |
| 179 | - <result property="pubLinkTxt" column="PUB_LINK_TXT" /> | |
| 180 | - | |
| 181 | - <result property="niceFailUrl" column="niceFailUrl" /> | |
| 182 | - <result property="niceSuccUrl" column="niceSuccUrl" /> | |
| 183 | - | |
| 184 | - </resultMap> | |
| 185 | - | |
| 186 | - <resultMap id="sortList" class="itn.let.cop.bbs.service.BoardVO"> | |
| 187 | - <result property="bbsId" column="BBS_ID" columnIndex="1"/> | |
| 188 | - <result property="nttId" column="NTT_ID" columnIndex="2"/> | |
| 189 | - <result property="sortOrdr" column="SORT_ORDR" columnIndex="3"/> | |
| 190 | - <result property="parnts" column="PARNTSCTT_NO" columnIndex="4"/> | |
| 191 | - <result property="nttNo" column="NTT_NO" columnIndex="5"/> | |
| 192 | - <result property="replyLc" column="ANSWER_LC" columnIndex="6"/> | |
| 193 | - </resultMap> | |
| 194 | - | |
| 195 | - <resultMap id="guestList" class="itn.let.cop.bbs.service.BoardVO"> | |
| 196 | - <result property="bbsId" column="BBS_ID" columnIndex="1"/> | |
| 197 | - <result property="nttId" column="NTT_ID" columnIndex="2"/> | |
| 198 | - <result property="nttSj" column="NTT_SJ" columnIndex="3"/> | |
| 199 | - <result property="ntcrNm" column="NTCR_NM" columnIndex="4"/> | |
| 200 | - <result property="password" column="PASSWORD" columnIndex="5"/> | |
| 201 | - <result property="frstRegisterPnttm" column="FRST_REGIST_PNTTM" columnIndex="6"/> | |
| 202 | - <result property="nttCn" column="NTT_CN" columnIndex="7"/> | |
| 203 | - <result property="useAt" column="USE_AT" columnIndex="8"/> | |
| 204 | - <result property="frstRegisterNm" column="FRST_REGISTER_NM" columnIndex="9"/> | |
| 205 | - <result property="frstRegisterId" column="FRST_REGISTER_ID" columnIndex="10"/> | |
| 206 | - </resultMap> | |
| 207 | - | |
| 208 | - <select id="BBSManageDAO.selectMaxNttId" resultClass="java.lang.Long"> | |
| 209 | - <![CDATA[ | |
| 210 | - SELECT IFNULL(MAX(NTT_ID),0)+1 AS NTT_ID FROM LETTNBBS | |
| 211 | - ]]> | |
| 212 | - </select> | |
| 213 | - | |
| 214 | - <insert id="BBSManageDAO.insertBoardArticle" parameterClass="Board" > | |
| 215 | - <selectKey resultClass="java.lang.Long" keyProperty="nttNo"> | |
| 216 | - SELECT IFNULL(MAX(SORT_ORDR),0)+1 AS NTT_NO FROM LETTNBBS | |
| 217 | - WHERE BBS_ID = #bbsId# | |
| 218 | - </selectKey> | |
| 219 | - <![CDATA[ | |
| 220 | - INSERT INTO LETTNBBS | |
| 221 | - (NTT_ID, BBS_ID, NTT_SJ, NTT_CN, SORT_ORDR, | |
| 222 | - NTCR_ID, NTCR_NM, PASSWORD, RDCNT, | |
| 223 | - NTCE_BGNDE, NTCE_ENDDE, ANSWER_AT, | |
| 224 | - PARNTSCTT_NO, NTT_NO, ANSWER_LC, ATCH_FILE_ID, | |
| 225 | - FRST_REGISTER_ID, USE_AT, | |
| 226 | - NOTICE_AT, SECRET_AT, NTCR_IP, MBL_DN, USER_TY_CD, USER_POSITION, | |
| 227 | - REPORT_TY_CD, | |
| 228 | - THUMB_ATCH_FILE_ID, SE_CD, KOGL_CN, LINK_URL, | |
| 229 | - PUB_PERIOD, PUB_TIME, PUB_LINK, FRST_REGIST_PNTTM, | |
| 230 | - PUB_LOC | |
| 231 | - ) | |
| 232 | - VALUES | |
| 233 | - ( #nttId#, #bbsId#, #nttSj#, #nttCn#, #nttNo#, | |
| 234 | - #ntcrId#, #ntcrNm#, #password#, #inqireCo#, | |
| 235 | - #ntceBgnde#, #ntceEndde#, #replyAt#, | |
| 236 | - #parnts#, 1, #replyLc#, #atchFileId#, | |
| 237 | - #frstRegisterId#, 'Y', | |
| 238 | - #noticeAt#, #secretAt#, #ntcrIp#, #mblDn#, #userTyCd#, #userPosition#, | |
| 239 | - #reportTyCd#, | |
| 240 | - #thumbAtchFileId#, #seCd#, #koglCn#, #linkUrl#, | |
| 241 | - #pubPeriod#, #pubTime#, #pubLink#, | |
| 242 | - ]]> | |
| 243 | - <isNotEmpty property="frstRegisterPnttm"> | |
| 244 | - STR_TO_DATE(#frstRegisterPnttm#, '%Y%m%d'), | |
| 245 | - </isNotEmpty> | |
| 246 | - <isEmpty property="frstRegisterPnttm"> | |
| 247 | - SYSDATE(), | |
| 248 | - </isEmpty> | |
| 249 | - <![CDATA[ | |
| 250 | - #pubLoc# | |
| 251 | - ) | |
| 252 | - ]]> | |
| 253 | - </insert> | |
| 254 | - | |
| 255 | - <insert id="BBSManageDAO.replyBoardArticle" parameterClass="Board" > | |
| 256 | - <selectKey resultClass="java.lang.Long" keyProperty="nttNo"> | |
| 257 | - SELECT IFNULL(MAX(NTT_NO),0)+1 AS NTT_NO FROM LETTNBBS | |
| 258 | - WHERE BBS_ID = #bbsId# AND SORT_ORDR = #sortOrdr# | |
| 259 | - </selectKey> | |
| 260 | - <![CDATA[ | |
| 261 | - INSERT INTO LETTNBBS | |
| 262 | - (NTT_ID, BBS_ID, NTT_SJ, NTT_CN, SORT_ORDR, | |
| 263 | - NTCR_ID, NTCR_NM, PASSWORD, RDCNT, | |
| 264 | - NTCE_BGNDE, NTCE_ENDDE, ANSWER_AT, NOTICE_AT, | |
| 265 | - PARNTSCTT_NO, NTT_NO, ANSWER_LC, ATCH_FILE_ID, | |
| 266 | - FRST_REGISTER_ID, FRST_REGIST_PNTTM, USE_AT, NTCR_IP, MBL_DN | |
| 267 | - ) | |
| 268 | - VALUES | |
| 269 | - ( #nttId#, #bbsId#, #nttSj#, #nttCn#, #sortOrdr#, | |
| 270 | - #ntcrId#, #ntcrNm#, #password#, #inqireCo#, | |
| 271 | - #ntceBgnde#, #ntceEndde#, #replyAt#, #noticeAt#, | |
| 272 | - #parnts#, 1, #replyLc#, #atchFileId#, | |
| 273 | - #frstRegisterId#, SYSDATE(), 'Y', #ntcrIp#, #mblDn# | |
| 274 | - ) | |
| 275 | - ]]> | |
| 276 | - </insert> | |
| 277 | - | |
| 278 | - <select id="BBSManageDAO.selectBoardArticleList" parameterClass="BoardVO" resultMap="boardListRead" > | |
| 279 | - <![CDATA[ | |
| 280 | - SELECT | |
| 281 | - a.NTT_ID, a.NTT_SJ, SUBSTR(a.NTT_CN, 1, 2000) AS NTT_CN, a.FRST_REGISTER_ID, a.NTCR_NM as FRST_REGISTER_NM, | |
| 282 | - DATE_FORMAT(a.FRST_REGIST_PNTTM, '%Y-%m-%d %T') as FRST_REGIST_PNTTM, | |
| 283 | - a.RDCNT, a.PARNTSCTT_NO, a.ANSWER_AT, a.ANSWER_LC, a.USE_AT, a.ATCH_FILE_ID, | |
| 284 | - a.BBS_ID, a.NTCE_BGNDE, a.NTCE_ENDDE, a.NOTICE_AT, a.SECRET_AT, | |
| 285 | - IFNULL(c.ATCH_FILE_CNT, 0) AS ATCH_FILE_CNT, IFNULL(c.FILE_SN, 0) AS FILE_SN, | |
| 286 | - a.REPORT_TY_CD, d.CODE_NM as REPORT_TY_NM, | |
| 287 | - CASE | |
| 288 | - WHEN DATE(SUBDATE(NOW(), | |
| 289 | - INTERVAL 7 DAY)) < DATE(FRST_REGIST_PNTTM) THEN 'Y' | |
| 290 | - ELSE 'N' | |
| 291 | - END AS NEW_FLAG, | |
| 292 | - 0 as ANSWER_NTT_ID, | |
| 293 | - 0 as ANSWER_CNT, | |
| 294 | - a.NTCR_ID AS ntcrId, | |
| 295 | - a.NTCR_NM AS ntcrNm | |
| 296 | - FROM | |
| 297 | - LETTNBBS a | |
| 298 | - LEFT OUTER JOIN | |
| 299 | - (SELECT a.ATCH_FILE_ID, COUNT(b.FILE_SN) as ATCH_FILE_CNT, MIN(b.FILE_SN) AS FILE_SN | |
| 300 | - FROM LETTNFILE a | |
| 301 | - LEFT OUTER JOIN LETTNFILEDETAIL b | |
| 302 | - ON a.ATCH_FILE_ID = b.ATCH_FILE_ID | |
| 303 | - WHERE a.USE_AT = 'Y' | |
| 304 | - GROUP BY a.ATCH_FILE_ID) c | |
| 305 | - ON a.ATCH_FILE_ID = c.ATCH_FILE_ID | |
| 306 | - LEFT OUTER JOIN | |
| 307 | - (SELECT CODE_ID, CODE, CODE_NM FROM | |
| 308 | - LETTCCMMNDETAILCODE WHERE CODE_ID = 'ITN004' AND USE_AT='Y') d | |
| 309 | - ON a.REPORT_TY_CD = d.CODE | |
| 310 | - WHERE | |
| 311 | - a.BBS_ID = #bbsId# | |
| 312 | - AND | |
| 313 | - a.USE_AT = 'Y' | |
| 314 | - ]]> | |
| 315 | - <isEqual property="noticeAt" compareValue="N"> | |
| 316 | - <![CDATA[ | |
| 317 | - AND ( ( a.NOTICE_AT != 'Y' or a.NOTICE_AT is null) | |
| 318 | - OR ( NTCE_BGNDE is null or NTCE_BGNDE ='') | |
| 319 | - OR ( DATE_FORMAT(now(), '%Y%m%d%H%i') < NTCE_BGNDE OR DATE_FORMAT(now(), '%Y%m%d%H%i') > NTCE_ENDDE ) | |
| 320 | - ) | |
| 321 | - ]]> | |
| 322 | - </isEqual> | |
| 323 | - | |
| 324 | - <isEqual prepend="AND" property="searchCnd" compareValue="0"> | |
| 325 | - <![CDATA[ a.NTT_SJ LIKE CONCAT ('%', #searchWrd#,'%') ]]> | |
| 326 | - </isEqual> | |
| 327 | - <isEqual prepend="AND" property="searchCnd" compareValue="1"> | |
| 328 | - <![CDATA[ a.NTT_CN LIKE CONCAT ('%', #searchWrd#,'%') ]]> | |
| 329 | - </isEqual> | |
| 330 | - <isEqual prepend="AND" property="searchCnd" compareValue="2"> | |
| 331 | - <![CDATA[ a.NTCR_NM LIKE CONCAT ('%', #searchWrd#,'%') ]]> | |
| 332 | - </isEqual> | |
| 333 | - <isNotEmpty prepend="AND" property="mblDn"> | |
| 334 | - <![CDATA[ a.MBL_DN = #mblDn# ]]> | |
| 335 | - </isNotEmpty> | |
| 336 | - <isEqual prepend="AND" property="secretAt" compareValue="N"> /* 메인에 비밀글 안보이게 */ | |
| 337 | - ( a.SECRET_AT IS NULL OR a.SECRET_AT ='N' ) | |
| 338 | - </isEqual> | |
| 339 | - <isEqual prepend="AND" property="atchFileCnt" compareValue="1"> /* 파일이 있는경우만 1 임의의 숫자 */ | |
| 340 | - c.ATCH_FILE_CNT != 0 | |
| 341 | - </isEqual> | |
| 342 | - | |
| 343 | - <isNotEmpty prepend="AND" property="mainPolaNttId"> /* 메인의 폴라스토리 대표이미지 하나만 가져오기 */ | |
| 344 | - a.NTT_ID != #mainPolaNttId# | |
| 345 | - </isNotEmpty> | |
| 346 | - ORDER BY 1=1 | |
| 347 | - <isNotEmpty property="searchSortCnd"> | |
| 348 | - ,$searchSortCnd$ | |
| 349 | - </isNotEmpty> | |
| 350 | - <isNotEmpty property="searchSortOrd"> | |
| 351 | - $searchSortOrd$ | |
| 352 | - </isNotEmpty> | |
| 353 | - , NTT_ID asc /** 댓글로 인해서 무조건 세팅 */ | |
| 354 | - LIMIT #recordCountPerPage# OFFSET #firstIndex# | |
| 355 | - </select> | |
| 356 | - | |
| 357 | - <select id="BBSManageDAO.selectBoardArticleListCnt" parameterClass="BoardVO" resultClass="java.lang.Integer" > | |
| 358 | - <![CDATA[ | |
| 359 | - SELECT | |
| 360 | - COUNT(a.NTT_ID) | |
| 361 | - FROM | |
| 362 | - LETTNBBS a | |
| 363 | - WHERE | |
| 364 | - a.BBS_ID = #bbsId# | |
| 365 | - AND | |
| 366 | - a.USE_AT = 'Y' | |
| 367 | - ]]> | |
| 368 | - <isEqual property="noticeAt" compareValue="N"> | |
| 369 | - <![CDATA[ | |
| 370 | - AND ( ( a.NOTICE_AT != 'Y' or a.NOTICE_AT is null) | |
| 371 | - OR ( NTCE_BGNDE is null or NTCE_BGNDE ='') | |
| 372 | - OR ( DATE_FORMAT(now(), '%Y%m%d%H%i') < NTCE_BGNDE OR DATE_FORMAT(now(), '%Y%m%d%H%i') > NTCE_ENDDE ) | |
| 373 | - ) | |
| 374 | - ]]> | |
| 375 | - </isEqual> | |
| 376 | - | |
| 377 | - <isEqual prepend="AND" property="searchCnd" compareValue="0"> | |
| 378 | - <![CDATA[ a.NTT_SJ LIKE CONCAT ('%', #searchWrd#,'%') ]]> | |
| 379 | - </isEqual> | |
| 380 | - <isEqual prepend="AND" property="searchCnd" compareValue="1"> | |
| 381 | - <![CDATA[ a.NTT_CN LIKE CONCAT ('%', #searchWrd#,'%') ]]> | |
| 382 | - </isEqual> | |
| 383 | - <isEqual prepend="AND" property="searchCnd" compareValue="2"> | |
| 384 | - <![CDATA[ a.NTCR_NM LIKE CONCAT ('%', #searchWrd#,'%') ]]> | |
| 385 | - </isEqual> | |
| 386 | - <isNotEmpty prepend="AND" property="mblDn"> | |
| 387 | - <![CDATA[ a.MBL_DN = #mblDn# ]]> | |
| 388 | - </isNotEmpty> | |
| 389 | - </select> | |
| 390 | - | |
| 391 | - <select id="BBSManageDAO.selectBoardArticleListWeb" parameterClass="BoardVO" resultClass="BoardVO" > | |
| 392 | - <![CDATA[ | |
| 393 | - SELECT A.BBS_ID AS bbsId, | |
| 394 | - A.NTT_ID AS nttId, | |
| 395 | - A.NTT_SJ AS nttSj, | |
| 396 | - A.NTT_CN AS nttCn, | |
| 397 | - A.FRST_REGIST_PNTTM AS frstRegisterPnttm, | |
| 398 | - A.RDCNT AS inqireCo, | |
| 399 | - A.NEW_FLAG AS newFlag, | |
| 400 | - A.NTT_NO AS nttNo, | |
| 401 | - A.ATCH_FILE_CNT AS atchFileCnt, | |
| 402 | - A.ATCH_FILE_ID AS atchFileId, | |
| 403 | - A.FILE_SN AS fileSn, | |
| 404 | - IF(A.NTT_ID = A.ANSWER_PR_ID, A.ANSWER_ID, 0) AS answerNttId, | |
| 405 | - IFNULL(A.ANSWER_CNT,'0') AS answerCnt, | |
| 406 | - A.BBS_NM AS bbsNm, | |
| 407 | - A.FRST_REGISTER_NM AS frstRegisterNm, | |
| 408 | - IF(A.NTT_ID = A.ANSWER_PR_ID, A.ANSWER_ID, 0) AS ANSWER_NTT_ID, | |
| 409 | - A.FRST_REGISTER_ID AS frstRegisterId | |
| 410 | - FROM ( SELECT a.NTT_ID, | |
| 411 | - a.NTT_SJ, | |
| 412 | - SUBSTR(a.NTT_CN, 1, 2000) AS NTT_CN, | |
| 413 | - a.FRST_REGISTER_ID, | |
| 414 | - a.NTCR_NM AS FRST_REGISTER_NM, | |
| 415 | - DATE_FORMAT(a.FRST_REGIST_PNTTM, '%Y-%m-%d') AS FRST_REGIST_PNTTM, | |
| 416 | - a.RDCNT, | |
| 417 | - a.PARNTSCTT_NO, | |
| 418 | - a.ANSWER_AT, | |
| 419 | - a.ANSWER_LC, | |
| 420 | - a.USE_AT, | |
| 421 | - a.ATCH_FILE_ID, | |
| 422 | - a.BBS_ID, | |
| 423 | - a.NTCE_BGNDE, | |
| 424 | - a.NTCE_ENDDE, | |
| 425 | - a.NOTICE_AT, | |
| 426 | - a.SECRET_AT, | |
| 427 | - IFNULL(c.ATCH_FILE_CNT, 0) AS ATCH_FILE_CNT, | |
| 428 | - IFNULL(c.FILE_SN, 0) AS FILE_SN, | |
| 429 | - a.REPORT_TY_CD, | |
| 430 | - d.CODE_NM AS REPORT_TY_NM, | |
| 431 | - CASE | |
| 432 | - WHEN DATE(SUBDATE(NOW(), INTERVAL 7 DAY)) < DATE(FRST_REGIST_PNTTM) | |
| 433 | - THEN 'Y' | |
| 434 | - ELSE 'N' | |
| 435 | - END AS NEW_FLAG, | |
| 436 | - LEAD(a.NTT_ID) OVER(ORDER BY a.SORT_ORDR DESC, a.NTT_NO ASC) AS ANSWER_ID, | |
| 437 | - LEAD(a.PARNTSCTT_NO) OVER(ORDER BY a.SORT_ORDR DESC, a.NTT_NO ASC) AS ANSWER_PR_ID, | |
| 438 | - a.SORT_ORDR, | |
| 439 | - a.NTT_NO, | |
| 440 | - PUB_PERIOD, | |
| 441 | - PUB_TIME, | |
| 442 | - PUB_LINK, | |
| 443 | - PUB_LOC, | |
| 444 | - f.CODE SE_CD, | |
| 445 | - f.CODE_NM AS SE_CD_TXT , | |
| 446 | - LAST_UPDT_PNTTM, | |
| 447 | - BBS_NM, | |
| 448 | - p.ANSWER_CNT AS ANSWER_CNT | |
| 449 | - FROM LETTNBBS a | |
| 450 | - LEFT OUTER JOIN | |
| 451 | - (SELECT a.ATCH_FILE_ID, | |
| 452 | - COUNT(b.FILE_SN) AS ATCH_FILE_CNT, | |
| 453 | - MIN(b.FILE_SN) AS FILE_SN | |
| 454 | - FROM LETTNFILE a | |
| 455 | - LEFT OUTER JOIN LETTNFILEDETAIL b | |
| 456 | - ON a.ATCH_FILE_ID = b.ATCH_FILE_ID | |
| 457 | - WHERE a.USE_AT = 'Y' | |
| 458 | - GROUP BY a.ATCH_FILE_ID | |
| 459 | - ) | |
| 460 | - c | |
| 461 | - ON a.ATCH_FILE_ID = c.ATCH_FILE_ID | |
| 462 | - LEFT OUTER JOIN | |
| 463 | - (SELECT CODE_ID, | |
| 464 | - CODE, | |
| 465 | - CODE_NM | |
| 466 | - FROM LETTCCMMNDETAILCODE | |
| 467 | - WHERE CODE_ID = 'ITN004' | |
| 468 | - AND USE_AT ='Y' | |
| 469 | - ) | |
| 470 | - d | |
| 471 | - ON a.REPORT_TY_CD = d.CODE | |
| 472 | - LEFT OUTER JOIN | |
| 473 | - (SELECT NTT_ID, | |
| 474 | - COUNT(ANSWER_NO) AS ANSWER_CNT | |
| 475 | - FROM LETTNCOMMENT | |
| 476 | - WHERE BBS_ID = #bbsId# | |
| 477 | - AND USE_AT = 'Y' | |
| 478 | - GROUP BY BBS_ID, | |
| 479 | - NTT_ID | |
| 480 | - ) | |
| 481 | - e | |
| 482 | - ON a.NTT_ID = e.NTT_ID | |
| 483 | - LEFT JOIN | |
| 484 | - ( SELECT CODE_NM , | |
| 485 | - CODE | |
| 486 | - FROM LETTCCMMNDETAILCODE | |
| 487 | - WHERE USE_AT = 'Y' | |
| 488 | - AND CODE_ID = 'ITN015' | |
| 489 | - ) | |
| 490 | - f | |
| 491 | - ON a.SE_CD =f.CODE | |
| 492 | - LEFT OUTER JOIN | |
| 493 | - (SELECT BBS_ID, | |
| 494 | - BBS_NM | |
| 495 | - FROM lettnbbsmaster | |
| 496 | - GROUP BY BBS_ID, | |
| 497 | - BBS_NM | |
| 498 | - ) | |
| 499 | - g | |
| 500 | - ON a.BBS_ID = g.BBS_ID | |
| 501 | - LEFT OUTER JOIN | |
| 502 | - (SELECT BBS_ID, | |
| 503 | - NTT_ID, | |
| 504 | - COUNT(ANSWER_NO) AS ANSWER_CNT | |
| 505 | - FROM lettncomment | |
| 506 | - GROUP BY BBS_ID, | |
| 507 | - NTT_ID | |
| 508 | - ) | |
| 509 | - p | |
| 510 | - ON a.BBS_ID = p.BBS_ID | |
| 511 | - AND a.NTT_ID = p.NTT_ID | |
| 512 | - WHERE a.BBS_ID = #bbsId# | |
| 513 | - AND a.USE_AT = 'Y' | |
| 514 | - ]]> | |
| 515 | - <isEqual prepend="AND" property="bbsId" compareValue="BBSMSTR_000000000691"> | |
| 516 | - a.FRST_REGISTER_ID = #frstRegisterId# | |
| 517 | - </isEqual> | |
| 518 | - <isEqual prepend="AND" property="bbsId" compareValue="BBSMSTR_000000000692"> | |
| 519 | - a.FRST_REGISTER_ID = #frstRegisterId# | |
| 520 | - </isEqual> | |
| 521 | - <isEqual prepend="AND" property="bbsId" compareValue="BBSMSTR_000000000693"> | |
| 522 | - a.FRST_REGISTER_ID = #frstRegisterId# | |
| 523 | - </isEqual> | |
| 524 | - <isEqual prepend="AND" property="bbsId" compareValue="BBSMSTR_000000000694"> | |
| 525 | - a.FRST_REGISTER_ID = #frstRegisterId# | |
| 526 | - </isEqual> | |
| 527 | - <isEqual prepend="AND" property="bbsId" compareValue="BBSMSTR_000000000695"> | |
| 528 | - a.FRST_REGISTER_ID = #frstRegisterId# | |
| 529 | - </isEqual> | |
| 530 | - <isEqual prepend="AND" property="bbsId" compareValue="BBSMSTR_000000000701"> | |
| 531 | - a.FRST_REGISTER_ID = #frstRegisterId# | |
| 532 | - </isEqual> | |
| 533 | - <isEqual property="noticeAt" compareValue="N"> | |
| 534 | - <![CDATA[ | |
| 535 | - AND ( ( a.NOTICE_AT != 'Y' or a.NOTICE_AT is null) | |
| 536 | - OR ( NTCE_BGNDE is null or NTCE_BGNDE ='') | |
| 537 | - OR ( DATE_FORMAT(now(), '%Y%m%d%H%i') < NTCE_BGNDE OR DATE_FORMAT(now(), '%Y%m%d%H%i') > NTCE_ENDDE ) | |
| 538 | - ) | |
| 539 | - ]]> | |
| 540 | - </isEqual> | |
| 541 | - <isEqual prepend="AND" property="searchCnd" compareValue=""> | |
| 542 | - <![CDATA[ ( a.NTT_SJ LIKE CONCAT ('%', #searchWrd#,'%') OR a.NTT_CN LIKE CONCAT ('%', #searchWrd#,'%') ) ]]> | |
| 543 | - </isEqual> | |
| 544 | - <isEqual prepend="AND" property="searchCnd" compareValue="0"> | |
| 545 | - <![CDATA[ a.NTT_SJ LIKE CONCAT ('%', #searchWrd#,'%') ]]> | |
| 546 | - </isEqual> | |
| 547 | - <isEqual prepend="AND" property="searchCnd" compareValue="1"> | |
| 548 | - <![CDATA[ a.NTT_CN LIKE CONCAT ('%', #searchWrd#,'%') ]]> | |
| 549 | - </isEqual> | |
| 550 | - <isNotEqual property="adminSearchYn" compareValue="Y"> | |
| 551 | - <isEqual prepend="AND" property="searchCnd" compareValue="2"> | |
| 552 | - <![CDATA[ a.NTCR_NM LIKE CONCAT ('%', #searchWrd#,'%') ]]> | |
| 553 | - </isEqual> | |
| 554 | - </isNotEqual> | |
| 555 | - <isEqual prepend="AND" property="adminSearchYn" compareValue="Y"> | |
| 556 | - (a.FRST_REGISTER_ID IS NOT NULL AND a.FRST_REGISTER_ID != '') | |
| 557 | - </isEqual> | |
| 558 | - <isNotEmpty prepend="AND" property="mblDn"> | |
| 559 | - <![CDATA[ a.MBL_DN = #mblDn# ]]> | |
| 560 | - </isNotEmpty> | |
| 561 | - <isNotEmpty prepend="AND" property="parntScttNo"> | |
| 562 | - a.PARNTSCTT_NO = #parntScttNo# | |
| 563 | - </isNotEmpty> | |
| 564 | - <isNotEqual property="searchNttId" compareValue="0"> | |
| 565 | - AND ( a.NTT_ID = #searchNttId# or a.PARNTSCTT_NO = #searchNttId#) | |
| 566 | - </isNotEqual> | |
| 567 | - <isNotEmpty property="searchBgnDe"> | |
| 568 | - <![CDATA[ | |
| 569 | - AND DATE(FRST_REGIST_PNTTM) >= DATE(#searchBgnDe#) | |
| 570 | - ]]> | |
| 571 | - </isNotEmpty> | |
| 572 | - <isNotEmpty property="searchEndDe"> | |
| 573 | - <![CDATA[ | |
| 574 | - AND DATE(FRST_REGIST_PNTTM) <= DATE(#searchEndDe#) | |
| 575 | - ]]> | |
| 576 | - </isNotEmpty> | |
| 577 | - <![CDATA[ | |
| 578 | - ) A | |
| 579 | - ORDER BY 1=1 | |
| 580 | - ]]> | |
| 581 | - <isNotEmpty property="searchSortCnd"> | |
| 582 | - ,$searchSortCnd$ | |
| 583 | - </isNotEmpty> | |
| 584 | - <isNotEmpty property="searchSortOrd"> | |
| 585 | - $searchSortOrd$ | |
| 586 | - </isNotEmpty> | |
| 587 | - , A.SORT_ORDR DESC, A.NTT_NO ASC | |
| 588 | - LIMIT #recordCountPerPage# OFFSET #firstIndex# | |
| 589 | - | |
| 590 | - </select> | |
| 591 | - | |
| 592 | - <select id="BBSManageDAO.selectBoardArticleListWebUrl" parameterClass="BoardMasterVO" resultClass="BoardVO"> | |
| 593 | - <![CDATA[ | |
| 594 | - SELECT A.BBS_ID AS bbsId, | |
| 595 | - COUNT(A.BBS_ID) OVER() AS totCnt, | |
| 596 | - A.NTT_ID AS nttId, | |
| 597 | - A.NTT_SJ AS nttSj, | |
| 598 | - A.NTT_CN AS nttCn, | |
| 599 | - A.FRST_REGIST_PNTTM AS frstRegisterPnttm, | |
| 600 | - A.RDCNT AS inqireCo, | |
| 601 | - A.NEW_FLAG AS newFlag, | |
| 602 | - A.NTT_NO AS nttNo, | |
| 603 | - A.ATCH_FILE_CNT AS atchFileCnt, | |
| 604 | - A.ATCH_FILE_ID AS atchFileId, | |
| 605 | - A.FILE_SN AS fileSn, | |
| 606 | - IF(A.NTT_ID = A.ANSWER_PR_ID, A.ANSWER_ID, 0) AS answerNttId, | |
| 607 | - A.PASSWORD AS passWord, | |
| 608 | - A.BBS_NM AS bbsNm, | |
| 609 | - A.FRST_REGISTER_NM AS frstRegisterNm, | |
| 610 | - IFNULL(A.ANSWER_CNT,'0') AS answerCnt, | |
| 611 | - A.FRST_REGISTER_ID AS frstRegisterId | |
| 612 | - FROM ( SELECT a.NTT_ID , | |
| 613 | - a.NTT_SJ , | |
| 614 | - SUBSTR(a.NTT_CN, 1, 2000) AS NTT_CN , | |
| 615 | - a.FRST_REGISTER_ID, | |
| 616 | - a.NTCR_NM AS FRST_REGISTER_NM, | |
| 617 | - DATE_FORMAT(a.FRST_REGIST_PNTTM, '%Y-%m-%d') AS FRST_REGIST_PNTTM, | |
| 618 | - a.RDCNT, | |
| 619 | - a.PARNTSCTT_NO, | |
| 620 | - a.ANSWER_AT, | |
| 621 | - a.ANSWER_LC, | |
| 622 | - a.USE_AT, | |
| 623 | - a.ATCH_FILE_ID, | |
| 624 | - a.BBS_ID, | |
| 625 | - a.PASSWORD, | |
| 626 | - a.NTCE_BGNDE, | |
| 627 | - a.NTCE_ENDDE, | |
| 628 | - a.NOTICE_AT, | |
| 629 | - a.SECRET_AT, | |
| 630 | - IFNULL(c.ATCH_FILE_CNT, 0) AS ATCH_FILE_CNT, | |
| 631 | - IFNULL(c.FILE_SN, 0) AS FILE_SN, | |
| 632 | - a.REPORT_TY_CD, | |
| 633 | - d.CODE_NM AS REPORT_TY_NM, | |
| 634 | - CASE | |
| 635 | - WHEN DATE(SUBDATE(NOW(), INTERVAL 7 DAY)) < DATE(FRST_REGIST_PNTTM) | |
| 636 | - THEN 'Y' | |
| 637 | - ELSE 'N' | |
| 638 | - END AS NEW_FLAG, | |
| 639 | - LEAD(a.NTT_ID) OVER(ORDER BY a.SORT_ORDR DESC, a.NTT_NO ASC) AS ANSWER_ID, | |
| 640 | - LEAD(a.PARNTSCTT_NO) OVER(ORDER BY a.SORT_ORDR DESC, a.NTT_NO ASC) AS ANSWER_PR_ID, | |
| 641 | - a.SORT_ORDR, | |
| 642 | - a.NTT_NO, | |
| 643 | - PUB_PERIOD, | |
| 644 | - PUB_TIME, | |
| 645 | - PUB_LINK, | |
| 646 | - PUB_LOC , | |
| 647 | - LAST_UPDT_PNTTM, | |
| 648 | - BBS_NM, | |
| 649 | - p.ANSWER_CNT AS ANSWER_CNT | |
| 650 | - FROM LETTNBBS a | |
| 651 | - LEFT OUTER JOIN | |
| 652 | - (SELECT a.ATCH_FILE_ID, | |
| 653 | - COUNT(b.FILE_SN) AS ATCH_FILE_CNT, | |
| 654 | - MIN(b.FILE_SN) AS FILE_SN | |
| 655 | - FROM LETTNFILE a | |
| 656 | - LEFT OUTER JOIN LETTNFILEDETAIL b | |
| 657 | - ON a.ATCH_FILE_ID = b.ATCH_FILE_ID | |
| 658 | - WHERE a.USE_AT = 'Y' | |
| 659 | - GROUP BY a.ATCH_FILE_ID | |
| 660 | - ) | |
| 661 | - c | |
| 662 | - ON a.ATCH_FILE_ID = c.ATCH_FILE_ID | |
| 663 | - LEFT OUTER JOIN | |
| 664 | - (SELECT NTT_ID, | |
| 665 | - COUNT(ANSWER_NO) AS ANSWER_CNT | |
| 666 | - FROM LETTNCOMMENT | |
| 667 | - WHERE BBS_ID IN | |
| 668 | - ( SELECT A.BBS_ID | |
| 669 | - FROM LETTNBBSMASTER A | |
| 670 | - INNER JOIN LETTNPROGRMLIST B | |
| 671 | - ON A.MENU_NO = B.PROGRM_FILE_NM | |
| 672 | - AND B.URL = #url# | |
| 673 | - AND A.USE_AT = 'Y' | |
| 674 | - ) | |
| 675 | - AND USE_AT = 'Y' | |
| 676 | - GROUP BY BBS_ID, | |
| 677 | - NTT_ID | |
| 678 | - ) | |
| 679 | - e | |
| 680 | - ON a.NTT_ID = e.NTT_ID | |
| 681 | - LEFT OUTER JOIN | |
| 682 | - (SELECT CODE_ID, | |
| 683 | - CODE, | |
| 684 | - CODE_NM | |
| 685 | - FROM LETTCCMMNDETAILCODE | |
| 686 | - WHERE CODE_ID = 'ITN004' | |
| 687 | - AND USE_AT ='Y' | |
| 688 | - ) | |
| 689 | - d | |
| 690 | - ON a.REPORT_TY_CD = d.CODE | |
| 691 | - LEFT OUTER JOIN | |
| 692 | - (SELECT BBS_ID, | |
| 693 | - BBS_NM | |
| 694 | - FROM lettnbbsmaster | |
| 695 | - GROUP BY BBS_ID, | |
| 696 | - BBS_NM | |
| 697 | - ) | |
| 698 | - f | |
| 699 | - ON a.BBS_ID = f.BBS_ID | |
| 700 | - LEFT OUTER JOIN | |
| 701 | - (SELECT BBS_ID, | |
| 702 | - NTT_ID, | |
| 703 | - COUNT(ANSWER_NO) AS ANSWER_CNT | |
| 704 | - FROM lettncomment | |
| 705 | - GROUP BY BBS_ID, | |
| 706 | - NTT_ID | |
| 707 | - ) | |
| 708 | - p | |
| 709 | - ON a.BBS_ID = p.BBS_ID | |
| 710 | - AND a.NTT_ID = p.NTT_ID | |
| 711 | - WHERE a.BBS_ID IN | |
| 712 | - ( SELECT A.BBS_ID | |
| 713 | - FROM LETTNBBSMASTER A | |
| 714 | - INNER JOIN LETTNPROGRMLIST B | |
| 715 | - ON A.MENU_NO = B.PROGRM_FILE_NM | |
| 716 | - AND B.URL = #url# | |
| 717 | - AND A.USE_AT = 'Y' | |
| 718 | - ) | |
| 719 | - AND a.USE_AT = 'Y' | |
| 720 | - AND a.ANSWER_AT = 'N' | |
| 721 | - /** 답변건 제외 */ | |
| 722 | - ]]> | |
| 723 | - <isEqual prepend="AND" property="searchCnd" compareValue=""> | |
| 724 | - ( a.NTT_SJ LIKE CONCAT ('%', #searchWrd#,'%') OR a.NTT_CN LIKE CONCAT ('%', #searchWrd#,'%') ) | |
| 725 | - </isEqual> | |
| 726 | - <isEqual prepend="AND" property="searchCnd" compareValue="0"> | |
| 727 | - a.NTT_SJ LIKE CONCAT ('%', #searchWrd#,'%') | |
| 728 | - </isEqual> | |
| 729 | - <isEqual prepend="AND" property="searchCnd" compareValue="1"> | |
| 730 | - a.NTT_CN LIKE CONCAT ('%', #searchWrd#,'%') | |
| 731 | - </isEqual> | |
| 732 | - <isNotEmpty property="searchBgnDe"> | |
| 733 | - <![CDATA[ | |
| 734 | - AND DATE(FRST_REGIST_PNTTM) >= DATE(#searchBgnDe#) | |
| 735 | - ]]> | |
| 736 | - </isNotEmpty> | |
| 737 | - <isNotEmpty property="searchEndDe"> | |
| 738 | - <![CDATA[ | |
| 739 | - AND DATE(FRST_REGIST_PNTTM) <= DATE(#searchEndDe#) | |
| 740 | - ]]> | |
| 741 | - </isNotEmpty> | |
| 742 | - <isEqual prepend="AND" property="url" compareValue="/web/cop/bbs/QnaList.do"> | |
| 743 | - a.FRST_REGISTER_ID = #frstRegisterId# | |
| 744 | - </isEqual> | |
| 745 | - <isEqual prepend="AND" property="url" compareValue="/web/cop/bbs/SuggestList.do"> | |
| 746 | - a.FRST_REGISTER_ID = #frstRegisterId# | |
| 747 | - </isEqual> | |
| 748 | - <![CDATA[ | |
| 749 | - ) A | |
| 750 | - ORDER BY 1=1 | |
| 751 | - ]]> | |
| 752 | - <isNotEmpty property="searchSortCnd"> | |
| 753 | - ,$searchSortCnd$ | |
| 754 | - </isNotEmpty> | |
| 755 | - <isNotEmpty property="searchSortOrd"> | |
| 756 | - $searchSortOrd$ | |
| 757 | - </isNotEmpty> | |
| 758 | - <![CDATA[ | |
| 759 | - , A.NTT_ID DESC , A.SORT_ORDR DESC | |
| 760 | - LIMIT #recordCountPerPage# OFFSET #firstIndex# | |
| 761 | - ]]> | |
| 762 | - </select> | |
| 763 | - | |
| 764 | - <select id="BBSManageDAO.selectBoardArticleListCntWebUrl" parameterClass="BoardMasterVO" resultClass="java.lang.Integer"> | |
| 765 | - <![CDATA[ | |
| 766 | - SELECT COUNT(A.BBS_ID) | |
| 767 | - FROM ( SELECT a.NTT_ID , | |
| 768 | - a.NTT_SJ , | |
| 769 | - SUBSTR(a.NTT_CN, 1, 2000) AS NTT_CN , | |
| 770 | - a.FRST_REGISTER_ID, | |
| 771 | - a.NTCR_NM AS FRST_REGISTER_NM, | |
| 772 | - DATE_FORMAT(a.FRST_REGIST_PNTTM, '%Y-%m-%d') AS FRST_REGIST_PNTTM, | |
| 773 | - a.RDCNT, | |
| 774 | - a.PARNTSCTT_NO, | |
| 775 | - a.ANSWER_AT, | |
| 776 | - a.ANSWER_LC, | |
| 777 | - a.USE_AT, | |
| 778 | - a.ATCH_FILE_ID, | |
| 779 | - a.BBS_ID, | |
| 780 | - a.PASSWORD, | |
| 781 | - a.NTCE_BGNDE, | |
| 782 | - a.NTCE_ENDDE, | |
| 783 | - a.NOTICE_AT, | |
| 784 | - a.SECRET_AT, | |
| 785 | - IFNULL(c.ATCH_FILE_CNT, 0) AS ATCH_FILE_CNT, | |
| 786 | - IFNULL(c.FILE_SN, 0) AS FILE_SN, | |
| 787 | - a.REPORT_TY_CD, | |
| 788 | - d.CODE_NM AS REPORT_TY_NM, | |
| 789 | - CASE | |
| 790 | - WHEN DATE(SUBDATE(NOW(), INTERVAL 7 DAY)) < DATE(FRST_REGIST_PNTTM) | |
| 791 | - THEN 'Y' | |
| 792 | - ELSE 'N' | |
| 793 | - END AS NEW_FLAG, | |
| 794 | - LEAD(a.NTT_ID) OVER(ORDER BY a.SORT_ORDR DESC, a.NTT_NO ASC) AS ANSWER_ID, | |
| 795 | - LEAD(a.PARNTSCTT_NO) OVER(ORDER BY a.SORT_ORDR DESC, a.NTT_NO ASC) AS ANSWER_PR_ID, | |
| 796 | - a.SORT_ORDR, | |
| 797 | - a.NTT_NO, | |
| 798 | - PUB_PERIOD, | |
| 799 | - PUB_TIME, | |
| 800 | - PUB_LINK, | |
| 801 | - PUB_LOC , | |
| 802 | - LAST_UPDT_PNTTM, | |
| 803 | - BBS_NM, | |
| 804 | - p.ANSWER_CNT AS ANSWER_CNT | |
| 805 | - FROM LETTNBBS a | |
| 806 | - LEFT OUTER JOIN | |
| 807 | - (SELECT a.ATCH_FILE_ID, | |
| 808 | - COUNT(b.FILE_SN) AS ATCH_FILE_CNT, | |
| 809 | - MIN(b.FILE_SN) AS FILE_SN | |
| 810 | - FROM LETTNFILE a | |
| 811 | - LEFT OUTER JOIN LETTNFILEDETAIL b | |
| 812 | - ON a.ATCH_FILE_ID = b.ATCH_FILE_ID | |
| 813 | - WHERE a.USE_AT = 'Y' | |
| 814 | - GROUP BY a.ATCH_FILE_ID | |
| 815 | - ) | |
| 816 | - c | |
| 817 | - ON a.ATCH_FILE_ID = c.ATCH_FILE_ID | |
| 818 | - LEFT OUTER JOIN | |
| 819 | - (SELECT NTT_ID, | |
| 820 | - COUNT(ANSWER_NO) AS ANSWER_CNT | |
| 821 | - FROM LETTNCOMMENT | |
| 822 | - WHERE BBS_ID IN | |
| 823 | - ( SELECT A.BBS_ID | |
| 824 | - FROM LETTNBBSMASTER A | |
| 825 | - INNER JOIN LETTNPROGRMLIST B | |
| 826 | - ON A.MENU_NO = B.PROGRM_FILE_NM | |
| 827 | - AND B.URL = #url# | |
| 828 | - ) | |
| 829 | - AND USE_AT = 'Y' | |
| 830 | - GROUP BY BBS_ID, | |
| 831 | - NTT_ID | |
| 832 | - ) | |
| 833 | - e | |
| 834 | - ON a.NTT_ID = e.NTT_ID | |
| 835 | - LEFT OUTER JOIN | |
| 836 | - (SELECT CODE_ID, | |
| 837 | - CODE, | |
| 838 | - CODE_NM | |
| 839 | - FROM LETTCCMMNDETAILCODE | |
| 840 | - WHERE CODE_ID = 'ITN004' | |
| 841 | - AND USE_AT ='Y' | |
| 842 | - ) | |
| 843 | - d | |
| 844 | - ON a.REPORT_TY_CD = d.CODE | |
| 845 | - LEFT OUTER JOIN | |
| 846 | - (SELECT BBS_ID, | |
| 847 | - BBS_NM | |
| 848 | - FROM lettnbbsmaster | |
| 849 | - GROUP BY BBS_ID, | |
| 850 | - BBS_NM | |
| 851 | - ) | |
| 852 | - f | |
| 853 | - ON a.BBS_ID = f.BBS_ID | |
| 854 | - LEFT OUTER JOIN | |
| 855 | - (SELECT BBS_ID, | |
| 856 | - NTT_ID, | |
| 857 | - COUNT(ANSWER_NO) AS ANSWER_CNT | |
| 858 | - FROM lettncomment | |
| 859 | - GROUP BY BBS_ID, | |
| 860 | - NTT_ID | |
| 861 | - ) | |
| 862 | - p | |
| 863 | - ON a.BBS_ID = p.BBS_ID | |
| 864 | - AND a.NTT_ID = p.NTT_ID | |
| 865 | - WHERE a.BBS_ID IN | |
| 866 | - ( SELECT A.BBS_ID | |
| 867 | - FROM LETTNBBSMASTER A | |
| 868 | - INNER JOIN LETTNPROGRMLIST B | |
| 869 | - ON A.MENU_NO = B.PROGRM_FILE_NM | |
| 870 | - AND B.URL = #url# | |
| 871 | - ) | |
| 872 | - AND a.USE_AT = 'Y' | |
| 873 | - AND a.ANSWER_AT = 'N' | |
| 874 | - /** 답변건 제외 */ | |
| 875 | - ]]> | |
| 876 | - <isEqual prepend="AND" property="searchCnd" compareValue=""> | |
| 877 | - ( a.NTT_SJ LIKE CONCAT ('%', #searchWrd#,'%') OR a.NTT_CN LIKE CONCAT ('%', #searchWrd#,'%') ) | |
| 878 | - </isEqual> | |
| 879 | - <isEqual prepend="AND" property="searchCnd" compareValue="0"> | |
| 880 | - a.NTT_SJ LIKE CONCAT ('%', #searchWrd#,'%') | |
| 881 | - </isEqual> | |
| 882 | - <isEqual prepend="AND" property="searchCnd" compareValue="1"> | |
| 883 | - a.NTT_CN LIKE CONCAT ('%', #searchWrd#,'%') | |
| 884 | - </isEqual> | |
| 885 | - <isNotEmpty property="searchBgnDe"> | |
| 886 | - <![CDATA[ | |
| 887 | - AND DATE(FRST_REGIST_PNTTM) >= DATE(#searchBgnDe#) | |
| 888 | - ]]> | |
| 889 | - </isNotEmpty> | |
| 890 | - <isNotEmpty property="searchEndDe"> | |
| 891 | - <![CDATA[ | |
| 892 | - AND DATE(FRST_REGIST_PNTTM) <= DATE(#searchEndDe#) | |
| 893 | - ]]> | |
| 894 | - </isNotEmpty> | |
| 895 | - <isEqual prepend="AND" property="url" compareValue="/web/cop/bbs/QnaList.do"> | |
| 896 | - a.FRST_REGISTER_ID = #frstRegisterId# | |
| 897 | - </isEqual> | |
| 898 | - <![CDATA[ | |
| 899 | - ) A | |
| 900 | - | |
| 901 | - ]]> | |
| 902 | - | |
| 903 | - </select> | |
| 904 | - | |
| 905 | - <select id="BBSManageDAO.selectBoardArticleListCntWeb" parameterClass="BoardVO" resultClass="java.lang.Integer" > | |
| 906 | - <![CDATA[ | |
| 907 | - SELECT | |
| 908 | - COUNT(a.NTT_ID) | |
| 909 | - FROM ( SELECT a.NTT_ID, | |
| 910 | - a.NTT_SJ, | |
| 911 | - SUBSTR(a.NTT_CN, 1, 2000) AS NTT_CN, | |
| 912 | - a.FRST_REGISTER_ID, | |
| 913 | - a.NTCR_NM AS FRST_REGISTER_NM, | |
| 914 | - DATE_FORMAT(a.FRST_REGIST_PNTTM, '%Y-%m-%d') AS FRST_REGIST_PNTTM, | |
| 915 | - a.RDCNT, | |
| 916 | - a.PARNTSCTT_NO, | |
| 917 | - a.ANSWER_AT, | |
| 918 | - a.ANSWER_LC, | |
| 919 | - a.USE_AT, | |
| 920 | - a.ATCH_FILE_ID, | |
| 921 | - a.BBS_ID, | |
| 922 | - a.NTCE_BGNDE, | |
| 923 | - a.NTCE_ENDDE, | |
| 924 | - a.NOTICE_AT, | |
| 925 | - a.SECRET_AT, | |
| 926 | - IFNULL(c.ATCH_FILE_CNT, 0) AS ATCH_FILE_CNT, | |
| 927 | - IFNULL(c.FILE_SN, 0) AS FILE_SN, | |
| 928 | - a.REPORT_TY_CD, | |
| 929 | - d.CODE_NM AS REPORT_TY_NM, | |
| 930 | - CASE | |
| 931 | - WHEN DATE(SUBDATE(NOW(), INTERVAL 7 DAY)) < DATE(FRST_REGIST_PNTTM) | |
| 932 | - THEN 'Y' | |
| 933 | - ELSE 'N' | |
| 934 | - END AS NEW_FLAG, | |
| 935 | - LEAD(a.NTT_ID) OVER(ORDER BY a.SORT_ORDR DESC, a.NTT_NO ASC) AS ANSWER_ID, | |
| 936 | - LEAD(a.PARNTSCTT_NO) OVER(ORDER BY a.SORT_ORDR DESC, a.NTT_NO ASC) AS ANSWER_PR_ID, | |
| 937 | - a.SORT_ORDR, | |
| 938 | - a.NTT_NO, | |
| 939 | - PUB_PERIOD, | |
| 940 | - PUB_TIME, | |
| 941 | - PUB_LINK, | |
| 942 | - PUB_LOC, | |
| 943 | - f.CODE SE_CD, | |
| 944 | - f.CODE_NM AS SE_CD_TXT , | |
| 945 | - LAST_UPDT_PNTTM, | |
| 946 | - BBS_NM, | |
| 947 | - p.ANSWER_CNT AS ANSWER_CNT | |
| 948 | - FROM LETTNBBS a | |
| 949 | - LEFT OUTER JOIN | |
| 950 | - (SELECT a.ATCH_FILE_ID, | |
| 951 | - COUNT(b.FILE_SN) AS ATCH_FILE_CNT, | |
| 952 | - MIN(b.FILE_SN) AS FILE_SN | |
| 953 | - FROM LETTNFILE a | |
| 954 | - LEFT OUTER JOIN LETTNFILEDETAIL b | |
| 955 | - ON a.ATCH_FILE_ID = b.ATCH_FILE_ID | |
| 956 | - WHERE a.USE_AT = 'Y' | |
| 957 | - GROUP BY a.ATCH_FILE_ID | |
| 958 | - ) | |
| 959 | - c | |
| 960 | - ON a.ATCH_FILE_ID = c.ATCH_FILE_ID | |
| 961 | - LEFT OUTER JOIN | |
| 962 | - (SELECT CODE_ID, | |
| 963 | - CODE, | |
| 964 | - CODE_NM | |
| 965 | - FROM LETTCCMMNDETAILCODE | |
| 966 | - WHERE CODE_ID = 'ITN004' | |
| 967 | - AND USE_AT ='Y' | |
| 968 | - ) | |
| 969 | - d | |
| 970 | - ON a.REPORT_TY_CD = d.CODE | |
| 971 | - LEFT OUTER JOIN | |
| 972 | - (SELECT NTT_ID, | |
| 973 | - COUNT(ANSWER_NO) AS ANSWER_CNT | |
| 974 | - FROM LETTNCOMMENT | |
| 975 | - WHERE BBS_ID = #bbsId# | |
| 976 | - AND USE_AT = 'Y' | |
| 977 | - GROUP BY BBS_ID, | |
| 978 | - NTT_ID | |
| 979 | - ) | |
| 980 | - e | |
| 981 | - ON a.NTT_ID = e.NTT_ID | |
| 982 | - LEFT JOIN | |
| 983 | - ( SELECT CODE_NM , | |
| 984 | - CODE | |
| 985 | - FROM LETTCCMMNDETAILCODE | |
| 986 | - WHERE USE_AT = 'Y' | |
| 987 | - AND CODE_ID = 'ITN015' | |
| 988 | - ) | |
| 989 | - f | |
| 990 | - ON a.SE_CD =f.CODE | |
| 991 | - LEFT OUTER JOIN | |
| 992 | - (SELECT BBS_ID, | |
| 993 | - BBS_NM | |
| 994 | - FROM lettnbbsmaster | |
| 995 | - GROUP BY BBS_ID, | |
| 996 | - BBS_NM | |
| 997 | - ) | |
| 998 | - g | |
| 999 | - ON a.BBS_ID = g.BBS_ID | |
| 1000 | - LEFT OUTER JOIN | |
| 1001 | - (SELECT BBS_ID, | |
| 1002 | - NTT_ID, | |
| 1003 | - COUNT(ANSWER_NO) AS ANSWER_CNT | |
| 1004 | - FROM lettncomment | |
| 1005 | - GROUP BY BBS_ID, | |
| 1006 | - NTT_ID | |
| 1007 | - ) | |
| 1008 | - p | |
| 1009 | - ON a.BBS_ID = p.BBS_ID | |
| 1010 | - AND a.NTT_ID = p.NTT_ID | |
| 1011 | - WHERE a.BBS_ID = #bbsId# | |
| 1012 | - AND a.USE_AT = 'Y' | |
| 1013 | - ]]> | |
| 1014 | - <isEqual prepend="AND" property="bbsId" compareValue="BBSMSTR_000000000691"> | |
| 1015 | - a.FRST_REGISTER_ID = #frstRegisterId# | |
| 1016 | - </isEqual> | |
| 1017 | - <isEqual prepend="AND" property="bbsId" compareValue="BBSMSTR_000000000692"> | |
| 1018 | - a.FRST_REGISTER_ID = #frstRegisterId# | |
| 1019 | - </isEqual> | |
| 1020 | - <isEqual prepend="AND" property="bbsId" compareValue="BBSMSTR_000000000693"> | |
| 1021 | - a.FRST_REGISTER_ID = #frstRegisterId# | |
| 1022 | - </isEqual> | |
| 1023 | - <isEqual prepend="AND" property="bbsId" compareValue="BBSMSTR_000000000694"> | |
| 1024 | - a.FRST_REGISTER_ID = #frstRegisterId# | |
| 1025 | - </isEqual> | |
| 1026 | - <isEqual prepend="AND" property="bbsId" compareValue="BBSMSTR_000000000695"> | |
| 1027 | - a.FRST_REGISTER_ID = #frstRegisterId# | |
| 1028 | - </isEqual> | |
| 1029 | - <isEqual prepend="AND" property="bbsId" compareValue="BBSMSTR_000000000701"> | |
| 1030 | - a.FRST_REGISTER_ID = #frstRegisterId# | |
| 1031 | - </isEqual> | |
| 1032 | - <isEqual property="noticeAt" compareValue="N"> | |
| 1033 | - <![CDATA[ | |
| 1034 | - AND ( ( a.NOTICE_AT != 'Y' or a.NOTICE_AT is null) | |
| 1035 | - OR ( NTCE_BGNDE is null or NTCE_BGNDE ='') | |
| 1036 | - OR ( DATE_FORMAT(now(), '%Y%m%d%H%i') < NTCE_BGNDE OR DATE_FORMAT(now(), '%Y%m%d%H%i') > NTCE_ENDDE ) | |
| 1037 | - ) | |
| 1038 | - ]]> | |
| 1039 | - </isEqual> | |
| 1040 | - <isEqual prepend="AND" property="searchCnd" compareValue=""> | |
| 1041 | - <![CDATA[ ( a.NTT_SJ LIKE CONCAT ('%', #searchWrd#,'%') OR a.NTT_CN LIKE CONCAT ('%', #searchWrd#,'%') ) ]]> | |
| 1042 | - </isEqual> | |
| 1043 | - <isEqual prepend="AND" property="searchCnd" compareValue="0"> | |
| 1044 | - <![CDATA[ a.NTT_SJ LIKE CONCAT ('%', #searchWrd#,'%') ]]> | |
| 1045 | - </isEqual> | |
| 1046 | - <isEqual prepend="AND" property="searchCnd" compareValue="1"> | |
| 1047 | - <![CDATA[ a.NTT_CN LIKE CONCAT ('%', #searchWrd#,'%') ]]> | |
| 1048 | - </isEqual> | |
| 1049 | - <isNotEqual property="adminSearchYn" compareValue="Y"> | |
| 1050 | - <isEqual prepend="AND" property="searchCnd" compareValue="2"> | |
| 1051 | - <![CDATA[ a.NTCR_NM LIKE CONCAT ('%', #searchWrd#,'%') ]]> | |
| 1052 | - </isEqual> | |
| 1053 | - </isNotEqual> | |
| 1054 | - <isEqual prepend="AND" property="adminSearchYn" compareValue="Y"> | |
| 1055 | - (a.FRST_REGISTER_ID IS NOT NULL AND a.FRST_REGISTER_ID != '') | |
| 1056 | - </isEqual> | |
| 1057 | - <isNotEmpty prepend="AND" property="mblDn"> | |
| 1058 | - <![CDATA[ a.MBL_DN = #mblDn# ]]> | |
| 1059 | - </isNotEmpty> | |
| 1060 | - <isNotEmpty prepend="AND" property="parntScttNo"> | |
| 1061 | - a.PARNTSCTT_NO = #parntScttNo# | |
| 1062 | - </isNotEmpty> | |
| 1063 | - <isNotEqual property="searchNttId" compareValue="0"> | |
| 1064 | - AND ( a.NTT_ID = #searchNttId# or a.PARNTSCTT_NO = #searchNttId#) | |
| 1065 | - </isNotEqual> | |
| 1066 | - <isNotEmpty property="searchBgnDe"> | |
| 1067 | - <![CDATA[ | |
| 1068 | - AND DATE(FRST_REGIST_PNTTM) >= DATE(#searchBgnDe#) | |
| 1069 | - ]]> | |
| 1070 | - </isNotEmpty> | |
| 1071 | - <isNotEmpty property="searchEndDe"> | |
| 1072 | - <![CDATA[ | |
| 1073 | - AND DATE(FRST_REGIST_PNTTM) <= DATE(#searchEndDe#) | |
| 1074 | - ]]> | |
| 1075 | - </isNotEmpty> | |
| 1076 | - <![CDATA[ | |
| 1077 | - ) A | |
| 1078 | - ]]> | |
| 1079 | - | |
| 1080 | - </select> | |
| 1081 | - | |
| 1082 | - | |
| 1083 | - <select id="BBSManageDAO.selectBoardArticle" parameterClass="BoardVO" resultMap="boardDetail" > | |
| 1084 | - <![CDATA[ | |
| 1085 | - SELECT | |
| 1086 | - a.NTT_SJ | |
| 1087 | - , a.NTCR_ID | |
| 1088 | - , a.NTCR_NM | |
| 1089 | - , a.NTT_NO | |
| 1090 | - , a.NTT_CN | |
| 1091 | - , a.USER_TY_CD | |
| 1092 | - , a.USER_POSITION | |
| 1093 | - , a.PASSWORD | |
| 1094 | - , a.FRST_REGISTER_ID | |
| 1095 | - , a.NTCR_NM as FRST_REGISTER_NM | |
| 1096 | - , b.OFFM_TELNO | |
| 1097 | - , DATE_FORMAT(a.FRST_REGIST_PNTTM, '%Y-%m-%d %H:%i:%S') as FRST_REGIST_PNTTM | |
| 1098 | - , a.NTCE_BGNDE | |
| 1099 | - , a.NTCE_ENDDE | |
| 1100 | - , a.RDCNT | |
| 1101 | - , a.USE_AT | |
| 1102 | - , a.ATCH_FILE_ID | |
| 1103 | - , a.BBS_ID | |
| 1104 | - , a.NTT_ID | |
| 1105 | - , a.PARNTSCTT_NO | |
| 1106 | - , a.ANSWER_AT | |
| 1107 | - , a.ANSWER_LC | |
| 1108 | - , a.SORT_ORDR | |
| 1109 | - , c.BBS_TY_CODE | |
| 1110 | - , c.BBS_ATTRB_CODE | |
| 1111 | - , c.REPLY_POSBL_AT | |
| 1112 | - , c.FILE_ATCH_POSBL_AT | |
| 1113 | - , c.ATCH_POSBL_FILE_NUMBER | |
| 1114 | - , c.BBS_NM | |
| 1115 | - , a.NOTICE_AT | |
| 1116 | - , a.SECRET_AT | |
| 1117 | - , a.NTCR_IP | |
| 1118 | - , a.MBL_DN | |
| 1119 | - , (SELECT COUNT(0) FROM LETTNFILEDETAIL WHERE ATCH_FILE_ID = a.ATCH_FILE_ID) AS ATCH_FILE_CNT | |
| 1120 | - , a.USER_TY_CD | |
| 1121 | - , e.CODE_NM as USER_TY_NM | |
| 1122 | - , a.USER_POSITION | |
| 1123 | - , a.REPORT_TY_CD | |
| 1124 | - , f.CODE_NM as REPORT_TY_NM | |
| 1125 | - , a.THUMB_ATCH_FILE_ID | |
| 1126 | - , a.SE_CD | |
| 1127 | - , a.KOGL_CN | |
| 1128 | - , a.LINK_URL | |
| 1129 | - , (SELECT COUNT(0) FROM LETTNFILEDETAIL WHERE ATCH_FILE_ID = a.THUMB_ATCH_FILE_ID) AS THUMB_ATCH_FILE_CNT | |
| 1130 | - ]]> | |
| 1131 | - <isNotEmpty property="seCmmnCdId"> | |
| 1132 | - , g.CODE_NM as SE_NM | |
| 1133 | - </isNotEmpty> | |
| 1134 | - <isEmpty property="seCmmnCdId"> | |
| 1135 | - , '' as SE_NM | |
| 1136 | - </isEmpty> | |
| 1137 | - ,PUB_PERIOD | |
| 1138 | - ,PUB_TIME | |
| 1139 | - ,PUB_LINK | |
| 1140 | - ,(SELECT BBS_NM FROM LETTNBBSMASTER WHERE BBS_ID = PUB_LINK) AS PUB_LINK_TXT | |
| 1141 | - ,PUB_LOC | |
| 1142 | - ,g.CODE_NM as SE_CD_TXT | |
| 1143 | - ,(SELECT COUNT(0) | |
| 1144 | - FROM LETTNBBS | |
| 1145 | - WHERE PARNTSCTT_NO = a.NTT_ID | |
| 1146 | - AND USE_AT = 'Y' | |
| 1147 | - ) as ANSWER_CNT | |
| 1148 | - | |
| 1149 | - , SIGN(a.NTCE_BGNDE - DATE_FORMAT(now(), '%Y%m%d0000')) niceFailUrl | |
| 1150 | - , SIGN(a.NTCE_ENDDE - DATE_FORMAT(now(), '%Y%m%d0000')) niceSuccUrl | |
| 1151 | - | |
| 1152 | - <![CDATA[ | |
| 1153 | - FROM | |
| 1154 | - LETTNBBS a | |
| 1155 | - LEFT OUTER JOIN | |
| 1156 | - COMVNUSERMASTER b | |
| 1157 | - ON a.FRST_REGISTER_ID = b.ESNTL_ID | |
| 1158 | - LEFT OUTER JOIN | |
| 1159 | - LETTNBBSMASTER c | |
| 1160 | - ON a.BBS_ID = c.BBS_ID | |
| 1161 | - LEFT OUTER JOIN | |
| 1162 | - (SELECT CODE_ID, CODE, CODE_NM FROM | |
| 1163 | - LETTCCMMNDETAILCODE WHERE CODE_ID = 'ITN003' AND USE_AT='Y') e | |
| 1164 | - ON a.USER_TY_CD = e.CODE | |
| 1165 | - LEFT OUTER JOIN | |
| 1166 | - (SELECT CODE_ID, CODE, CODE_NM FROM | |
| 1167 | - LETTCCMMNDETAILCODE WHERE CODE_ID = 'ITN004' AND USE_AT='Y') f | |
| 1168 | - ON a.REPORT_TY_CD = f.CODE | |
| 1169 | - LEFT JOIN ( | |
| 1170 | - SELECT CODE_NM , CODE FROM LETTCCMMNDETAILCODE WHERE USE_AT = 'Y' | |
| 1171 | - AND CODE_ID = 'ITN015' | |
| 1172 | - ) g ON a.SE_CD =g.CODE | |
| 1173 | - WHERE a.BBS_ID = #bbsId# | |
| 1174 | - AND a.NTT_ID = #nttId# | |
| 1175 | - ]]> | |
| 1176 | - </select> | |
| 1177 | - | |
| 1178 | - <update id="BBSManageDAO.updateBoardArticle" parameterClass="Board"> | |
| 1179 | - <![CDATA[ | |
| 1180 | - UPDATE LETTNBBS SET | |
| 1181 | - NTT_SJ = #nttSj#, | |
| 1182 | - NTT_CN = #nttCn#, | |
| 1183 | - NTCR_IP = #ntcrIp#, | |
| 1184 | - LAST_UPDUSR_ID = #lastUpdusrId#, | |
| 1185 | - ATCH_FILE_ID = #atchFileId#, | |
| 1186 | - NOTICE_AT = #noticeAt#, | |
| 1187 | - SECRET_AT = #secretAt#, | |
| 1188 | - USER_TY_CD = #userTyCd#, | |
| 1189 | - USER_POSITION = #userPosition#, | |
| 1190 | - REPORT_TY_CD = #reportTyCd#, | |
| 1191 | - | |
| 1192 | - PUB_PERIOD = #pubPeriod#, | |
| 1193 | - PUB_TIME = #pubTime#, | |
| 1194 | - PUB_LINK = #pubLink#, | |
| 1195 | - PUB_LOC = #pubLoc#, | |
| 1196 | - ]]> | |
| 1197 | - <isNotEmpty property="noticeAt"> | |
| 1198 | - NTCE_BGNDE = #ntceBgnde#, | |
| 1199 | - NTCE_ENDDE = #ntceEndde#, | |
| 1200 | - </isNotEmpty> | |
| 1201 | - <isEmpty property="noticeAt"> | |
| 1202 | - NTCE_BGNDE = '', | |
| 1203 | - NTCE_ENDDE = '', | |
| 1204 | - </isEmpty> | |
| 1205 | - | |
| 1206 | - <isNotEmpty property="frstRegisterPnttm"> | |
| 1207 | - FRST_REGIST_PNTTM = STR_TO_DATE(#frstRegisterPnttm#, '%Y%m%d'), | |
| 1208 | - </isNotEmpty> | |
| 1209 | - <isNotEmpty property="ntcrNm"> | |
| 1210 | - NTCR_NM = #ntcrNm#, | |
| 1211 | - </isNotEmpty> | |
| 1212 | - <![CDATA[ | |
| 1213 | - SE_CD = #seCd#, | |
| 1214 | - LAST_UPDT_PNTTM = SYSDATE() | |
| 1215 | - WHERE BBS_ID = #bbsId# | |
| 1216 | - AND NTT_ID = #nttId# | |
| 1217 | - ]]> | |
| 1218 | - </update> | |
| 1219 | - | |
| 1220 | - <update id="BBSManageDAO.deleteBoardArticle" parameterClass="Board"> | |
| 1221 | - <![CDATA[ | |
| 1222 | - UPDATE LETTNBBS SET | |
| 1223 | - USE_AT = 'N', | |
| 1224 | - NTCR_IP = #ntcrIp#, | |
| 1225 | - LAST_UPDUSR_ID = #lastUpdusrId#, | |
| 1226 | - LAST_UPDT_PNTTM = SYSDATE() | |
| 1227 | - WHERE BBS_ID = #bbsId# | |
| 1228 | - AND NTT_ID = #nttId# | |
| 1229 | - ]]> | |
| 1230 | - </update> | |
| 1231 | - | |
| 1232 | - <update id="BBSManageDAO.updateBoardArticleUseY" parameterClass="Board"> | |
| 1233 | - <![CDATA[ | |
| 1234 | - UPDATE LETTNBBS SET | |
| 1235 | - USE_AT = 'Y', | |
| 1236 | - NTCR_IP = #ntcrIp#, | |
| 1237 | - LAST_UPDUSR_ID = #lastUpdusrId#, | |
| 1238 | - LAST_UPDT_PNTTM = SYSDATE() | |
| 1239 | - WHERE BBS_ID = #bbsId# | |
| 1240 | - AND NTT_ID = #nttId# | |
| 1241 | - ]]> | |
| 1242 | - </update> | |
| 1243 | - | |
| 1244 | - <select id="BBSManageDAO.selectMaxInqireCo" resultClass="java.lang.Integer" parameterClass="BoardVO"> | |
| 1245 | - <![CDATA[ | |
| 1246 | - SELECT IFNULL(MAX(RDCNT),0)+1 AS RDCNT FROM LETTNBBS | |
| 1247 | - WHERE BBS_ID = #bbsId# | |
| 1248 | - AND NTT_ID = #nttId# | |
| 1249 | - ]]> | |
| 1250 | - </select> | |
| 1251 | - | |
| 1252 | - <update id="BBSManageDAO.updateInqireCo" parameterClass="BoardVO"> | |
| 1253 | - <![CDATA[ | |
| 1254 | - UPDATE LETTNBBS SET | |
| 1255 | - RDCNT = #inqireCo# | |
| 1256 | - WHERE BBS_ID = #bbsId# | |
| 1257 | - AND NTT_ID = #nttId# | |
| 1258 | - ]]> | |
| 1259 | - </update> | |
| 1260 | - | |
| 1261 | - <select id="BBSManageDAO.getParentNttNo" parameterClass="Board" resultClass="java.lang.Long"> | |
| 1262 | - <![CDATA[ | |
| 1263 | - SELECT NTT_NO FROM LETTNBBS | |
| 1264 | - WHERE BBS_ID = #bbsId# AND NTT_ID = #parnts# | |
| 1265 | - ]]> | |
| 1266 | - </select> | |
| 1267 | - | |
| 1268 | - <update id="BBSManageDAO.updateOtherNttNo" parameterClass="Board"> | |
| 1269 | - <![CDATA[ | |
| 1270 | - UPDATE LETTNBBS SET | |
| 1271 | - NTT_NO = NTT_NO + 1 | |
| 1272 | - WHERE BBS_ID = #bbsId# AND SORT_ORDR = #sortOrdr# | |
| 1273 | - AND NTT_NO > #nttNo# | |
| 1274 | - ]]> | |
| 1275 | - </update> | |
| 1276 | - | |
| 1277 | - <update id="BBSManageDAO.updateNttNo" parameterClass="Board"> | |
| 1278 | - <![CDATA[ | |
| 1279 | - UPDATE LETTNBBS SET | |
| 1280 | - NTT_NO = #nttNo# | |
| 1281 | - WHERE BBS_ID = #bbsId# | |
| 1282 | - AND NTT_ID = #nttId# | |
| 1283 | - ]]> | |
| 1284 | - </update> | |
| 1285 | - | |
| 1286 | - <select id="BBSManageDAO.getUpDownNttIdNSj" parameterClass="Board" resultClass="egovMap"> | |
| 1287 | - <![CDATA[ | |
| 1288 | - SELECT | |
| 1289 | - (SELECT CONCAT(NTT_ID, '|', NTT_SJ) FROM LETTNBBS | |
| 1290 | - WHERE BBS_ID = #bbsId# AND USE_AT = 'Y' AND NTT_ID = a.prevNttId) AS prevNttIdNSj | |
| 1291 | - ,(SELECT CONCAT(NTT_ID, '|', NTT_SJ) FROM LETTNBBS | |
| 1292 | - WHERE BBS_ID = #bbsId# AND USE_AT = 'Y' AND NTT_ID = a.nextNttId) AS nextNttIdNSj | |
| 1293 | - FROM ( | |
| 1294 | - SELECT NTT_ID | |
| 1295 | - ,LEAD(NTT_ID) OVER(ORDER BY SORT_ORDR DESC, NTT_NO ASC) AS prevNttId | |
| 1296 | - ,LAG(NTT_ID) OVER(ORDER BY SORT_ORDR DESC, NTT_NO ASC) AS nextNttId | |
| 1297 | - FROM LETTNBBS | |
| 1298 | - WHERE BBS_ID = #bbsId# | |
| 1299 | - AND USE_AT = 'Y' | |
| 1300 | - ]]> | |
| 1301 | - <isNotEmpty prepend="AND" property="frstRegisterId"> | |
| 1302 | - FRST_REGISTER_ID = #frstRegisterId# | |
| 1303 | - </isNotEmpty> | |
| 1304 | - <![CDATA[ | |
| 1305 | - ) a | |
| 1306 | - WHERE a.NTT_ID = #nttId# | |
| 1307 | - ]]> | |
| 1308 | - </select> | |
| 1309 | - | |
| 1310 | - <select id="BBSManageDAO.selectBoardNotifyArticleList" parameterClass="BoardVO" resultMap="boardList" > | |
| 1311 | - SELECT | |
| 1312 | - a.NTT_ID, a.NTT_SJ, SUBSTR(a.NTT_CN, 1, 2000) AS NTT_CN, a.FRST_REGISTER_ID, IFNULL(b.USER_NM, a.NTCR_NM) as FRST_REGISTER_NM, | |
| 1313 | - DATE_FORMAT(a.FRST_REGIST_PNTTM, '%Y-%m-%d %T') as FRST_REGIST_PNTTM, | |
| 1314 | - a.RDCNT, a.PARNTSCTT_NO, a.ANSWER_AT, a.ANSWER_LC, a.USE_AT, a.ATCH_FILE_ID, | |
| 1315 | - a.BBS_ID, a.NTCE_BGNDE, a.NTCE_ENDDE, a.NOTICE_AT, a.SECRET_AT | |
| 1316 | - ,IFNULL(c.ATCH_FILE_CNT, 0) AS ATCH_FILE_CNT, IFNULL(c.FILE_SN, 0) AS FILE_SN | |
| 1317 | - , '' AS NEW_FLAG | |
| 1318 | - , '' AS REPORT_TY_CD | |
| 1319 | - , '' AS REPORT_TY_NM | |
| 1320 | - ,0 as ANSWER_NTT_ID | |
| 1321 | - ,0 as ANSWER_CNT | |
| 1322 | - ,PUB_PERIOD, PUB_TIME, PUB_LINK, PUB_LOC | |
| 1323 | - ,f.CODE SE_CD, f.CODE_NM as SE_CD_TXT | |
| 1324 | - , a.NTCR_ID AS ntcrId | |
| 1325 | - , a.NTCR_NM AS ntcrNm | |
| 1326 | - FROM | |
| 1327 | - LETTNBBS a | |
| 1328 | - LEFT OUTER JOIN | |
| 1329 | - COMVNUSERMASTER b | |
| 1330 | - ON a.FRST_REGISTER_ID = b.ESNTL_ID | |
| 1331 | - LEFT OUTER JOIN | |
| 1332 | - (SELECT a.ATCH_FILE_ID, COUNT(b.FILE_SN) as ATCH_FILE_CNT, MIN(b.FILE_SN) AS FILE_SN | |
| 1333 | - FROM LETTNFILE a | |
| 1334 | - LEFT OUTER JOIN LETTNFILEDETAIL b | |
| 1335 | - ON a.ATCH_FILE_ID = b.ATCH_FILE_ID | |
| 1336 | - WHERE a.USE_AT = 'Y' | |
| 1337 | - GROUP BY a.ATCH_FILE_ID) c | |
| 1338 | - ON a.ATCH_FILE_ID = c.ATCH_FILE_ID | |
| 1339 | - LEFT JOIN ( | |
| 1340 | - SELECT CODE_NM , CODE FROM LETTCCMMNDETAILCODE WHERE USE_AT = 'Y' | |
| 1341 | - AND CODE_ID = 'ITN015' | |
| 1342 | - ) f ON a.SE_CD =f.CODE | |
| 1343 | - WHERE | |
| 1344 | - a.BBS_ID = #bbsId# | |
| 1345 | - AND a.NOTICE_AT = 'Y' | |
| 1346 | - <![CDATA[ | |
| 1347 | - AND ( DATE_FORMAT(now(), '%Y%m%d%H%i') > NTCE_BGNDE AND DATE_FORMAT(now(), '%Y%m%d%H%i') < NTCE_ENDDE ) | |
| 1348 | - ]]> | |
| 1349 | - AND a.USE_AT = 'Y' | |
| 1350 | - <isEqual prepend="AND" property="searchCnd" compareValue=""> | |
| 1351 | - <![CDATA[ ( a.NTT_SJ LIKE CONCAT ('%', #searchWrd#,'%') OR a.NTT_CN LIKE CONCAT ('%', #searchWrd#,'%') ) ]]> | |
| 1352 | - </isEqual> | |
| 1353 | - <isEqual prepend="AND" property="searchCnd" compareValue="0"> | |
| 1354 | - <![CDATA[ a.NTT_SJ LIKE CONCAT ('%', #searchWrd#,'%') ]]> | |
| 1355 | - </isEqual> | |
| 1356 | - <isEqual prepend="AND" property="searchCnd" compareValue="1"> | |
| 1357 | - <![CDATA[ a.NTT_CN LIKE CONCAT ('%', #searchWrd#,'%') ]]> | |
| 1358 | - </isEqual> | |
| 1359 | - <isNotEqual property="adminSearchYn" compareValue="Y"> | |
| 1360 | - <isEqual prepend="AND" property="searchCnd" compareValue="2"> | |
| 1361 | - <![CDATA[ a.NTCR_NM LIKE CONCAT ('%', #searchWrd#,'%') ]]> | |
| 1362 | - </isEqual> | |
| 1363 | - </isNotEqual> | |
| 1364 | - <isEqual prepend="AND" property="adminSearchYn" compareValue="Y"> | |
| 1365 | - <![CDATA[ (a.FRST_REGISTER_ID IS NOT NULL AND a.FRST_REGISTER_ID != '') ]]> | |
| 1366 | - </isEqual> | |
| 1367 | - <isNotEmpty prepend="AND" property="mblDn"> | |
| 1368 | - <![CDATA[ a.MBL_DN = #mblDn# ]]> | |
| 1369 | - </isNotEmpty> | |
| 1370 | - | |
| 1371 | - ORDER BY a.SORT_ORDR DESC, NTT_NO ASC | |
| 1372 | - LIMIT 10 | |
| 1373 | - </select> | |
| 1374 | - | |
| 1375 | - <select id="BBSManageDAO.selectBoardHstList" parameterClass="BoardChgHst" resultMap="boardChgHstList" > | |
| 1376 | - <![CDATA[ | |
| 1377 | - SELECT | |
| 1378 | - a.NTT_ID | |
| 1379 | - ,a.BBS_ID | |
| 1380 | - ,b.BBS_NM | |
| 1381 | - ,a.HIST_ID | |
| 1382 | - ,a.HIST_SE | |
| 1383 | - ,a.NTT_SJ | |
| 1384 | - ,a.NTT_CN | |
| 1385 | - ,a.FRST_REGISTER_NM | |
| 1386 | - ,a.FRST_REGIST_PNTTM | |
| 1387 | - ,a.FRST_REGISTER_ID | |
| 1388 | - ,a.NTCR_IP | |
| 1389 | - FROM LETTNBBSCHGHST a | |
| 1390 | - LEFT OUTER JOIN LETTNBBSMASTER b | |
| 1391 | - ON a.BBS_ID = b.BBS_ID | |
| 1392 | - ]]> | |
| 1393 | - WHERE 1=1 | |
| 1394 | - <isEqual prepend="AND" property="searchCnd" compareValue="0"> | |
| 1395 | - <![CDATA[ a.NTT_SJ LIKE CONCAT ('%', #searchWrd#,'%') ]]> | |
| 1396 | - </isEqual> | |
| 1397 | - <isEqual prepend="AND" property="searchCnd" compareValue="1"> | |
| 1398 | - <![CDATA[ a.NTT_CN LIKE CONCAT ('%', #searchWrd#,'%') ]]> | |
| 1399 | - </isEqual> | |
| 1400 | - <isEqual prepend="AND" property="searchCnd" compareValue="2"> | |
| 1401 | - <![CDATA[ a.FRST_REGISTER_NM LIKE CONCAT ('%', #searchWrd#,'%') ]]> | |
| 1402 | - </isEqual> | |
| 1403 | - <isNotEqual prepend="AND" property="strNttId" compareValue="0"> | |
| 1404 | - <![CDATA[ a.NTT_ID LIKE CONCAT ('%', #strNttId#,'%') ]]> | |
| 1405 | - </isNotEqual> | |
| 1406 | - <isNotEmpty prepend="AND" property="bbsNm"> | |
| 1407 | - <![CDATA[ b.BBS_NM LIKE CONCAT ('%', #bbsNm#,'%') ]]> | |
| 1408 | - </isNotEmpty> | |
| 1409 | - <![CDATA[ | |
| 1410 | - ORDER BY a.FRST_REGIST_PNTTM DESC | |
| 1411 | - LIMIT #recordCountPerPage# OFFSET #firstIndex# | |
| 1412 | - ]]> | |
| 1413 | - </select> | |
| 1414 | - | |
| 1415 | - <select id="BBSManageDAO.selectBoardHstCnt" parameterClass="BoardChgHst" resultClass="java.lang.Integer" > | |
| 1416 | - <![CDATA[ | |
| 1417 | - SELECT | |
| 1418 | - COUNT(a.NTT_ID) | |
| 1419 | - FROM LETTNBBSCHGHST a | |
| 1420 | - LEFT OUTER JOIN LETTNBBSMASTER b | |
| 1421 | - ON a.BBS_ID = b.BBS_ID | |
| 1422 | - WHERE 1=1 | |
| 1423 | - ]]> | |
| 1424 | - <isEqual prepend="AND" property="searchCnd" compareValue="0"> | |
| 1425 | - a.NTT_SJ LIKE CONCAT ('%', #searchWrd#,'%') | |
| 1426 | - </isEqual> | |
| 1427 | - <isEqual prepend="AND" property="searchCnd" compareValue="1"> | |
| 1428 | - a.NTT_CN LIKE CONCAT ('%', #searchWrd#,'%') | |
| 1429 | - </isEqual> | |
| 1430 | - <isEqual prepend="AND" property="searchCnd" compareValue="2"> | |
| 1431 | - a.FRST_REGISTER_NM LIKE CONCAT ('%', #searchWrd#,'%') | |
| 1432 | - </isEqual> | |
| 1433 | - <isNotEqual prepend="AND" property="strNttId" compareValue="0"> | |
| 1434 | - a.NTT_ID LIKE CONCAT ('%', #strNttId#,'%') | |
| 1435 | - </isNotEqual> | |
| 1436 | - <isNotEmpty prepend="AND" property="bbsNm"> | |
| 1437 | - b.BBS_NM LIKE CONCAT ('%', #bbsNm#,'%') | |
| 1438 | - </isNotEmpty> | |
| 1439 | - </select> | |
| 1440 | - | |
| 1441 | - <insert id="BBSManageDAO.insertBoardHst" parameterClass="BoardChgHst" > | |
| 1442 | - <![CDATA[ | |
| 1443 | - INSERT INTO LETTNBBSCHGHST ( | |
| 1444 | - NTT_ID | |
| 1445 | - ,BBS_ID | |
| 1446 | - ,HIST_ID | |
| 1447 | - ,HIST_SE | |
| 1448 | - ,NTT_SJ | |
| 1449 | - ,NTT_CN | |
| 1450 | - ,FRST_REGISTER_NM | |
| 1451 | - ,FRST_REGIST_PNTTM | |
| 1452 | - ,FRST_REGISTER_ID | |
| 1453 | - ,NTCR_IP | |
| 1454 | - ) values( | |
| 1455 | - #nttId# | |
| 1456 | - ,#bbsId# | |
| 1457 | - ,#histId# | |
| 1458 | - ,#histSe# | |
| 1459 | - ,#nttSj# | |
| 1460 | - ,#nttCn# | |
| 1461 | - ,#frstRegisterNm# | |
| 1462 | - ,SYSDATE() | |
| 1463 | - ,#frstRegisterId# | |
| 1464 | - ,#ntcrIp# | |
| 1465 | - ) | |
| 1466 | - ]]> | |
| 1467 | - </insert> | |
| 1468 | - | |
| 1469 | - <select id="BBSManageDAO.selectBoardChgHstId" parameterClass="BoardChgHst" resultClass="java.lang.Integer"> | |
| 1470 | - <![CDATA[ | |
| 1471 | - SELECT IFNULL(MAX(HIST_ID),0)+1 AS HIST_ID | |
| 1472 | - FROM LETTNBBSCHGHST | |
| 1473 | - WHERE NTT_ID = #nttId# | |
| 1474 | - AND BBS_ID = #bbsId# | |
| 1475 | - ]]> | |
| 1476 | - </select> | |
| 1477 | - | |
| 1478 | - <select id="BBSManageDAO.selectBoardChgHst" parameterClass="BoardChgHst" resultMap="boardChgHstList" > | |
| 1479 | - <![CDATA[ | |
| 1480 | - SELECT | |
| 1481 | - a.NTT_ID | |
| 1482 | - ,a.BBS_ID | |
| 1483 | - ,b.BBS_NM | |
| 1484 | - ,a.HIST_ID | |
| 1485 | - ,a.HIST_SE | |
| 1486 | - ,a.NTT_SJ | |
| 1487 | - ,a.NTT_CN | |
| 1488 | - ,a.FRST_REGISTER_NM | |
| 1489 | - ,a.FRST_REGIST_PNTTM | |
| 1490 | - ,a.FRST_REGISTER_ID | |
| 1491 | - ,a.NTCR_IP | |
| 1492 | - FROM LETTNBBSCHGHST a | |
| 1493 | - LEFT OUTER JOIN LETTNBBSMASTER b | |
| 1494 | - ON a.BBS_ID = b.BBS_ID | |
| 1495 | - WHERE a.NTT_ID = #nttId# | |
| 1496 | - AND a.BBS_ID = #bbsId# | |
| 1497 | - AND a.HIST_ID = #histId# | |
| 1498 | - ]]> | |
| 1499 | - </select> | |
| 1500 | - | |
| 1501 | - <select id="BBSManageDAO.selectMainBoardListN" parameterClass="BoardVO" resultClass="BoardVO" > | |
| 1502 | - SELECT lettnbbs_a.NTT_ID nttId, | |
| 1503 | - lettnbbs_a.BBS_ID bbsId, | |
| 1504 | - lettnbbs_a.NTT_SJ nttSj, | |
| 1505 | - lettnbbs_a.NTT_CN nttCn, | |
| 1506 | - DATE_FORMAT(lettnbbs_a.FRST_REGIST_PNTTM , '%Y-%m-%d') frstRegisterPnttm, | |
| 1507 | - 'N' replyAt /* 미답변 */ | |
| 1508 | - FROM | |
| 1509 | - ( SELECT a.* FROM LETTNBBS a INNER JOIN LETTNBBSMASTER b | |
| 1510 | - <isNotEmpty property="emplyrId"> | |
| 1511 | - INNER JOIN LETTNBBSMNG C | |
| 1512 | - ON B.BBS_ID = C.BBS_ID | |
| 1513 | - </isNotEmpty> | |
| 1514 | - WHERE a.PARNTSCTT_NO = 0 | |
| 1515 | - and a.BBS_ID = b.BBS_ID | |
| 1516 | - AND b.BBS_TY_CODE = 'BBST02' /* 신고게시판 */ | |
| 1517 | - AND a.USE_AT = 'Y' | |
| 1518 | - <isNotEmpty property="emplyrId"> | |
| 1519 | - AND C.EMPLYR_ID = #emplyrId# | |
| 1520 | - </isNotEmpty> | |
| 1521 | - ) lettnbbs_a | |
| 1522 | - LEFT JOIN | |
| 1523 | - ( SELECT PARNTSCTT_NO , a.USE_AT | |
| 1524 | - FROM LETTNBBS a INNER JOIN LETTNBBSMASTER b | |
| 1525 | - WHERE a.PARNTSCTT_NO != 0 | |
| 1526 | - and a.BBS_ID = b.bbs_id | |
| 1527 | - AND b.BBS_TY_CODE = 'BBST02' /* 신고게시판 */ | |
| 1528 | - AND b.USE_AT = 'Y' | |
| 1529 | - GROUP BY PARNTSCTT_NO , USE_AT | |
| 1530 | - HAVING a.USE_AT = 'Y' ) lettnbbs_b | |
| 1531 | - ON lettnbbs_a.NTT_ID = lettnbbs_b.PARNTSCTT_NO | |
| 1532 | - WHERE lettnbbs_a.USE_AT = 'Y' | |
| 1533 | - AND lettnbbs_a.ANSWER_AT = 'N' | |
| 1534 | - AND lettnbbs_b.PARNTSCTT_NO IS NULL | |
| 1535 | - ORDER BY lettnbbs_a.NTT_ID DESC | |
| 1536 | - LIMIT #recordCountPerPage# OFFSET #firstIndex# | |
| 1537 | - </select> | |
| 1538 | - | |
| 1539 | - <select id="BBSManageDAO.selectMainBoardListY" parameterClass="BoardVO" resultClass="BoardVO" > | |
| 1540 | - SELECT lettnbbs_b.NTT_ID nttId, | |
| 1541 | - lettnbbs_b.BBS_ID bbsId, | |
| 1542 | - lettnbbs_b.NTT_SJ nttSj, | |
| 1543 | - lettnbbs_b.NTT_CN nttCn, | |
| 1544 | - DATE_FORMAT(lettnbbs_b.FRST_REGIST_PNTTM , '%Y-%m-%d') frstRegisterPnttm, | |
| 1545 | - 'Y' replyAt /* 답변 */ | |
| 1546 | - FROM | |
| 1547 | - (SELECT | |
| 1548 | - PARNTSCTT_NO | |
| 1549 | - FROM | |
| 1550 | - LETTNBBS a inner join LETTNBBSMASTER b | |
| 1551 | - on a.BBS_ID = b.BBS_ID | |
| 1552 | - <isNotEmpty property="emplyrId"> | |
| 1553 | - INNER JOIN LETTNBBSMNG C | |
| 1554 | - ON B.BBS_ID = C.BBS_ID | |
| 1555 | - </isNotEmpty> | |
| 1556 | - WHERE 1=1 | |
| 1557 | - AND a.USE_AT = 'Y' | |
| 1558 | - AND b.BBS_TY_CODE = 'BBST02' | |
| 1559 | - AND a.PARNTSCTT_NO !=0 | |
| 1560 | - <isNotEmpty property="emplyrId"> | |
| 1561 | - AND C.EMPLYR_ID = #emplyrId# | |
| 1562 | - </isNotEmpty> | |
| 1563 | - LIMIT 5 ) | |
| 1564 | - lettnbbs_a INNER JOIN LETTNBBS lettnbbs_b | |
| 1565 | - on lettnbbs_a.PARNTSCTT_NO = lettnbbs_b.NTT_ID | |
| 1566 | - LIMIT #recordCountPerPage# OFFSET #firstIndex# | |
| 1567 | - </select> | |
| 1568 | - | |
| 1569 | - | |
| 1570 | - <select id="BBSManageDAO.selectMainBoardRecent" parameterClass="BoardVO" resultClass="BoardVO" > | |
| 1571 | - SELECT | |
| 1572 | - b.BBS_NM bbsNm , | |
| 1573 | - a.NTT_SJ nttSj, | |
| 1574 | - a.BBS_ID bbsId, | |
| 1575 | - a.NTT_ID nttId, | |
| 1576 | - DATE_FORMAT(a.FRST_REGIST_PNTTM , '%Y-%m-%d') frstRegisterPnttm | |
| 1577 | - FROM | |
| 1578 | - LETTNBBS a INNER JOIN LETTNBBSMASTER b | |
| 1579 | - ON a.BBS_ID = b.BBS_ID | |
| 1580 | - <isNotEmpty property="emplyrId"> | |
| 1581 | - INNER JOIN LETTNBBSMNG C | |
| 1582 | - ON B.BBS_ID = C.BBS_ID | |
| 1583 | - </isNotEmpty> | |
| 1584 | - WHERE 1=1 | |
| 1585 | - AND a.USE_AT = 'Y' /* 사용중 */ | |
| 1586 | - AND b.BBS_TY_CODE != 'BBST02' /*신고게시판 제외 */ | |
| 1587 | - AND a.PARNTSCTT_NO = 0 /* 원글 */ | |
| 1588 | - <isNotEmpty property="emplyrId"> | |
| 1589 | - AND C.EMPLYR_ID = #emplyrId# | |
| 1590 | - </isNotEmpty> | |
| 1591 | - ORDER BY A.NTT_ID DESC | |
| 1592 | - LIMIT #recordCountPerPage# OFFSET #firstIndex# | |
| 1593 | - </select> | |
| 1594 | - | |
| 1595 | - <update id="BBSManageDAO.updateMainPolaImg" parameterClass="Board"> | |
| 1596 | - <![CDATA[ | |
| 1597 | - UPDATE LETTCCMMNDETAILCODE SET | |
| 1598 | - CODE_NM = #nttId# | |
| 1599 | - WHERE CODE_ID = 'ITN005' | |
| 1600 | - AND CODE = 'BBSP01' | |
| 1601 | - ]]> | |
| 1602 | - </update> | |
| 1603 | - | |
| 1604 | - | |
| 1605 | - <select id="BBSManageDAO.selectBoardTotalSearch" parameterClass="searchTotalVO" resultClass="searchTotalVO" > | |
| 1606 | - SELECT COUNT(1) OVER() AS cnt | |
| 1607 | - ,b.BBS_NM as bbsNm | |
| 1608 | - ,a.BBS_ID as bbsId | |
| 1609 | - ,a.NTT_ID as nttId | |
| 1610 | - ,a.NTT_SJ as nttSj | |
| 1611 | - ,a.NTT_CN as nttCn | |
| 1612 | - ,a.FRST_REGIST_PNTTM as frstRegisterPnttm | |
| 1613 | - <![CDATA[ | |
| 1614 | - ,CONCAT('/web/cop/bbs/selectBoardArticle.do?bbsId=', a.BBS_ID, '&nttId=', a.NTT_ID) AS URL | |
| 1615 | - ]]> | |
| 1616 | - ,C.MENU_NM as menuNm | |
| 1617 | - ,getMenuCours(C.MENU_NO) AS menuCours | |
| 1618 | - ,get1DepthMenu(C.MENU_NO) AS category | |
| 1619 | - FROM LETTNBBS a | |
| 1620 | - INNER JOIN LETTNBBSMASTER b | |
| 1621 | - ON a.BBS_ID = b.BBS_ID | |
| 1622 | - inner JOIN ( | |
| 1623 | - SELECT A.PROGRM_BBS_ID, B.MENU_NO, B.MENU_NM, B.MENU_USER_TYPE | |
| 1624 | - FROM LETTNPROGRMLIST A | |
| 1625 | - INNER JOIN LETTNMENUINFO B | |
| 1626 | - ON A.PROGRM_FILE_NM = B.PROGRM_FILE_NM | |
| 1627 | - INNER JOIN LETTNMENUCREATDTLS C | |
| 1628 | - ON B.MENU_NO = C.MENU_NO | |
| 1629 | - AND C.AUTHOR_CODE = 'ROLE_ANONYMOUS' | |
| 1630 | - AND C.USE_YN = 'Y' | |
| 1631 | - ) C | |
| 1632 | - ON a.BBS_ID = c.PROGRM_BBS_ID | |
| 1633 | - LEFT OUTER JOIN | |
| 1634 | - (SELECT a.ATCH_FILE_ID, COUNT(b.FILE_SN) as ATCH_FILE_CNT, MIN(b.FILE_SN) AS FILE_SN | |
| 1635 | - FROM LETTNFILE a | |
| 1636 | - LEFT OUTER JOIN LETTNFILEDETAIL b | |
| 1637 | - ON a.ATCH_FILE_ID = b.ATCH_FILE_ID | |
| 1638 | - WHERE a.USE_AT = 'Y' | |
| 1639 | - GROUP BY a.ATCH_FILE_ID) d | |
| 1640 | - ON a.ATCH_FILE_ID = d.ATCH_FILE_ID | |
| 1641 | - WHERE 1=1 | |
| 1642 | - and a.USE_AT = 'Y' | |
| 1643 | - AND b.BBS_TY_CODE NOT IN ('BBST02', 'BBST03') | |
| 1644 | - AND b.USE_AT = 'Y' | |
| 1645 | - AND b.VIEW_AUTH = 'ROLE_ANONYMOUS' | |
| 1646 | - <isEqual prepend="AND" property="searchCnd" compareValue="0"> | |
| 1647 | - a.NTT_SJ LIKE CONCAT ('%', #searchWrd#,'%') | |
| 1648 | - </isEqual> | |
| 1649 | - <isEqual prepend="AND" property="searchCnd" compareValue="1"> | |
| 1650 | - a.NTT_CN LIKE CONCAT ('%', #searchWrd#,'%') | |
| 1651 | - </isEqual> | |
| 1652 | - <isEqual prepend="AND" property="searchCnd" compareValue="2"> | |
| 1653 | - a.NTCR_NM LIKE CONCAT ('%', #searchWrd#,'%') | |
| 1654 | - </isEqual> | |
| 1655 | - <isEqual prepend="AND" property="searchCnd" compareValue="3"> | |
| 1656 | - ( a.NTT_SJ LIKE CONCAT('%' , #searchWrd#, '%') OR | |
| 1657 | - a.NTT_CN LIKE CONCAT('%' , #searchWrd#, '%') ) | |
| 1658 | - </isEqual> | |
| 1659 | - LIMIT #recordCountPerPage# OFFSET #firstIndex# | |
| 1660 | - </select> | |
| 1661 | - | |
| 1662 | - | |
| 1663 | - <select id="BBSManageDAO.selectBoardTotalSearchCnt" parameterClass="searchTotalVO" resultClass="java.lang.Integer" > | |
| 1664 | - SELECT | |
| 1665 | - COUNT(a.BBS_ID) as cnt | |
| 1666 | - FROM LETTNBBS a | |
| 1667 | - INNER JOIN LETTNBBSMASTER b | |
| 1668 | - ON a.BBS_ID = b.BBS_ID | |
| 1669 | - inner JOIN ( | |
| 1670 | - SELECT A.PROGRM_BBS_ID, B.MENU_NO, B.MENU_NM, B.MENU_USER_TYPE | |
| 1671 | - FROM LETTNPROGRMLIST A | |
| 1672 | - INNER JOIN LETTNMENUINFO B | |
| 1673 | - ON A.PROGRM_FILE_NM = B.PROGRM_FILE_NM | |
| 1674 | - INNER JOIN LETTNMENUCREATDTLS C | |
| 1675 | - ON B.MENU_NO = C.MENU_NO | |
| 1676 | - AND C.AUTHOR_CODE = 'ROLE_ANONYMOUS' | |
| 1677 | - AND C.USE_YN = 'Y' | |
| 1678 | - ) C | |
| 1679 | - ON a.BBS_ID = c.PROGRM_BBS_ID | |
| 1680 | - LEFT OUTER JOIN | |
| 1681 | - (SELECT a.ATCH_FILE_ID, COUNT(b.FILE_SN) as ATCH_FILE_CNT, MIN(b.FILE_SN) AS FILE_SN | |
| 1682 | - FROM LETTNFILE a | |
| 1683 | - LEFT OUTER JOIN LETTNFILEDETAIL b | |
| 1684 | - ON a.ATCH_FILE_ID = b.ATCH_FILE_ID | |
| 1685 | - WHERE a.USE_AT = 'Y' | |
| 1686 | - GROUP BY a.ATCH_FILE_ID) d | |
| 1687 | - ON a.ATCH_FILE_ID = d.ATCH_FILE_ID | |
| 1688 | - WHERE 1=1 | |
| 1689 | - and a.USE_AT = 'Y' | |
| 1690 | - AND b.BBS_TY_CODE NOT IN ('BBST02', 'BBST03') | |
| 1691 | - AND b.USE_AT = 'Y' | |
| 1692 | - AND b.VIEW_AUTH = 'ROLE_ANONYMOUS' | |
| 1693 | - <isEqual prepend="AND" property="searchCnd" compareValue="0"> | |
| 1694 | - a.NTT_SJ LIKE CONCAT ('%', #searchWrd#,'%') | |
| 1695 | - </isEqual> | |
| 1696 | - <isEqual prepend="AND" property="searchCnd" compareValue="1"> | |
| 1697 | - a.NTT_CN LIKE CONCAT ('%', #searchWrd#,'%') | |
| 1698 | - </isEqual> | |
| 1699 | - <isEqual prepend="AND" property="searchCnd" compareValue="2"> | |
| 1700 | - a.NTCR_NM LIKE CONCAT ('%', #searchWrd#,'%') | |
| 1701 | - </isEqual> | |
| 1702 | - <isEqual prepend="AND" property="searchCnd" compareValue="3"> | |
| 1703 | - ( a.NTT_SJ LIKE CONCAT('%' , #searchWrd#, '%') OR | |
| 1704 | - a.NTT_CN LIKE CONCAT('%' , #searchWrd#, '%') ) | |
| 1705 | - </isEqual> | |
| 1706 | - </select> | |
| 1707 | - | |
| 1708 | - <select id="BBSManageDAO.selectAdminMainBoard" parameterClass="BoardVO" resultClass="BoardVO" > | |
| 1709 | - SELECT | |
| 1710 | - COUNT(1) OVER() AS totCnt | |
| 1711 | - , b.BBS_NM AS bbsNm | |
| 1712 | - , a.NTT_SJ AS nttSj | |
| 1713 | - , a.BBS_ID AS bbsId | |
| 1714 | - , a.NTT_ID AS nttId | |
| 1715 | - , a.NTCR_ID AS ntcrId | |
| 1716 | - , a.NTCR_NM AS ntcrNm | |
| 1717 | - /*, (select EMPLYR_ID from lettnemplyrinfo c where a.FRST_REGISTER_ID = c.ESNTL_ID) AS frstRegisterId*/ | |
| 1718 | - , a.NTCR_NM AS frstRegisterId | |
| 1719 | - , a.FRST_REGIST_PNTTM AS frstRegisterPnttm | |
| 1720 | - FROM | |
| 1721 | - lettnbbs a | |
| 1722 | - INNER JOIN lettnbbsmaster b | |
| 1723 | - ON a.BBS_ID = b.BBS_ID | |
| 1724 | - WHERE 1=1 | |
| 1725 | - AND a.USE_AT = 'Y' | |
| 1726 | - <isEqual prepend="AND" property="searchCnd" compareValue="1"> | |
| 1727 | - <isNotEmpty property="searchWrd"> | |
| 1728 | - <![CDATA[ ( a.NTT_SJ LIKE CONCAT ('%', #searchWrd#,'%') OR a.NTT_CN LIKE CONCAT ('%', #searchWrd#,'%') ) ]]> | |
| 1729 | - </isNotEmpty> | |
| 1730 | - </isEqual> | |
| 1731 | - ORDER BY 1=1 | |
| 1732 | - <isNotEmpty property="searchSortCnd"> | |
| 1733 | - ,$searchSortCnd$ | |
| 1734 | - </isNotEmpty> | |
| 1735 | - <isNotEmpty property="searchSortOrd"> | |
| 1736 | - $searchSortOrd$ | |
| 1737 | - </isNotEmpty> | |
| 1738 | - LIMIT #recordCountPerPage# OFFSET #firstIndex# | |
| 1739 | - </select> | |
| 1740 | - | |
| 1741 | - <select id="BBSManageDAO.selectAdminMainBoardByDash" parameterClass="BoardVO" resultClass="BoardVO" > | |
| 1742 | - SELECT | |
| 1743 | - COUNT(1) OVER() AS totCnt | |
| 1744 | - , b.BBS_NM AS bbsNm | |
| 1745 | - , a.NTT_SJ AS nttSj | |
| 1746 | - , a.BBS_ID AS bbsId | |
| 1747 | - , a.NTT_ID AS nttId | |
| 1748 | - , a.NTCR_ID AS ntcrId | |
| 1749 | - , a.NTCR_NM AS ntcrNm | |
| 1750 | - , a.NTCR_NM AS frstRegisterId | |
| 1751 | - , a.FRST_REGIST_PNTTM AS frstRegisterPnttm | |
| 1752 | - , (SELECT IF (COUNT(0) > 0, 'Y', 'N') FROM LETTNCOMMENT SL WHERE SL.NTT_ID = a.NTT_ID AND SL.USE_AT = 'Y' LIMIT 1) replyYn | |
| 1753 | - FROM | |
| 1754 | - lettnbbs a | |
| 1755 | - INNER JOIN lettnbbsmaster b | |
| 1756 | - ON a.BBS_ID = b.BBS_ID | |
| 1757 | - WHERE 1=1 | |
| 1758 | - AND a.USE_AT = 'Y' | |
| 1759 | - AND b.DASHBD_CNT_YN = 'Y' | |
| 1760 | - ORDER BY 1=1 | |
| 1761 | - <isNotEmpty property="searchSortCnd"> | |
| 1762 | - ,$searchSortCnd$ | |
| 1763 | - </isNotEmpty> | |
| 1764 | - <isNotEmpty property="searchSortOrd"> | |
| 1765 | - $searchSortOrd$ | |
| 1766 | - </isNotEmpty> | |
| 1767 | - LIMIT #recordCountPerPage# OFFSET #firstIndex# | |
| 1768 | - </select> | |
| 1769 | - | |
| 1770 | - <select id="BBSManageDAO.selectAdminMainNewBoardCnt" parameterClass="BoardVO" resultClass="java.lang.Integer" > | |
| 1771 | - <![CDATA[ | |
| 1772 | - SELECT COUNT(*) FROM LETTNBBS A | |
| 1773 | - INNER JOIN LETTNBBSMASTER B | |
| 1774 | - ON A.BBS_ID = B.BBS_ID | |
| 1775 | - WHERE A.USE_AT = 'Y' | |
| 1776 | - AND B.DASHBD_CNT_YN = 'Y' | |
| 1777 | - AND DATE_FORMAT( A.FRST_REGIST_PNTTM , '%Y-%m-%d' ) = DATE_FORMAT(NOW(), '%Y-%m-%d') | |
| 1778 | - AND A.NTT_ID NOT IN (SELECT NTT_ID FROM LETTNCOMMENT WHERE USE_AT = 'Y') | |
| 1779 | - ]]> | |
| 1780 | - </select> | |
| 1781 | - | |
| 1782 | - <select id="BBSManageDAO.selectAdminMainYdaBoardCnt" parameterClass="BoardVO" resultClass="java.lang.Integer" > | |
| 1783 | - <![CDATA[ | |
| 1784 | - SELECT COUNT(*) FROM LETTNBBS A | |
| 1785 | - INNER JOIN LETTNBBSMASTER B | |
| 1786 | - ON A.BBS_ID = B.BBS_ID | |
| 1787 | - WHERE A.USE_AT = 'Y' | |
| 1788 | - AND B.DASHBD_CNT_YN = 'Y' | |
| 1789 | - AND DATE_FORMAT( A.FRST_REGIST_PNTTM , '%Y-%m-%d' ) = DATE_FORMAT(NOW() - INTERVAL 1 DAY, '%Y-%m-%d') | |
| 1790 | - ]]> | |
| 1791 | - </select> | |
| 1792 | - | |
| 1793 | - <select id="BBSManageDAO.selectBoardAnswerList" parameterClass="BoardVO" resultClass="BoardVO" > | |
| 1794 | - <![CDATA[ | |
| 1795 | - SELECT | |
| 1796 | - a.NTT_SJ AS nttSj, | |
| 1797 | - a.NTCR_ID AS ntcrId, | |
| 1798 | - a.NTCR_NM AS ntcrNm, | |
| 1799 | - a.NTT_NO AS nttNo, | |
| 1800 | - a.NTT_CN AS nttCn, | |
| 1801 | - a.USER_TY_CD AS userTyCd, | |
| 1802 | - a.PASSWORD AS password, | |
| 1803 | - a.FRST_REGISTER_ID AS frstRegisterId, | |
| 1804 | - DATE_FORMAT(a.FRST_REGIST_PNTTM, '%Y-%m-%d') as frstRegistPnttm , | |
| 1805 | - a.RDCNT AS rdCt, | |
| 1806 | - a.ATCH_FILE_ID AS atchFileId, | |
| 1807 | - a.BBS_ID AS bbsId, | |
| 1808 | - a.NTT_ID AS nttId, | |
| 1809 | - a.SECRET_AT AS secretAt, | |
| 1810 | - a.MBL_DN AS mblDn, | |
| 1811 | - a.LINK_URL AS linkUrl, | |
| 1812 | - (SELECT COUNT(0) FROM LETTNFILEDETAIL WHERE ATCH_FILE_ID = a.THUMB_ATCH_FILE_ID) AS thumbAtchFileCnt | |
| 1813 | - ,(SELECT COUNT(0) | |
| 1814 | - FROM LETTNBBS | |
| 1815 | - WHERE PARNTSCTT_NO = a.NTT_ID | |
| 1816 | - AND USE_AT = 'Y' | |
| 1817 | - ) as answerCnt | |
| 1818 | - FROM | |
| 1819 | - LETTNBBS a | |
| 1820 | - LEFT OUTER JOIN | |
| 1821 | - COMVNUSERMASTER b | |
| 1822 | - ON a.FRST_REGISTER_ID = b.ESNTL_ID | |
| 1823 | - LEFT OUTER JOIN | |
| 1824 | - LETTNBBSMASTER c | |
| 1825 | - ON a.BBS_ID = c.BBS_ID | |
| 1826 | - LEFT OUTER JOIN | |
| 1827 | - (SELECT CODE_ID, CODE, CODE_NM FROM | |
| 1828 | - LETTCCMMNDETAILCODE WHERE CODE_ID = 'ITN003' AND USE_AT='Y') e | |
| 1829 | - ON a.USER_TY_CD = e.CODE | |
| 1830 | - LEFT OUTER JOIN | |
| 1831 | - (SELECT CODE_ID, CODE, CODE_NM FROM | |
| 1832 | - LETTCCMMNDETAILCODE WHERE CODE_ID = 'ITN004' AND USE_AT='Y') f | |
| 1833 | - ON a.REPORT_TY_CD = f.CODE | |
| 1834 | - LEFT JOIN ( | |
| 1835 | - SELECT CODE_NM , CODE FROM LETTCCMMNDETAILCODE WHERE USE_AT = 'Y' | |
| 1836 | - AND CODE_ID = 'ITN015' | |
| 1837 | - ) g ON a.SE_CD =g.CODE | |
| 1838 | - WHERE a.BBS_ID = #bbsId# | |
| 1839 | - AND a.PARNTSCTT_NO = #nttId# | |
| 1840 | - AND a.USE_AT = 'Y' | |
| 1841 | - ]]> | |
| 1842 | - </select> | |
| 1843 | - | |
| 1844 | - | |
| 1845 | - <select id="BBSManageDAO.selectBbsTabIdByPubUrl" parameterClass="BoardVO" resultClass="BoardVO" > | |
| 1846 | - SELECT BBS_ID AS bbsId FROM LETTNBBS | |
| 1847 | - WHERE PUB_LINK =#bbsId# | |
| 1848 | - </select> | |
| 1849 | - | |
| 1850 | - <select id="BBSManageDAO.selectBoardArticleListWebEvent" parameterClass="BoardVO" resultMap="boardList2" > | |
| 1851 | - <![CDATA[ | |
| 1852 | - SELECT A.*, | |
| 1853 | - IF(A.NTT_ID = A.ANSWER_PR_ID, A.ANSWER_ID, 0) as ANSWER_NTT_ID | |
| 1854 | - FROM ( | |
| 1855 | - SELECT | |
| 1856 | - a.NTT_ID, a.NTT_SJ, SUBSTR(a.NTT_CN, 1, 2000) AS NTT_CN, a.FRST_REGISTER_ID, a.NTCR_NM as FRST_REGISTER_NM, | |
| 1857 | - DATE_FORMAT(a.FRST_REGIST_PNTTM, '%Y-%m-%d') as FRST_REGIST_PNTTM, | |
| 1858 | - a.RDCNT, a.PARNTSCTT_NO, a.ANSWER_AT, a.ANSWER_LC, a.USE_AT, a.ATCH_FILE_ID, | |
| 1859 | - a.BBS_ID, a.NTCE_BGNDE, a.NTCE_ENDDE, a.NOTICE_AT, a.SECRET_AT, | |
| 1860 | - IFNULL(c.ATCH_FILE_CNT, 0) AS ATCH_FILE_CNT, IFNULL(c.FILE_SN, 0) AS FILE_SN, | |
| 1861 | - a.REPORT_TY_CD, d.CODE_NM as REPORT_TY_NM, | |
| 1862 | - CASE | |
| 1863 | - WHEN DATE(SUBDATE(NOW(), | |
| 1864 | - INTERVAL 7 DAY)) < DATE(FRST_REGIST_PNTTM) THEN 'Y' | |
| 1865 | - ELSE 'N' | |
| 1866 | - END AS NEW_FLAG, | |
| 1867 | - LEAD(a.NTT_ID) OVER(ORDER BY a.SORT_ORDR DESC, a.NTT_NO ASC) as ANSWER_ID, | |
| 1868 | - LEAD(a.PARNTSCTT_NO) OVER(ORDER BY a.SORT_ORDR DESC, a.NTT_NO ASC) as ANSWER_PR_ID, | |
| 1869 | - a.SORT_ORDR, | |
| 1870 | - a.NTT_NO, | |
| 1871 | - IFNULL(e.ANSWER_CNT, 0) as ANSWER_CNT, | |
| 1872 | - /** (SELECT COUNT(*) FROM | |
| 1873 | - LETTNBBS WHERE PARNTSCTT_NO = A.NTT_ID | |
| 1874 | - AND USE_AT = 'Y' | |
| 1875 | - ) as ANSWER_CNT, */ | |
| 1876 | - PUB_PERIOD, PUB_TIME, PUB_LINK, PUB_LOC, | |
| 1877 | - f.CODE SE_CD, f.CODE_NM as SE_CD_TXT , | |
| 1878 | - LAST_UPDT_PNTTM, | |
| 1879 | - BBS_NM | |
| 1880 | - FROM | |
| 1881 | - LETTNBBS a | |
| 1882 | - LEFT OUTER JOIN | |
| 1883 | - (SELECT a.ATCH_FILE_ID, COUNT(b.FILE_SN) as ATCH_FILE_CNT, MIN(b.FILE_SN) AS FILE_SN | |
| 1884 | - FROM LETTNFILE a | |
| 1885 | - LEFT OUTER JOIN LETTNFILEDETAIL b | |
| 1886 | - ON a.ATCH_FILE_ID = b.ATCH_FILE_ID | |
| 1887 | - WHERE a.USE_AT = 'Y' | |
| 1888 | - GROUP BY a.ATCH_FILE_ID) c | |
| 1889 | - ON a.ATCH_FILE_ID = c.ATCH_FILE_ID | |
| 1890 | - LEFT OUTER JOIN | |
| 1891 | - (SELECT CODE_ID, CODE, CODE_NM FROM | |
| 1892 | - LETTCCMMNDETAILCODE WHERE CODE_ID = 'ITN004' AND USE_AT='Y') d | |
| 1893 | - ON a.REPORT_TY_CD = d.CODE | |
| 1894 | - LEFT OUTER JOIN | |
| 1895 | - (SELECT NTT_ID, COUNT(ANSWER_NO) as ANSWER_CNT | |
| 1896 | - FROM LETTNCOMMENT | |
| 1897 | - WHERE BBS_ID = #bbsId# | |
| 1898 | - AND USE_AT = 'Y' | |
| 1899 | - GROUP BY BBS_ID, NTT_ID) e | |
| 1900 | - ON a.NTT_ID = e.NTT_ID | |
| 1901 | - LEFT JOIN ( | |
| 1902 | - SELECT CODE_NM , CODE FROM LETTCCMMNDETAILCODE WHERE USE_AT = 'Y' | |
| 1903 | - AND CODE_ID = 'ITN015' | |
| 1904 | - ) f ON a.SE_CD =f.CODE | |
| 1905 | - LEFT OUTER JOIN | |
| 1906 | - (SELECT BBS_ID, | |
| 1907 | - BBS_NM | |
| 1908 | - FROM lettnbbsmaster | |
| 1909 | - GROUP BY BBS_ID, | |
| 1910 | - BBS_NM | |
| 1911 | - ) | |
| 1912 | - g | |
| 1913 | - ON a.BBS_ID = g.BBS_ID | |
| 1914 | - WHERE a.BBS_ID = #bbsId# | |
| 1915 | - AND a.USE_AT = 'Y' | |
| 1916 | - ]]> | |
| 1917 | - <![CDATA[ | |
| 1918 | - AND ( | |
| 1919 | - ( | |
| 1920 | - NTCE_BGNDE IS NULL OR NTCE_BGNDE ='' | |
| 1921 | - ) | |
| 1922 | - OR | |
| 1923 | - ( | |
| 1924 | - DATE_FORMAT(now(), '%Y%m%d%H%i') >= NTCE_BGNDE AND DATE_FORMAT(now(), '%Y%m%d%H%i') <= NTCE_ENDDE | |
| 1925 | - ) | |
| 1926 | - ) | |
| 1927 | - ]]> | |
| 1928 | - <isEqual prepend="AND" property="searchCnd" compareValue=""> | |
| 1929 | - <![CDATA[ ( a.NTT_SJ LIKE CONCAT ('%', #searchWrd#,'%') OR a.NTT_CN LIKE CONCAT ('%', #searchWrd#,'%') ) ]]> | |
| 1930 | - </isEqual> | |
| 1931 | - <isEqual prepend="AND" property="searchCnd" compareValue="0"> | |
| 1932 | - <![CDATA[ a.NTT_SJ LIKE CONCAT ('%', #searchWrd#,'%') ]]> | |
| 1933 | - </isEqual> | |
| 1934 | - <isEqual prepend="AND" property="searchCnd" compareValue="1"> | |
| 1935 | - <![CDATA[ a.NTT_CN LIKE CONCAT ('%', #searchWrd#,'%') ]]> | |
| 1936 | - </isEqual> | |
| 1937 | - <isNotEqual property="adminSearchYn" compareValue="Y"> | |
| 1938 | - <isEqual prepend="AND" property="searchCnd" compareValue="2"> | |
| 1939 | - <![CDATA[ a.NTCR_NM LIKE CONCAT ('%', #searchWrd#,'%') ]]> | |
| 1940 | - </isEqual> | |
| 1941 | - </isNotEqual> | |
| 1942 | - <isEqual prepend="AND" property="adminSearchYn" compareValue="Y"> | |
| 1943 | - (a.FRST_REGISTER_ID IS NOT NULL AND a.FRST_REGISTER_ID != '') | |
| 1944 | - </isEqual> | |
| 1945 | - <isNotEmpty prepend="AND" property="mblDn"> | |
| 1946 | - <![CDATA[ a.MBL_DN = #mblDn# ]]> | |
| 1947 | - </isNotEmpty> | |
| 1948 | - <isNotEmpty prepend="AND" property="parntScttNo"> | |
| 1949 | - a.PARNTSCTT_NO = #parntScttNo# | |
| 1950 | - </isNotEmpty> | |
| 1951 | - <isNotEqual property="searchNttId" compareValue="0"> | |
| 1952 | - AND ( a.NTT_ID = #searchNttId# or a.PARNTSCTT_NO = #searchNttId#) | |
| 1953 | - </isNotEqual> | |
| 1954 | - <isNotEmpty property="searchBgnDe"> | |
| 1955 | - AND | |
| 1956 | - ( | |
| 1957 | - DATE(SUBSTRING(a.NTCE_BGNDE FROM 1 FOR 8)) BETWEEN DATE(#searchBgnDe#) AND DATE(#searchEndDe#) | |
| 1958 | - OR | |
| 1959 | - DATE(SUBSTRING(a.NTCE_ENDDE FROM 1 FOR 8)) BETWEEN DATE(#searchBgnDe#) AND DATE(#searchEndDe#) | |
| 1960 | - ) | |
| 1961 | - </isNotEmpty> | |
| 1962 | - <![CDATA[ | |
| 1963 | - ) A | |
| 1964 | - ORDER BY 1=1 | |
| 1965 | - ]]> | |
| 1966 | - <isNotEmpty property="searchSortCnd"> | |
| 1967 | - ,$searchSortCnd$ | |
| 1968 | - </isNotEmpty> | |
| 1969 | - <isNotEmpty property="searchSortOrd"> | |
| 1970 | - $searchSortOrd$ | |
| 1971 | - </isNotEmpty> | |
| 1972 | - , A.SORT_ORDR DESC, A.NTT_NO ASC | |
| 1973 | - LIMIT #recordCountPerPage# OFFSET #firstIndex# | |
| 1974 | - | |
| 1975 | - </select> | |
| 1976 | - | |
| 1977 | - <select id="BBSManageDAO.selectBoardArticleListWebEventEnd" parameterClass="BoardVO" resultMap="boardList2" > | |
| 1978 | - <![CDATA[ | |
| 1979 | - SELECT A.*, | |
| 1980 | - IF(A.NTT_ID = A.ANSWER_PR_ID, A.ANSWER_ID, 0) as ANSWER_NTT_ID | |
| 1981 | - FROM ( | |
| 1982 | - SELECT | |
| 1983 | - a.NTT_ID, a.NTT_SJ, SUBSTR(a.NTT_CN, 1, 2000) AS NTT_CN, a.FRST_REGISTER_ID, a.NTCR_NM as FRST_REGISTER_NM, | |
| 1984 | - DATE_FORMAT(a.FRST_REGIST_PNTTM, '%Y-%m-%d') as FRST_REGIST_PNTTM, | |
| 1985 | - a.RDCNT, a.PARNTSCTT_NO, a.ANSWER_AT, a.ANSWER_LC, a.USE_AT, a.ATCH_FILE_ID, | |
| 1986 | - a.BBS_ID, a.NTCE_BGNDE, a.NTCE_ENDDE, a.NOTICE_AT, a.SECRET_AT, | |
| 1987 | - IFNULL(c.ATCH_FILE_CNT, 0) AS ATCH_FILE_CNT, IFNULL(c.FILE_SN, 0) AS FILE_SN, | |
| 1988 | - a.REPORT_TY_CD, d.CODE_NM as REPORT_TY_NM, | |
| 1989 | - CASE | |
| 1990 | - WHEN DATE(SUBDATE(NOW(), | |
| 1991 | - INTERVAL 7 DAY)) < DATE(FRST_REGIST_PNTTM) THEN 'Y' | |
| 1992 | - ELSE 'N' | |
| 1993 | - END AS NEW_FLAG, | |
| 1994 | - LEAD(a.NTT_ID) OVER(ORDER BY a.SORT_ORDR DESC, a.NTT_NO ASC) as ANSWER_ID, | |
| 1995 | - LEAD(a.PARNTSCTT_NO) OVER(ORDER BY a.SORT_ORDR DESC, a.NTT_NO ASC) as ANSWER_PR_ID, | |
| 1996 | - a.SORT_ORDR, | |
| 1997 | - a.NTT_NO, | |
| 1998 | - IFNULL(e.ANSWER_CNT, 0) as ANSWER_CNT, | |
| 1999 | - /** (SELECT COUNT(*) FROM | |
| 2000 | - LETTNBBS WHERE PARNTSCTT_NO = A.NTT_ID | |
| 2001 | - AND USE_AT = 'Y' | |
| 2002 | - ) as ANSWER_CNT, */ | |
| 2003 | - PUB_PERIOD, PUB_TIME, PUB_LINK, PUB_LOC, | |
| 2004 | - f.CODE SE_CD, f.CODE_NM as SE_CD_TXT , | |
| 2005 | - LAST_UPDT_PNTTM, | |
| 2006 | - BBS_NM | |
| 2007 | - FROM | |
| 2008 | - LETTNBBS a | |
| 2009 | - LEFT OUTER JOIN | |
| 2010 | - (SELECT a.ATCH_FILE_ID, COUNT(b.FILE_SN) as ATCH_FILE_CNT, MIN(b.FILE_SN) AS FILE_SN | |
| 2011 | - FROM LETTNFILE a | |
| 2012 | - LEFT OUTER JOIN LETTNFILEDETAIL b | |
| 2013 | - ON a.ATCH_FILE_ID = b.ATCH_FILE_ID | |
| 2014 | - WHERE a.USE_AT = 'Y' | |
| 2015 | - GROUP BY a.ATCH_FILE_ID) c | |
| 2016 | - ON a.ATCH_FILE_ID = c.ATCH_FILE_ID | |
| 2017 | - LEFT OUTER JOIN | |
| 2018 | - (SELECT CODE_ID, CODE, CODE_NM FROM | |
| 2019 | - LETTCCMMNDETAILCODE WHERE CODE_ID = 'ITN004' AND USE_AT='Y') d | |
| 2020 | - ON a.REPORT_TY_CD = d.CODE | |
| 2021 | - LEFT OUTER JOIN | |
| 2022 | - (SELECT NTT_ID, COUNT(ANSWER_NO) as ANSWER_CNT | |
| 2023 | - FROM LETTNCOMMENT | |
| 2024 | - WHERE BBS_ID = #bbsId# | |
| 2025 | - AND USE_AT = 'Y' | |
| 2026 | - GROUP BY BBS_ID, NTT_ID) e | |
| 2027 | - ON a.NTT_ID = e.NTT_ID | |
| 2028 | - LEFT JOIN ( | |
| 2029 | - SELECT CODE_NM , CODE FROM LETTCCMMNDETAILCODE WHERE USE_AT = 'Y' | |
| 2030 | - AND CODE_ID = 'ITN015' | |
| 2031 | - ) f ON a.SE_CD =f.CODE | |
| 2032 | - LEFT OUTER JOIN | |
| 2033 | - (SELECT BBS_ID, | |
| 2034 | - BBS_NM | |
| 2035 | - FROM lettnbbsmaster | |
| 2036 | - GROUP BY BBS_ID, | |
| 2037 | - BBS_NM | |
| 2038 | - ) | |
| 2039 | - g | |
| 2040 | - ON a.BBS_ID = g.BBS_ID | |
| 2041 | - WHERE a.BBS_ID = #bbsId# | |
| 2042 | - AND a.USE_AT = 'Y' | |
| 2043 | - ]]> | |
| 2044 | - <![CDATA[ | |
| 2045 | - AND | |
| 2046 | - ( | |
| 2047 | - ( | |
| 2048 | - NTCE_BGNDE IS NULL OR NTCE_BGNDE ='' | |
| 2049 | - ) | |
| 2050 | - OR | |
| 2051 | - ( | |
| 2052 | - DATE_FORMAT(now(), '%Y%m%d%H%i') > NTCE_ENDDE | |
| 2053 | - ) | |
| 2054 | - ) | |
| 2055 | - ]]> | |
| 2056 | - <isEqual prepend="AND" property="searchCnd" compareValue=""> | |
| 2057 | - <![CDATA[ ( a.NTT_SJ LIKE CONCAT ('%', #searchWrd#,'%') OR a.NTT_CN LIKE CONCAT ('%', #searchWrd#,'%') ) ]]> | |
| 2058 | - </isEqual> | |
| 2059 | - <isEqual prepend="AND" property="searchCnd" compareValue="0"> | |
| 2060 | - <![CDATA[ a.NTT_SJ LIKE CONCAT ('%', #searchWrd#,'%') ]]> | |
| 2061 | - </isEqual> | |
| 2062 | - <isEqual prepend="AND" property="searchCnd" compareValue="1"> | |
| 2063 | - <![CDATA[ a.NTT_CN LIKE CONCAT ('%', #searchWrd#,'%') ]]> | |
| 2064 | - </isEqual> | |
| 2065 | - <isNotEqual property="adminSearchYn" compareValue="Y"> | |
| 2066 | - <isEqual prepend="AND" property="searchCnd" compareValue="2"> | |
| 2067 | - <![CDATA[ a.NTCR_NM LIKE CONCAT ('%', #searchWrd#,'%') ]]> | |
| 2068 | - </isEqual> | |
| 2069 | - </isNotEqual> | |
| 2070 | - <isEqual prepend="AND" property="adminSearchYn" compareValue="Y"> | |
| 2071 | - (a.FRST_REGISTER_ID IS NOT NULL AND a.FRST_REGISTER_ID != '') | |
| 2072 | - </isEqual> | |
| 2073 | - <isNotEmpty prepend="AND" property="mblDn"> | |
| 2074 | - <![CDATA[ a.MBL_DN = #mblDn# ]]> | |
| 2075 | - </isNotEmpty> | |
| 2076 | - <isNotEmpty prepend="AND" property="parntScttNo"> | |
| 2077 | - a.PARNTSCTT_NO = #parntScttNo# | |
| 2078 | - </isNotEmpty> | |
| 2079 | - <isNotEqual property="searchNttId" compareValue="0"> | |
| 2080 | - AND ( a.NTT_ID = #searchNttId# or a.PARNTSCTT_NO = #searchNttId#) | |
| 2081 | - </isNotEqual> | |
| 2082 | - <isNotEmpty property="searchBgnDe"> | |
| 2083 | - AND | |
| 2084 | - ( | |
| 2085 | - DATE(SUBSTRING(a.NTCE_BGNDE FROM 1 FOR 8)) BETWEEN DATE(#searchBgnDe#) AND DATE(#searchEndDe#) | |
| 2086 | - OR | |
| 2087 | - DATE(SUBSTRING(a.NTCE_ENDDE FROM 1 FOR 8)) BETWEEN DATE(#searchBgnDe#) AND DATE(#searchEndDe#) | |
| 2088 | - ) | |
| 2089 | - </isNotEmpty> | |
| 2090 | - <![CDATA[ | |
| 2091 | - ) A | |
| 2092 | - ORDER BY 1=1 | |
| 2093 | - ]]> | |
| 2094 | - <isNotEmpty property="searchSortCnd"> | |
| 2095 | - ,$searchSortCnd$ | |
| 2096 | - </isNotEmpty> | |
| 2097 | - <isNotEmpty property="searchSortOrd"> | |
| 2098 | - $searchSortOrd$ | |
| 2099 | - </isNotEmpty> | |
| 2100 | - , A.SORT_ORDR DESC, A.NTT_NO ASC | |
| 2101 | - LIMIT #recordCountPerPage# OFFSET #firstIndex# | |
| 2102 | - | |
| 2103 | - </select> | |
| 2104 | - | |
| 2105 | - <select id="BBSManageDAO.selectBoardArticleListWebUrlEventAll" parameterClass="BoardMasterVO" resultClass="BoardVO"> | |
| 2106 | - <![CDATA[ | |
| 2107 | - SELECT A.BBS_ID as bbsId, | |
| 2108 | - A.NTT_ID as nttId, | |
| 2109 | - A.NTT_SJ as nttSj, | |
| 2110 | - A.NTT_CN as nttCn, | |
| 2111 | - A.FRST_REGIST_PNTTM as frstRegisterPnttm, | |
| 2112 | - A.RDCNT as inqireCo, | |
| 2113 | - A.NEW_FLAG as newFlag, | |
| 2114 | - A.NTT_NO as nttNo, | |
| 2115 | - A.ATCH_FILE_CNT AS atchFileCnt, | |
| 2116 | - A.ATCH_FILE_ID AS atchFileId, | |
| 2117 | - IF(A.NTT_ID = A.ANSWER_PR_ID, A.ANSWER_ID, 0) as answerNttId, | |
| 2118 | - (SELECT COUNT(*) | |
| 2119 | - FROM LETTNBBS | |
| 2120 | - WHERE PARNTSCTT_NO = A.NTT_ID | |
| 2121 | - AND USE_AT = 'Y' | |
| 2122 | - ) AS answerCnt, | |
| 2123 | - A.PASSWORD AS passWord, | |
| 2124 | - A.BBS_NM AS bbsNm, | |
| 2125 | - A.NTCE_BGNDE AS ntceBgnde, | |
| 2126 | - A.NTCE_ENDDE AS ntceEndde | |
| 2127 | - FROM ( | |
| 2128 | - SELECT | |
| 2129 | - a.NTT_ID , | |
| 2130 | - a.NTT_SJ , | |
| 2131 | - SUBSTR(a.NTT_CN, 1, 2000) AS NTT_CN , | |
| 2132 | - a.FRST_REGISTER_ID, | |
| 2133 | - a.NTCR_NM as FRST_REGISTER_NM, | |
| 2134 | - DATE_FORMAT(a.FRST_REGIST_PNTTM, '%Y-%m-%d') as FRST_REGIST_PNTTM, | |
| 2135 | - a.RDCNT, | |
| 2136 | - a.PARNTSCTT_NO, | |
| 2137 | - a.ANSWER_AT, | |
| 2138 | - a.ANSWER_LC, | |
| 2139 | - a.USE_AT, | |
| 2140 | - a.ATCH_FILE_ID, | |
| 2141 | - a.BBS_ID, | |
| 2142 | - a.PASSWORD, | |
| 2143 | - a.NTCE_BGNDE, a.NTCE_ENDDE, | |
| 2144 | - a.NOTICE_AT, | |
| 2145 | - a.SECRET_AT, | |
| 2146 | - IFNULL(c.ATCH_FILE_CNT, 0) AS ATCH_FILE_CNT, IFNULL(c.FILE_SN, 0) AS FILE_SN, | |
| 2147 | - a.REPORT_TY_CD, d.CODE_NM as REPORT_TY_NM, | |
| 2148 | - CASE | |
| 2149 | - WHEN DATE(SUBDATE(NOW(), | |
| 2150 | - INTERVAL 7 DAY)) < DATE(FRST_REGIST_PNTTM) THEN 'Y' | |
| 2151 | - ELSE 'N' | |
| 2152 | - END AS NEW_FLAG, | |
| 2153 | - LEAD(a.NTT_ID) OVER(ORDER BY a.SORT_ORDR DESC, a.NTT_NO ASC) as ANSWER_ID, | |
| 2154 | - LEAD(a.PARNTSCTT_NO) OVER(ORDER BY a.SORT_ORDR DESC, a.NTT_NO ASC) as ANSWER_PR_ID, | |
| 2155 | - a.SORT_ORDR, | |
| 2156 | - a.NTT_NO, | |
| 2157 | - IFNULL(e.ANSWER_CNT, 0) as ANSWER_CNT, | |
| 2158 | - PUB_PERIOD, PUB_TIME, PUB_LINK, PUB_LOC , LAST_UPDT_PNTTM, BBS_NM | |
| 2159 | - FROM | |
| 2160 | - LETTNBBS a | |
| 2161 | - LEFT OUTER JOIN | |
| 2162 | - (SELECT a.ATCH_FILE_ID, COUNT(b.FILE_SN) as ATCH_FILE_CNT, MIN(b.FILE_SN) AS FILE_SN | |
| 2163 | - FROM LETTNFILE a | |
| 2164 | - LEFT OUTER JOIN LETTNFILEDETAIL b | |
| 2165 | - ON a.ATCH_FILE_ID = b.ATCH_FILE_ID | |
| 2166 | - WHERE a.USE_AT = 'Y' | |
| 2167 | - GROUP BY a.ATCH_FILE_ID) c | |
| 2168 | - ON a.ATCH_FILE_ID = c.ATCH_FILE_ID | |
| 2169 | - LEFT OUTER JOIN | |
| 2170 | - (SELECT NTT_ID, COUNT(ANSWER_NO) as ANSWER_CNT | |
| 2171 | - FROM LETTNCOMMENT | |
| 2172 | - WHERE BBS_ID IN | |
| 2173 | - ( SELECT A.BBS_ID | |
| 2174 | - FROM LETTNBBSMASTER A | |
| 2175 | - INNER JOIN LETTNPROGRMLIST B | |
| 2176 | - ON A.MENU_NO = B.PROGRM_FILE_NM | |
| 2177 | - AND B.URL = #url# | |
| 2178 | - ) | |
| 2179 | - AND USE_AT = 'Y' | |
| 2180 | - GROUP BY BBS_ID, NTT_ID) e | |
| 2181 | - ON a.NTT_ID = e.NTT_ID | |
| 2182 | - | |
| 2183 | - LEFT OUTER JOIN | |
| 2184 | - (SELECT CODE_ID, CODE, CODE_NM FROM | |
| 2185 | - LETTCCMMNDETAILCODE WHERE CODE_ID = 'ITN004' AND USE_AT='Y') d | |
| 2186 | - ON a.REPORT_TY_CD = d.CODE | |
| 2187 | - LEFT OUTER JOIN | |
| 2188 | - (SELECT BBS_ID, | |
| 2189 | - BBS_NM | |
| 2190 | - FROM lettnbbsmaster | |
| 2191 | - GROUP BY BBS_ID, | |
| 2192 | - BBS_NM | |
| 2193 | - ) | |
| 2194 | - f | |
| 2195 | - ON a.BBS_ID = f.BBS_ID | |
| 2196 | - WHERE a.BBS_ID IN | |
| 2197 | - ( SELECT A.BBS_ID | |
| 2198 | - FROM LETTNBBSMASTER A | |
| 2199 | - INNER JOIN LETTNPROGRMLIST B | |
| 2200 | - ON A.MENU_NO = B.PROGRM_FILE_NM | |
| 2201 | - AND B.URL = #url# | |
| 2202 | - ) | |
| 2203 | - AND a.USE_AT = 'Y' | |
| 2204 | - AND a.ANSWER_AT = 'N' /** 답변건 제외 */ | |
| 2205 | - ]]> | |
| 2206 | - <isEqual prepend="AND" property="searchCnd" compareValue=""> | |
| 2207 | - ( a.NTT_SJ LIKE CONCAT ('%', #searchWrd#,'%') OR a.NTT_CN LIKE CONCAT ('%', #searchWrd#,'%') ) | |
| 2208 | - </isEqual> | |
| 2209 | - <isEqual prepend="AND" property="searchCnd" compareValue="0"> | |
| 2210 | - a.NTT_SJ LIKE CONCAT ('%', #searchWrd#,'%') | |
| 2211 | - </isEqual> | |
| 2212 | - <isEqual prepend="AND" property="searchCnd" compareValue="1"> | |
| 2213 | - a.NTT_CN LIKE CONCAT ('%', #searchWrd#,'%') | |
| 2214 | - </isEqual> | |
| 2215 | - | |
| 2216 | - <isNotEmpty property="searchBgnDe"> | |
| 2217 | - AND | |
| 2218 | - ( | |
| 2219 | - DATE(SUBSTRING(a.NTCE_BGNDE FROM 1 FOR 8)) BETWEEN DATE(#searchBgnDe#) AND DATE(#searchEndDe#) | |
| 2220 | - OR | |
| 2221 | - DATE(SUBSTRING(a.NTCE_ENDDE FROM 1 FOR 8)) BETWEEN DATE(#searchBgnDe#) AND DATE(#searchEndDe#) | |
| 2222 | - ) | |
| 2223 | - </isNotEmpty> | |
| 2224 | - <![CDATA[ | |
| 2225 | - ) A | |
| 2226 | - ORDER BY 1=1 | |
| 2227 | - ]]> | |
| 2228 | - <isNotEmpty property="searchSortCnd"> | |
| 2229 | - ,$searchSortCnd$ | |
| 2230 | - </isNotEmpty> | |
| 2231 | - <isNotEmpty property="searchSortOrd"> | |
| 2232 | - $searchSortOrd$ | |
| 2233 | - </isNotEmpty> | |
| 2234 | - <![CDATA[ | |
| 2235 | - , A.NTT_ID DESC , A.SORT_ORDR DESC | |
| 2236 | - LIMIT #recordCountPerPage# OFFSET #firstIndex# | |
| 2237 | - ]]> | |
| 2238 | - </select> | |
| 2239 | - | |
| 2240 | - <select id="BBSManageDAO.selectboardArticleWebQnaMberInfo" parameterClass="MberManageVO" resultClass="MberManageVO"> | |
| 2241 | - SELECT a.MBER_ID AS mberId, | |
| 2242 | - a.MBER_NM AS mberNm, | |
| 2243 | - a.MBTLNUM AS moblphonNo, | |
| 2244 | - a.MBER_EMAIL_ADRES AS mberEmailAdres, | |
| 2245 | - a.ESNTL_ID AS uniqId | |
| 2246 | - FROM lettngnrlmber a | |
| 2247 | - WHERE a.MBER_ID = #mberId# | |
| 2248 | - </select> | |
| 2249 | - | |
| 2250 | - | |
| 2251 | -</sqlMap> |
--- target/classes/egovframework/sqlmap/let/cop/cmt/EgovArticleComment_SQL_Mysql.xml
... | ... | @@ -1,176 +0,0 @@ |
| 1 | -<?xml version="1.0" encoding="UTF-8"?><!-- | |
| 2 | - 수정일 수정자 수정내용 | |
| 3 | - ========= ======= ================================================= | |
| 4 | - 2011.9.7 정진오 resultMap id="commentDetail" : FRST_REGISTER_ID -> FRST_REGISTER_NM | |
| 5 | - "selectComment" : FRST_REGISTER_ID -> FRST_REGISTER_NM | |
| 6 | - 오라클 SQL MAP과 일치하도록 하기 위해 수정함 | |
| 7 | - 2011.10.18 서준식 insertComment : select key 태그 삭제 | |
| 8 | ---> | |
| 9 | -<!DOCTYPE sqlMap PUBLIC "-//iBATIS.com//DTD SQL Map 2.0//EN" "http://www.ibatis.com/dtd/sql-map-config-2.dtd"> | |
| 10 | -<sqlMap namespace="ArticleComment"> | |
| 11 | - | |
| 12 | - <typeAlias alias="egovMap" type="egovframework.rte.psl.dataaccess.util.EgovMap"/> | |
| 13 | - <typeAlias alias="Comment" type="itn.let.cop.cmt.service.Comment"/> | |
| 14 | - <typeAlias alias="CommentVO" type="itn.let.cop.cmt.service.CommentVO"/> | |
| 15 | - | |
| 16 | - <resultMap id="commentList" class="itn.let.cop.cmt.service.CommentVO"> | |
| 17 | - <result property="commentNo" column="ANSWER_NO"/> | |
| 18 | - <result property="nttId" column="NTT_ID"/> | |
| 19 | - <result property="bbsId" column="BBS_ID"/> | |
| 20 | - <result property="wrterId" column="WRTER_ID"/> | |
| 21 | - <result property="wrterNm" column="WRTER_NM"/> | |
| 22 | - <result property="commentPassword" column="PASSWORD"/> | |
| 23 | - <result property="commentCn" column="ANSWER"/> | |
| 24 | - <result property="useAt" column="USE_AT"/> | |
| 25 | - <result property="frstRegisterPnttm" column="FRST_REGIST_PNTTM"/> | |
| 26 | - <result property="frstRegisterNm" column="FRST_REGISTER_ID"/> | |
| 27 | - <result property="frstRegisterNm" column="FRST_REGISTER_ID"/> | |
| 28 | - <result property="mblDn" column="MBL_DN"/> | |
| 29 | - </resultMap> | |
| 30 | - | |
| 31 | - <resultMap id="commentDetail" class="itn.let.cop.cmt.service.CommentVO"> | |
| 32 | - <result property="commentNo" column="ANSWER_NO"/> | |
| 33 | - <result property="nttId" column="NTT_ID"/> | |
| 34 | - <result property="bbsId" column="BBS_ID"/> | |
| 35 | - <result property="wrterId" column="WRTER_ID"/> | |
| 36 | - <result property="wrterNm" column="WRTER_NM"/> | |
| 37 | - <result property="commentPassword" column="PASSWORD"/> | |
| 38 | - <result property="commentCn" column="ANSWER"/> | |
| 39 | - <result property="useAt" column="USE_AT"/> | |
| 40 | - <result property="frstRegisterPnttm" column="FRST_REGIST_PNTTM"/> | |
| 41 | - <result property="frstRegisterNm" column="FRST_REGISTER_NM"/> | |
| 42 | - <result property="mblDn" column="MBL_DN"/> | |
| 43 | - </resultMap> | |
| 44 | - | |
| 45 | - <select id="EgovArticleCommentDAO.selectArticleCommentListAll" parameterClass="CommentVO" resultMap="commentList"> | |
| 46 | - | |
| 47 | - SELECT | |
| 48 | - a.ANSWER_NO, a.NTT_ID, a.BBS_ID, | |
| 49 | - IF(a.MBL_DN = '', '0', '1') AS MBL_DN, | |
| 50 | - a.WRTER_NM, a.WRTER_ID, a.PASSWORD, a.ANSWER, a.USE_AT, | |
| 51 | - DATE_FORMAT(a.FRST_REGIST_PNTTM, '%Y-%m-%d %H:%i:%S') | |
| 52 | - as FRST_REGIST_PNTTM, | |
| 53 | - b.USER_NM as FRST_REGISTER_ID | |
| 54 | - FROM | |
| 55 | - LETTNCOMMENT a | |
| 56 | - LEFT OUTER JOIN COMVNUSERMASTER b | |
| 57 | - ON a.FRST_REGISTER_ID = b.ESNTL_ID | |
| 58 | - WHERE | |
| 59 | - a.BBS_ID = #bbsId# AND a.NTT_ID = #nttId# | |
| 60 | - AND | |
| 61 | - a.USE_AT = 'Y' | |
| 62 | - ORDER BY a.FRST_REGIST_PNTTM DESC | |
| 63 | - | |
| 64 | - </select> | |
| 65 | - | |
| 66 | - <select id="EgovArticleCommentDAO.selectArticleCommentList" parameterClass="CommentVO" resultMap="commentList"> | |
| 67 | - | |
| 68 | - SELECT | |
| 69 | - a.ANSWER_NO, a.NTT_ID, a.BBS_ID, | |
| 70 | - IF(a.MBL_DN = '', '0', '1') AS MBL_DN, | |
| 71 | - a.WRTER_NM, a.WRTER_ID, a.PASSWORD, a.ANSWER, a.USE_AT, | |
| 72 | - DATE_FORMAT(a.FRST_REGIST_PNTTM, '%Y-%m-%d %H:%i:%S') | |
| 73 | - as FRST_REGIST_PNTTM, | |
| 74 | - b.USER_NM as FRST_REGISTER_ID | |
| 75 | - FROM | |
| 76 | - LETTNCOMMENT a | |
| 77 | - LEFT OUTER JOIN COMVNUSERMASTER b | |
| 78 | - ON a.FRST_REGISTER_ID = b.ESNTL_ID | |
| 79 | - WHERE | |
| 80 | - a.BBS_ID = #bbsId# AND a.NTT_ID = #nttId# | |
| 81 | - AND | |
| 82 | - a.USE_AT = 'Y' | |
| 83 | - ORDER BY a.FRST_REGIST_PNTTM DESC | |
| 84 | - LIMIT #subRecordCountPerPage# OFFSET #subFirstIndex# | |
| 85 | - | |
| 86 | - </select> | |
| 87 | - | |
| 88 | - <select id="EgovArticleCommentDAO.selectArticleCommentListCnt" parameterClass="CommentVO" resultClass="java.lang.Integer"> | |
| 89 | - | |
| 90 | - SELECT | |
| 91 | - COUNT(ANSWER_NO) | |
| 92 | - FROM | |
| 93 | - LETTNCOMMENT | |
| 94 | - WHERE | |
| 95 | - BBS_ID = #bbsId# AND NTT_ID = #nttId# | |
| 96 | - AND | |
| 97 | - USE_AT = 'Y' | |
| 98 | - | |
| 99 | - </select> | |
| 100 | - | |
| 101 | - <insert id="EgovArticleCommentDAO.insertArticleComment" parameterClass="Comment"> | |
| 102 | - | |
| 103 | - INSERT INTO LETTNCOMMENT | |
| 104 | - (ANSWER_NO, NTT_ID, BBS_ID, WRTER_ID, WRTER_NM, PASSWORD, | |
| 105 | - ANSWER, USE_AT, | |
| 106 | - FRST_REGISTER_ID, FRST_REGIST_PNTTM, MBL_DN | |
| 107 | - ) | |
| 108 | - VALUES | |
| 109 | - ( #commentNo#, #nttId#, #bbsId#, #wrterId#, #wrterNm#, #commentPassword#, | |
| 110 | - #commentCn#, 'Y', | |
| 111 | - #frstRegisterId#, SYSDATE(), #mblDn# | |
| 112 | - ) | |
| 113 | - | |
| 114 | - </insert> | |
| 115 | - | |
| 116 | - <update id="EgovArticleCommentDAO.deleteArticleComment" parameterClass="CommentVO"> | |
| 117 | - | |
| 118 | - UPDATE LETTNCOMMENT | |
| 119 | - SET USE_AT = 'N' | |
| 120 | - WHERE ANSWER_NO = #commentNo# | |
| 121 | - | |
| 122 | - </update> | |
| 123 | - | |
| 124 | - <select id="EgovArticleCommentDAO.selectArticleCommentDetail" parameterClass="CommentVO" resultMap="commentDetail"> | |
| 125 | - | |
| 126 | - SELECT | |
| 127 | - a.ANSWER_NO, a.NTT_ID, a.BBS_ID, | |
| 128 | - a.WRTER_ID, a.WRTER_NM, a.PASSWORD, a.ANSWER, a.USE_AT, | |
| 129 | - DATE_FORMAT(a.FRST_REGIST_PNTTM, '%Y-%m-%d %H:%i:%S') | |
| 130 | - as FRST_REGIST_PNTTM, | |
| 131 | - b.USER_NM as FRST_REGISTER_NM, a.MBL_DN | |
| 132 | - FROM | |
| 133 | - LETTNCOMMENT a | |
| 134 | - LEFT OUTER JOIN COMVNUSERMASTER b | |
| 135 | - ON a.FRST_REGISTER_ID = b.ESNTL_ID | |
| 136 | - WHERE | |
| 137 | - a.ANSWER_NO = #commentNo# | |
| 138 | - | |
| 139 | - | |
| 140 | - </select> | |
| 141 | - | |
| 142 | - <update id="EgovArticleCommentDAO.updateArticleComment" parameterClass="Comment"> | |
| 143 | - | |
| 144 | - UPDATE LETTNCOMMENT SET | |
| 145 | - ANSWER = #commentCn#, | |
| 146 | - LAST_UPDUSR_ID = #lastUpdusrId#, | |
| 147 | - LAST_UPDT_PNTTM = SYSDATE() | |
| 148 | - WHERE ANSWER_NO = #commentNo# | |
| 149 | - | |
| 150 | - </update> | |
| 151 | - | |
| 152 | - | |
| 153 | - <select id="EgovArticleCommentDAO.selectArticleCommentListAllList" parameterClass="CommentVO" resultMap="commentList"> | |
| 154 | - | |
| 155 | - SELECT | |
| 156 | - a.ANSWER_NO, a.NTT_ID, a.BBS_ID, | |
| 157 | - a.WRTER_NM, a.WRTER_ID, a.PASSWORD, a.ANSWER, a.USE_AT, | |
| 158 | - DATE_FORMAT(a.FRST_REGIST_PNTTM, '%Y-%m-%d %H:%i:%S') | |
| 159 | - as FRST_REGIST_PNTTM, | |
| 160 | - b.USER_NM as FRST_REGISTER_ID, | |
| 161 | - IF(a.MBL_DN = '', '0', '1') AS MBL_DN | |
| 162 | - FROM | |
| 163 | - LETTNCOMMENT a | |
| 164 | - LEFT OUTER JOIN COMVNUSERMASTER b | |
| 165 | - ON a.FRST_REGISTER_ID = b.ESNTL_ID | |
| 166 | - WHERE | |
| 167 | - a.USE_AT = 'Y' | |
| 168 | - <isNotEmpty prepend="AND" property="bbsId"> | |
| 169 | - a.BBS_ID = #bbsId# | |
| 170 | - </isNotEmpty> | |
| 171 | - ORDER BY a.FRST_REGIST_PNTTM DESC | |
| 172 | - </select> | |
| 173 | - | |
| 174 | - | |
| 175 | - | |
| 176 | -</sqlMap>(No newline at end of file) |
--- target/classes/egovframework/sqlmap/let/cop/com/EgovBBSUse_SQL_Mysql.xml
... | ... | @@ -1,356 +0,0 @@ |
| 1 | -<?xml version="1.0" encoding="UTF-8"?> | |
| 2 | -<!DOCTYPE sqlMap PUBLIC "-//iBATIS.com//DTD SQL Map 2.0//EN" "http://www.ibatis.com/dtd/sql-map-config-2.dtd"> | |
| 3 | - | |
| 4 | -<sqlMap namespace="BBSUseInfoManageDAO"> | |
| 5 | - | |
| 6 | - <typeAlias alias="egovMap" type="egovframework.rte.psl.dataaccess.util.EgovMap"/> | |
| 7 | - <typeAlias alias="BoardUseInf" type="itn.let.cop.com.service.BoardUseInf"/> | |
| 8 | - <typeAlias alias="BoardUseInfVO" type="itn.let.cop.com.service.BoardUseInfVO"/> | |
| 9 | - | |
| 10 | - <resultMap id="BoardUseList" class="itn.let.cop.com.service.BoardUseInfVO"> | |
| 11 | - <result property="bbsId" column="BBS_ID" columnIndex="1"/> | |
| 12 | - <result property="bbsNm" column="BBS_NM" columnIndex="2"/> | |
| 13 | - <result property="trgetId" column="TRGET_ID" columnIndex="3"/> | |
| 14 | - <result property="registSeCode" column="REGIST_SE_CODE" columnIndex="4"/> | |
| 15 | - <result property="registSeCodeNm" column="REGIST_SE_CODE_NM" columnIndex="5"/> | |
| 16 | - <result property="useAt" column="USE_AT" columnIndex="6"/> | |
| 17 | - <result property="frstRegisterId" column="FRST_REGISTER_ID" columnIndex="7"/> | |
| 18 | - <result property="frstRegisterPnttm" column="FRST_REGIST_PNTTM" columnIndex="8"/> | |
| 19 | - <result property="cmmntyId" column="CMMNTY_ID" columnIndex="9"/> | |
| 20 | - <result property="cmmntyNm" column="CMMNTY_NM" columnIndex="10"/> | |
| 21 | - <result property="clbId" column="CLB_ID" columnIndex="11"/> | |
| 22 | - <result property="clbNm" column="CLB_NM" columnIndex="12"/> | |
| 23 | - <result property="bbsTyCode" column="BBS_TY_CODE" columnIndex="13"/> | |
| 24 | - </resultMap> | |
| 25 | - | |
| 26 | - <resultMap id="BoardUseListByTrget" class="itn.let.cop.com.service.BoardUseInfVO"> | |
| 27 | - <result property="bbsId" column="BBS_ID" columnIndex="1"/> | |
| 28 | - <result property="bbsNm" column="BBS_NM" columnIndex="2"/> | |
| 29 | - <result property="trgetId" column="TRGET_ID" columnIndex="3"/> | |
| 30 | - <result property="userNm" column="USER_NM" columnIndex="4"/> | |
| 31 | - <result property="registSeCode" column="REGIST_SE_CODE" columnIndex="5"/> | |
| 32 | - <result property="registSeCodeNm" column="REGIST_SE_CODE_NM" columnIndex="6"/> | |
| 33 | - <result property="useAt" column="USE_AT" columnIndex="7"/> | |
| 34 | - <result property="frstRegisterId" column="FRST_REGISTER_ID" columnIndex="8"/> | |
| 35 | - <result property="frstRegisterPnttm" column="FRST_REGIST_PNTTM" columnIndex="9"/> | |
| 36 | - </resultMap> | |
| 37 | - | |
| 38 | - <resultMap id="selectBBSUse" class="itn.let.cop.com.service.BoardUseInfVO"> | |
| 39 | - <result property="bbsId" column="BBS_ID" columnIndex="1"/> | |
| 40 | - </resultMap> | |
| 41 | - | |
| 42 | - <update id="BBSUseInfoManageDAO.deleteBBSUseInf" parameterClass="BoardUseInf" > | |
| 43 | - <![CDATA[ | |
| 44 | - UPDATE LETTNBBSUSE SET | |
| 45 | - USE_AT = 'N', | |
| 46 | - LAST_UPDUSR_ID = #lastUpdusrId#, | |
| 47 | - LAST_UPDT_PNTTM = SYSDATE() | |
| 48 | - WHERE BBS_ID = #bbsId# | |
| 49 | - AND TRGET_ID = #trgetId# | |
| 50 | - ]]> | |
| 51 | - </update> | |
| 52 | - | |
| 53 | - <select id="BBSUseInfoManageDAO.selectBBSUseInfByCmmnty" parameterClass="BoardUseInfVO" resultMap="selectBBSUse" > | |
| 54 | - <![CDATA[ | |
| 55 | - SELECT BBS_ID FROM LETTNBBSUSE | |
| 56 | - WHERE TRGET_ID = #cmmntyId# | |
| 57 | - ]]> | |
| 58 | - </select> | |
| 59 | - | |
| 60 | - <select id="BBSUseInfoManageDAO.selectBBSUseInfByClub" parameterClass="BoardUseInfVO" resultMap="selectBBSUse" > | |
| 61 | - <![CDATA[ | |
| 62 | - SELECT BBS_ID FROM LETTNBBSUSE | |
| 63 | - WHERE TRGET_ID = #clbId# | |
| 64 | - ]]> | |
| 65 | - </select> | |
| 66 | - | |
| 67 | - <update id="BBSUseInfoManageDAO.deleteAllBBSUseInfByCmmnty" parameterClass="BoardUseInfVO" > | |
| 68 | - <!-- [CDATA[ | |
| 69 | - UPDATE LETTNBBSUSE SET | |
| 70 | - USE_AT = 'N', | |
| 71 | - LAST_UPDUSR_ID = #lastUpdusrId#, | |
| 72 | - LAST_UPDT_PNTTM = SYSDATE() | |
| 73 | - WHERE BBS_ID IN | |
| 74 | - (SELECT BBS_ID FROM LETTNBBSUSE | |
| 75 | - WHERE TRGET_ID = #cmmntyId# ) | |
| 76 | - ]]--> | |
| 77 | - <![CDATA[ | |
| 78 | - UPDATE LETTNBBSUSE SET | |
| 79 | - USE_AT = 'N', | |
| 80 | - LAST_UPDUSR_ID = #lastUpdusrId#, | |
| 81 | - LAST_UPDT_PNTTM = SYSDATE() | |
| 82 | - WHERE TRGET_ID = #cmmntyId# | |
| 83 | - ]]> | |
| 84 | - </update> | |
| 85 | - | |
| 86 | - <update id="BBSUseInfoManageDAO.deleteAllBBSUseInfByClub" parameterClass="BoardUseInfVO" > | |
| 87 | - <!-- [CDATA[ | |
| 88 | - UPDATE LETTNBBSUSE SET | |
| 89 | - USE_AT = 'N', | |
| 90 | - LAST_UPDUSR_ID = #lastUpdusrId#, | |
| 91 | - LAST_UPDT_PNTTM = SYSDATE() | |
| 92 | - WHERE BBS_ID IN | |
| 93 | - (SELECT BBS_ID FROM LETTNBBSUSE | |
| 94 | - WHERE TRGET_ID = #clbId# ) | |
| 95 | - ]]--> | |
| 96 | - <![CDATA[ | |
| 97 | - UPDATE LETTNBBSUSE SET | |
| 98 | - USE_AT = 'N', | |
| 99 | - LAST_UPDUSR_ID = #lastUpdusrId#, | |
| 100 | - LAST_UPDT_PNTTM = SYSDATE() | |
| 101 | - WHERE TRGET_ID = #clbId# | |
| 102 | - ]]> | |
| 103 | - </update> | |
| 104 | - | |
| 105 | - <insert id="BBSUseInfoManageDAO.insertBBSUseInf" parameterClass="BoardUseInf" > | |
| 106 | - <![CDATA[ | |
| 107 | - INSERT INTO LETTNBBSUSE | |
| 108 | - (BBS_ID, TRGET_ID, REGIST_SE_CODE, USE_AT, | |
| 109 | - FRST_REGISTER_ID, FRST_REGIST_PNTTM ) | |
| 110 | - VALUES | |
| 111 | - (#bbsId#, #trgetId#, #registSeCode#, #useAt#, #frstRegisterId#, SYSDATE()) | |
| 112 | - ]]> | |
| 113 | - </insert> | |
| 114 | - | |
| 115 | - <select id="BBSUseInfoManageDAO.selectBBSUseInfs" parameterClass="BoardUseInfVO" resultMap="BoardUseList" > | |
| 116 | - <![CDATA[ | |
| 117 | - SELECT | |
| 118 | - a.BBS_ID, e.BBS_NM, a.TRGET_ID, a.REGIST_SE_CODE, b.CODE_NM as REGIST_SE_CODE_NM, | |
| 119 | - a.USE_AT, a.FRST_REGISTER_ID, a.FRST_REGIST_PNTTM, | |
| 120 | - '시스템 활용' CMMNTY_ID, '시스템 활용' CMMNTY_NM, | |
| 121 | - '시스템 활용' CLB_ID, '시스템 활용' CLB_NM, '시스템 활용' BBS_TY_CODE | |
| 122 | - FROM | |
| 123 | - LETTNBBSUSE a | |
| 124 | - LEFT OUTER JOIN LETTNBBSMASTER e | |
| 125 | - ON a.BBS_ID = e.BBS_ID | |
| 126 | - LEFT OUTER JOIN LETTCCMMNDETAILCODE b | |
| 127 | - ON b.CODE = a.REGIST_SE_CODE | |
| 128 | - WHERE | |
| 129 | - b.CODE_ID = 'COM001' | |
| 130 | - AND a.REGIST_SE_CODE != 'REGC07' | |
| 131 | - ]]> | |
| 132 | - <isEqual prepend="AND" property="searchCnd" compareValue="0"> | |
| 133 | - <![CDATA[ e.BBS_NM LIKE CONCAT ('%', #searchWrd#,'%') ]]> | |
| 134 | - </isEqual> | |
| 135 | - <![CDATA[ | |
| 136 | - ORDER BY a.FRST_REGIST_PNTTM DESC | |
| 137 | - LIMIT #recordCountPerPage# OFFSET #firstIndex# | |
| 138 | - ]]> | |
| 139 | - </select> | |
| 140 | - | |
| 141 | - <select id="BBSUseInfoManageDAO.selectBBSUseInfsCnt" parameterClass="BoardUseInfVO" resultClass="java.lang.Integer" > | |
| 142 | - <![CDATA[ | |
| 143 | - SELECT | |
| 144 | - COUNT(a.BBS_ID) | |
| 145 | - FROM | |
| 146 | - LETTNBBSUSE a | |
| 147 | - LEFT OUTER JOIN LETTNBBSMASTER e | |
| 148 | - ON a.BBS_ID = e.BBS_ID | |
| 149 | - LEFT OUTER JOIN LETTCCMMNDETAILCODE b | |
| 150 | - ON b.CODE = a.REGIST_SE_CODE | |
| 151 | - WHERE | |
| 152 | - b.CODE_ID = 'COM001' | |
| 153 | - AND a.REGIST_SE_CODE != 'REGC07' | |
| 154 | - ]]> | |
| 155 | - <isEqual prepend="AND" property="searchCnd" compareValue="0"> | |
| 156 | - <![CDATA[ e.BBS_NM LIKE CONCAT ('%', #searchWrd#,'%') ]]> | |
| 157 | - </isEqual> | |
| 158 | - </select> | |
| 159 | - | |
| 160 | - <select id="BBSUseInfoManageDAO.selectBBSUseInf" parameterClass="BoardUseInfVO" resultMap="BoardUseList" > | |
| 161 | - <![CDATA[ | |
| 162 | - SELECT | |
| 163 | - a.BBS_ID, e.BBS_NM, a.TRGET_ID, a.REGIST_SE_CODE, b.CODE_NM as REGIST_SE_CODE_NM, | |
| 164 | - a.USE_AT, a.FRST_REGISTER_ID, a.FRST_REGIST_PNTTM, | |
| 165 | - '시스템 활용' CMMNTY_ID, '시스템 활용' CMMNTY_NM, | |
| 166 | - '시스템 활용' CLB_ID, '시스템 활용' CLB_NM, '시스템 활용' BBS_TY_CODE | |
| 167 | - FROM | |
| 168 | - LETTNBBSUSE a | |
| 169 | - LEFT OUTER JOIN LETTNBBSMASTER e | |
| 170 | - ON a.BBS_ID = e.BBS_ID | |
| 171 | - LEFT OUTER JOIN LETTCCMMNDETAILCODE b | |
| 172 | - ON b.CODE = a.REGIST_SE_CODE | |
| 173 | - WHERE | |
| 174 | - b.CODE_ID = 'COM001' | |
| 175 | - AND | |
| 176 | - a.BBS_ID = #bbsId# | |
| 177 | - AND | |
| 178 | - a.TRGET_ID = #trgetId# | |
| 179 | - ]]> | |
| 180 | - </select> | |
| 181 | - | |
| 182 | - <update id="BBSUseInfoManageDAO.updateBBSUseInf" parameterClass="BoardUseInf"> | |
| 183 | - <![CDATA[ | |
| 184 | - UPDATE LETTNBBSUSE SET | |
| 185 | - USE_AT = #useAt#, | |
| 186 | - LAST_UPDUSR_ID = #lastUpdusrId#, | |
| 187 | - LAST_UPDT_PNTTM = SYSDATE() | |
| 188 | - WHERE BBS_ID = #bbsId# | |
| 189 | - ]]> | |
| 190 | - </update> | |
| 191 | - | |
| 192 | - <update id="BBSUseInfoManageDAO.deleteBBSUseInfByBoardId" parameterClass="BoardUseInf" > | |
| 193 | - <![CDATA[ | |
| 194 | - UPDATE LETTNBBSUSE SET | |
| 195 | - USE_AT = 'N', | |
| 196 | - LAST_UPDUSR_ID = #lastUpdusrId#, | |
| 197 | - LAST_UPDT_PNTTM = SYSDATE() | |
| 198 | - WHERE BBS_ID = #bbsId# | |
| 199 | - ]]> | |
| 200 | - </update> | |
| 201 | - | |
| 202 | - | |
| 203 | - <select id="BBSUseInfoManageDAO.selectBBSUseInfsByTrget" parameterClass="BoardUseInfVO" resultMap="BoardUseListByTrget" > | |
| 204 | - <![CDATA[ | |
| 205 | - SELECT * FROM ( | |
| 206 | - SELECT | |
| 207 | - a.BBS_ID, b.BBS_NM, a.TRGET_ID, d.USER_NM, a.REGIST_SE_CODE, c.CODE_NM as REGIST_SE_CODE_NM, | |
| 208 | - a.USE_AT, a.FRST_REGISTER_ID, a.FRST_REGIST_PNTTM | |
| 209 | - FROM | |
| 210 | - LETTNBBSUSE a | |
| 211 | - LEFT OUTER JOIN LETTNBBSMASTER b | |
| 212 | - ON a.BBS_ID = b.BBS_ID | |
| 213 | - LEFT OUTER JOIN LETTCCMMNDETAILCODE c | |
| 214 | - ON c.CODE = a.REGIST_SE_CODE | |
| 215 | - LEFT OUTER JOIN COMVNUSERMASTER d | |
| 216 | - ON a.TRGET_ID = d.ESNTL_ID | |
| 217 | - WHERE | |
| 218 | - a.BBS_ID IN | |
| 219 | - ( SELECT BBS_ID FROM LETTNBBSUSE | |
| 220 | - WHERE TRGET_ID = #trgetId# AND USE_AT ='Y' ) | |
| 221 | - AND a.REGIST_SE_CODE = 'REGC07' | |
| 222 | - UNION ALL | |
| 223 | - SELECT | |
| 224 | - a.BBS_ID, b.BBS_NM, a.TRGET_ID, '[전체]' USER_NM, a.REGIST_SE_CODE, c.CODE_NM as REGIST_SE_CODE_NM, | |
| 225 | - a.USE_AT, a.FRST_REGISTER_ID, a.FRST_REGIST_PNTTM | |
| 226 | - FROM | |
| 227 | - LETTNBBSUSE a | |
| 228 | - LEFT OUTER JOIN LETTNBBSMASTER b | |
| 229 | - ON a.BBS_ID = b.BBS_ID | |
| 230 | - LEFT OUTER JOIN LETTCCMMNDETAILCODE c | |
| 231 | - ON c.CODE = a.REGIST_SE_CODE | |
| 232 | - WHERE | |
| 233 | - a.BBS_ID IN | |
| 234 | - ( SELECT BBS_ID FROM LETTNBBSUSE | |
| 235 | - WHERE TRGET_ID = #trgetId# ) | |
| 236 | - AND a.REGIST_SE_CODE in ('REGC05', 'REGC06') | |
| 237 | - UNION ALL | |
| 238 | - SELECT | |
| 239 | - a.BBS_ID, b.BBS_NM, | |
| 240 | - case WHEN e.EMPLYR_ID is null THEN f.EMPLYR_ID ELSE e.EMPLYR_ID END as TRGET_ID, | |
| 241 | - case WHEN g.USER_NM is null THEN h.USER_NM ELSE g.USER_NM END as USER_NM, | |
| 242 | - 'REGC07' as REGIST_SE_CODE, '게시판사용자등록' as REGIST_SE_CODE_NM, | |
| 243 | - '' as USE_AT, '' as FRST_REGISTER_ID, '' as FRST_REGIST_PNTTM | |
| 244 | - FROM | |
| 245 | - LETTNBBSUSE a | |
| 246 | - LEFT OUTER JOIN LETTNBBSMASTER b | |
| 247 | - ON a.BBS_ID = b.BBS_ID | |
| 248 | - LEFT OUTER JOIN LETTCCMMNDETAILCODE c | |
| 249 | - ON c.CODE = a.REGIST_SE_CODE | |
| 250 | - LEFT OUTER JOIN LETTNCMMNTYUSER e | |
| 251 | - ON e.CMMNTY_ID = #trgetId# | |
| 252 | - LEFT OUTER JOIN LETTNCLUBUSER f | |
| 253 | - ON f.CLB_ID = #trgetId# | |
| 254 | - LEFT OUTER JOIN COMVNUSERMASTER g | |
| 255 | - ON e.EMPLYR_ID = g.ESNTL_ID | |
| 256 | - LEFT OUTER JOIN COMVNUSERMASTER h | |
| 257 | - ON f.EMPLYR_ID = h.ESNTL_ID | |
| 258 | - WHERE | |
| 259 | - a.BBS_ID IN | |
| 260 | - ( SELECT BBS_ID FROM LETTNBBSUSE | |
| 261 | - WHERE TRGET_ID = #trgetId# AND USE_AT ='Y' ) | |
| 262 | - AND a.REGIST_SE_CODE in ('REGC05', 'REGC06') | |
| 263 | - AND ( | |
| 264 | - (a.BBS_ID, e.EMPLYR_ID) not in (SELECT BBS_ID, TRGET_ID FROM LETTNBBSUSE) | |
| 265 | - OR | |
| 266 | - (a.BBS_ID, f.EMPLYR_ID) not in (SELECT BBS_ID, TRGET_ID FROM LETTNBBSUSE) | |
| 267 | - ) | |
| 268 | - ) tt | |
| 269 | - ]]> | |
| 270 | - <isEqual prepend="WHERE" property="searchCnd" compareValue="0"> | |
| 271 | - <![CDATA[ tt.USER_NM LIKE CONCAT ('%', #searchWrd#,'%') ]]> | |
| 272 | - </isEqual> | |
| 273 | - <![CDATA[ | |
| 274 | - ORDER BY tt.USER_NM DESC | |
| 275 | - LIMIT #recordCountPerPage# OFFSET #firstIndex# | |
| 276 | - ]]> | |
| 277 | - </select> | |
| 278 | - | |
| 279 | - <select id="BBSUseInfoManageDAO.selectBBSUseInfsCntByTrget" parameterClass="BoardUseInfVO" resultClass="java.lang.Integer" > | |
| 280 | - <![CDATA[ | |
| 281 | - SELECT COUNT(tt.BBS_ID) FROM ( | |
| 282 | - SELECT | |
| 283 | - a.BBS_ID, d.USER_NM | |
| 284 | - FROM | |
| 285 | - LETTNBBSUSE a | |
| 286 | - LEFT OUTER JOIN LETTNBBSMASTER b | |
| 287 | - ON a.BBS_ID = b.BBS_ID | |
| 288 | - LEFT OUTER JOIN LETTCCMMNDETAILCODE c | |
| 289 | - ON c.CODE = a.REGIST_SE_CODE | |
| 290 | - LEFT OUTER JOIN COMVNUSERMASTER d | |
| 291 | - ON a.TRGET_ID = d.ESNTL_ID | |
| 292 | - WHERE | |
| 293 | - a.BBS_ID IN | |
| 294 | - ( SELECT BBS_ID FROM LETTNBBSUSE | |
| 295 | - WHERE TRGET_ID = #trgetId# AND USE_AT ='Y' ) | |
| 296 | - AND a.REGIST_SE_CODE = 'REGC07' | |
| 297 | - UNION ALL | |
| 298 | - SELECT | |
| 299 | - a.BBS_ID, '[전체]' USER_NM | |
| 300 | - FROM | |
| 301 | - LETTNBBSUSE a | |
| 302 | - LEFT OUTER JOIN LETTNBBSMASTER b | |
| 303 | - ON a.BBS_ID = b.BBS_ID | |
| 304 | - LEFT OUTER JOIN LETTCCMMNDETAILCODE c | |
| 305 | - ON c.CODE = a.REGIST_SE_CODE | |
| 306 | - WHERE | |
| 307 | - a.BBS_ID IN | |
| 308 | - ( SELECT BBS_ID FROM LETTNBBSUSE | |
| 309 | - WHERE TRGET_ID = #trgetId# ) | |
| 310 | - AND a.REGIST_SE_CODE in ('REGC05', 'REGC06') | |
| 311 | - UNION ALL | |
| 312 | - SELECT | |
| 313 | - a.BBS_ID, '' as USER_NM | |
| 314 | - FROM | |
| 315 | - LETTNBBSUSE a | |
| 316 | - LEFT OUTER JOIN LETTNBBSMASTER b | |
| 317 | - ON a.BBS_ID = b.BBS_ID | |
| 318 | - LEFT OUTER JOIN LETTCCMMNDETAILCODE c | |
| 319 | - ON c.CODE = a.REGIST_SE_CODE | |
| 320 | - LEFT OUTER JOIN LETTNCMMNTYUSER e | |
| 321 | - ON e.CMMNTY_ID = #trgetId# | |
| 322 | - LEFT OUTER JOIN LETTNCLUBUSER f | |
| 323 | - ON f.CLB_ID = #trgetId# | |
| 324 | - LEFT OUTER JOIN COMVNUSERMASTER g | |
| 325 | - ON e.EMPLYR_ID = g.ESNTL_ID | |
| 326 | - LEFT OUTER JOIN COMVNUSERMASTER h | |
| 327 | - ON f.EMPLYR_ID = h.ESNTL_ID | |
| 328 | - WHERE | |
| 329 | - a.BBS_ID IN | |
| 330 | - ( SELECT BBS_ID FROM LETTNBBSUSE | |
| 331 | - WHERE TRGET_ID = #trgetId# AND USE_AT ='Y' ) | |
| 332 | - AND a.REGIST_SE_CODE in ('REGC05', 'REGC06') | |
| 333 | - AND ( | |
| 334 | - (a.BBS_ID, e.EMPLYR_ID) not in (SELECT BBS_ID, TRGET_ID FROM LETTNBBSUSE) | |
| 335 | - OR | |
| 336 | - (a.BBS_ID, f.EMPLYR_ID) not in (SELECT BBS_ID, TRGET_ID FROM LETTNBBSUSE) | |
| 337 | - ) | |
| 338 | - ) tt | |
| 339 | - ]]> | |
| 340 | - <isEqual prepend="WHERE" property="searchCnd" compareValue="0"> | |
| 341 | - <![CDATA[ tt.USER_NM LIKE CONCAT ('%', #searchWrd#,'%') ]]> | |
| 342 | - </isEqual> | |
| 343 | - </select> | |
| 344 | - | |
| 345 | - <update id="BBSUseInfoManageDAO.updateBBSUseInfByTrget" parameterClass="BoardUseInf" > | |
| 346 | - <![CDATA[ | |
| 347 | - UPDATE LETTNBBSUSE SET | |
| 348 | - USE_AT = #useAt#, | |
| 349 | - LAST_UPDUSR_ID = #lastUpdusrId#, | |
| 350 | - LAST_UPDT_PNTTM = SYSDATE() | |
| 351 | - WHERE BBS_ID = #bbsId# | |
| 352 | - AND TRGET_ID = #trgetId# | |
| 353 | - ]]> | |
| 354 | - </update> | |
| 355 | - | |
| 356 | -</sqlMap> |
--- target/classes/egovframework/sqlmap/let/cop/com/EgovTemplate_SQL_Mysql.xml
... | ... | @@ -1,168 +0,0 @@ |
| 1 | -<?xml version="1.0" encoding="UTF-8"?> | |
| 2 | -<!DOCTYPE sqlMap PUBLIC "-//iBATIS.com//DTD SQL Map 2.0//EN" "http://www.ibatis.com/dtd/sql-map-config-2.dtd"> | |
| 3 | - | |
| 4 | -<sqlMap namespace="TemplateMng"> | |
| 5 | - | |
| 6 | - <typeAlias alias="egovMap" type="egovframework.rte.psl.dataaccess.util.EgovMap"/> | |
| 7 | - <typeAlias alias="TemplateInf" type="itn.let.cop.com.service.TemplateInf"/> | |
| 8 | - <typeAlias alias="TemplateInfVO" type="itn.let.cop.com.service.TemplateInfVO"/> | |
| 9 | - | |
| 10 | - <resultMap id="tmplatList" class="itn.let.cop.com.service.TemplateInfVO"> | |
| 11 | - <result property="tmplatId" column="TMPLAT_ID" columnIndex="1"/> | |
| 12 | - <result property="tmplatNm" column="TMPLAT_NM" columnIndex="2"/> | |
| 13 | - <result property="tmplatSeCode" column="TMPLAT_SE_CODE" columnIndex="3"/> | |
| 14 | - <result property="tmplatSeCodeNm" column="TMPLAT_SE_CODE_NM" columnIndex="4"/> | |
| 15 | - <result property="tmplatCours" column="TMPLAT_COURS" columnIndex="5"/> | |
| 16 | - <result property="useAt" column="USE_AT" columnIndex="6"/> | |
| 17 | - <result property="frstRegisterPnttm" column="FRST_REGIST_PNTTM" columnIndex="7"/> | |
| 18 | - </resultMap> | |
| 19 | - | |
| 20 | - <resultMap id="tmplatDetail" class="itn.let.cop.com.service.TemplateInfVO"> | |
| 21 | - <result property="tmplatId" column="TMPLAT_ID" columnIndex="1"/> | |
| 22 | - <result property="tmplatNm" column="TMPLAT_NM" columnIndex="2"/> | |
| 23 | - <result property="tmplatSeCode" column="TMPLAT_SE_CODE" columnIndex="3"/> | |
| 24 | - <result property="tmplatSeCodeNm" column="TMPLAT_SE_CODE_NM" columnIndex="4"/> | |
| 25 | - <result property="tmplatCours" column="TMPLAT_COURS" columnIndex="5"/> | |
| 26 | - <result property="useAt" column="USE_AT" columnIndex="6"/> | |
| 27 | - <result property="frstRegisterId" column="FRST_REGISTER_ID" columnIndex="7"/> | |
| 28 | - <result property="frstRegisterNm" column="FRST_REGISTER_NM" columnIndex="8"/> | |
| 29 | - <result property="frstRegisterPnttm" column="FRST_REGIST_PNTTM" columnIndex="9"/> | |
| 30 | - <result property="lastUpdusrId" column="LAST_UPDUSR_ID" columnIndex="10"/> | |
| 31 | - <result property="lastUpdusrNm" column="LAST_UPDUSR_NM" columnIndex="11"/> | |
| 32 | - <result property="lastUpdusrPnttm" column="LAST_UPDT_PNTTM" columnIndex="12"/> | |
| 33 | - </resultMap> | |
| 34 | - | |
| 35 | - | |
| 36 | - | |
| 37 | - <insert id="TemplateManageDAO.insertTemplateInf" parameterClass="TemplateInf" > | |
| 38 | - <![CDATA[ | |
| 39 | - INSERT INTO LETTNTMPLATINFO | |
| 40 | - (TMPLAT_ID, TMPLAT_NM, TMPLAT_SE_CODE, TMPLAT_COURS, | |
| 41 | - USE_AT, FRST_REGISTER_ID, FRST_REGIST_PNTTM ) | |
| 42 | - VALUES | |
| 43 | - ( #tmplatId#, #tmplatNm#, #tmplatSeCode#, #tmplatCours#, | |
| 44 | - #useAt#, #frstRegisterId#, SYSDATE() | |
| 45 | - ) | |
| 46 | - ]]> | |
| 47 | - </insert> | |
| 48 | - | |
| 49 | - <select id="TemplateManageDAO.selectTemplateInfs" parameterClass="TemplateInfVO" resultMap="tmplatList" > | |
| 50 | - <![CDATA[ | |
| 51 | - SELECT | |
| 52 | - a.TMPLAT_ID, a.TMPLAT_NM, a.TMPLAT_SE_CODE, a.TMPLAT_COURS, a.USE_AT, | |
| 53 | - a.FRST_REGISTER_ID, a.FRST_REGIST_PNTTM, | |
| 54 | - b.USER_NM AS FRST_REGISTER_NM, c.CODE_NM AS TMPLAT_SE_CODE_NM | |
| 55 | - FROM | |
| 56 | - LETTNTMPLATINFO a | |
| 57 | - LEFT OUTER JOIN COMVNUSERMASTER b | |
| 58 | - ON a.FRST_REGISTER_ID = b.ESNTL_ID | |
| 59 | - LEFT OUTER JOIN LETTCCMMNDETAILCODE c | |
| 60 | - ON a.TMPLAT_SE_CODE = c.CODE | |
| 61 | - WHERE | |
| 62 | - c.CODE_ID = 'COM005' | |
| 63 | - ]]> | |
| 64 | - <isNotEmpty property="typeFlag"> | |
| 65 | - AND a.TMPLAT_SE_CODE = #tmplatSeCode# | |
| 66 | - </isNotEmpty> | |
| 67 | - <isEqual prepend="AND" property="searchCnd" compareValue="0"> | |
| 68 | - <![CDATA[ a.TMPLAT_NM LIKE CONCAT ('%', #searchWrd#,'%') ]]> | |
| 69 | - </isEqual> | |
| 70 | - <isEqual prepend="AND" property="searchCnd" compareValue="1"> | |
| 71 | - <![CDATA[ c.CODE_NM LIKE CONCAT ('%', #searchWrd#,'%') ]]> | |
| 72 | - </isEqual> | |
| 73 | - <![CDATA[ | |
| 74 | - ORDER BY a.FRST_REGIST_PNTTM DESC | |
| 75 | - LIMIT #recordCountPerPage# OFFSET #firstIndex# | |
| 76 | - ]]> | |
| 77 | - </select> | |
| 78 | - | |
| 79 | - <select id="TemplateManageDAO.selectTemplateInfsCnt" parameterClass="TemplateInfVO" resultClass="java.lang.Integer" > | |
| 80 | - <![CDATA[ | |
| 81 | - SELECT | |
| 82 | - COUNT(a.TMPLAT_ID) | |
| 83 | - FROM | |
| 84 | - LETTNTMPLATINFO a | |
| 85 | - LEFT OUTER JOIN COMVNUSERMASTER b | |
| 86 | - ON a.FRST_REGISTER_ID = b.ESNTL_ID | |
| 87 | - LEFT OUTER JOIN LETTCCMMNDETAILCODE c | |
| 88 | - ON a.TMPLAT_SE_CODE = c.CODE | |
| 89 | - WHERE | |
| 90 | - c.CODE_ID = 'COM005' | |
| 91 | - ]]> | |
| 92 | - <isNotEmpty property="typeFlag"> | |
| 93 | - AND a.TMPLAT_SE_CODE = #tmplatSeCode# | |
| 94 | - </isNotEmpty> | |
| 95 | - <isEqual prepend="AND" property="searchCnd" compareValue="0"> | |
| 96 | - <![CDATA[ a.TMPLAT_NM LIKE CONCAT ('%', #searchWrd#,'%') ]]> | |
| 97 | - </isEqual> | |
| 98 | - <isEqual prepend="AND" property="searchCnd" compareValue="1"> | |
| 99 | - <![CDATA[ c.CODE_NM LIKE CONCAT ('%', #searchWrd#,'%') ]]> | |
| 100 | - </isEqual> | |
| 101 | - </select> | |
| 102 | - | |
| 103 | - <select id="TemplateManageDAO.selectTemplateInf" parameterClass="TemplateInfVO" resultMap="tmplatDetail" > | |
| 104 | - <![CDATA[ | |
| 105 | - SELECT | |
| 106 | - a.TMPLAT_ID, a.TMPLAT_NM, a.TMPLAT_SE_CODE, a.TMPLAT_COURS, a.USE_AT, | |
| 107 | - a.FRST_REGISTER_ID, a.FRST_REGIST_PNTTM, | |
| 108 | - b.USER_NM AS FRST_REGISTER_NM, c.CODE_NM AS TMPLAT_SE_CODE_NM, | |
| 109 | - a.LAST_UPDUSR_ID, | |
| 110 | - d.USER_NM AS LAST_UPDUSR_NM, a.LAST_UPDT_PNTTM | |
| 111 | - FROM | |
| 112 | - LETTNTMPLATINFO a | |
| 113 | - LEFT OUTER JOIN COMVNUSERMASTER b | |
| 114 | - ON a.FRST_REGISTER_ID = b.ESNTL_ID | |
| 115 | - LEFT OUTER JOIN LETTCCMMNDETAILCODE c | |
| 116 | - ON a.TMPLAT_SE_CODE = c.CODE | |
| 117 | - LEFT OUTER JOIN LETTNEMPLYRINFO d | |
| 118 | - ON a.LAST_UPDUSR_ID = d.EMPLYR_ID | |
| 119 | - WHERE | |
| 120 | - c.CODE_ID = 'COM005' | |
| 121 | - AND | |
| 122 | - a.TMPLAT_ID = #tmplatId# | |
| 123 | - ]]> | |
| 124 | - </select> | |
| 125 | - | |
| 126 | - <update id="TemplateManageDAO.updateTemplateInf" parameterClass="TemplateInf"> | |
| 127 | - <![CDATA[ | |
| 128 | - UPDATE LETTNTMPLATINFO SET | |
| 129 | - TMPLAT_SE_CODE = #tmplatSeCode#, | |
| 130 | - TMPLAT_COURS = #tmplatCours#, | |
| 131 | - USE_AT = #useAt#, | |
| 132 | - LAST_UPDUSR_ID = #lastUpdusrId#, | |
| 133 | - LAST_UPDT_PNTTM = SYSDATE() | |
| 134 | - WHERE TMPLAT_ID = #tmplatId# | |
| 135 | - ]]> | |
| 136 | - </update> | |
| 137 | - | |
| 138 | - <update id="TemplateManageDAO.deleteTemplateInf" parameterClass="TemplateInf"> | |
| 139 | - <![CDATA[ | |
| 140 | - UPDATE LETTNBBSMASTER SET | |
| 141 | - USE_AT = 'N', | |
| 142 | - LAST_UPDUSR_ID = #lastUpdusrId#, | |
| 143 | - LAST_UPDT_PNTTM = SYSDATE() | |
| 144 | - WHERE TMPLAT_ID = #tmplatId# | |
| 145 | - ]]> | |
| 146 | - </update> | |
| 147 | - | |
| 148 | - <select id="TemplateManageDAO.selectTemplateInfsByCode" parameterClass="TemplateInfVO" resultMap="tmplatList" > | |
| 149 | - <![CDATA[ | |
| 150 | - SELECT | |
| 151 | - a.TMPLAT_ID, a.TMPLAT_NM, a.TMPLAT_SE_CODE, a.TMPLAT_COURS, a.USE_AT, | |
| 152 | - a.FRST_REGISTER_ID, a.FRST_REGIST_PNTTM, | |
| 153 | - b.USER_NM AS FRST_REGISTER_NM, c.CODE_NM AS TMPLAT_SE_CODE_NM | |
| 154 | - FROM | |
| 155 | - LETTNTMPLATINFO a | |
| 156 | - LEFT OUTER JOIN COMVNUSERMASTER b | |
| 157 | - ON a.FRST_REGISTER_ID = b.ESNTL_ID | |
| 158 | - LEFT OUTER JOIN LETTCCMMNDETAILCODE c | |
| 159 | - ON a.TMPLAT_SE_CODE = c.CODE | |
| 160 | - WHERE | |
| 161 | - c.CODE_ID = 'COM005' | |
| 162 | - AND | |
| 163 | - a.TMPLAT_SE_CODE = #tmplatSeCode# | |
| 164 | - ORDER BY a.FRST_REGIST_PNTTM DESC | |
| 165 | - ]]> | |
| 166 | - </select> | |
| 167 | - | |
| 168 | -</sqlMap> |
--- target/classes/egovframework/sqlmap/let/cop/org/EgovOrgChart_SQL_Mysql.xml
... | ... | @@ -1,222 +0,0 @@ |
| 1 | -<?xml version="1.0" encoding="UTF-8"?> | |
| 2 | -<!DOCTYPE sqlMap PUBLIC "-//iBATIS.com//DTD SQL Map 2.0//EN" "http://www.ibatis.com/dtd/sql-map-config-2.dtd"> | |
| 3 | - | |
| 4 | -<sqlMap namespace="OrgChartManage"> | |
| 5 | - | |
| 6 | - <typeAlias alias="egovMap" type="egovframework.rte.psl.dataaccess.util.EgovMap"/> | |
| 7 | - <typeAlias alias="PartInfVO" type="itn.let.cop.org.service.PartInfVO"/> | |
| 8 | - <typeAlias alias="EmpInfVO" type="itn.let.cop.org.service.EmpInfVO"/> | |
| 9 | - | |
| 10 | - <resultMap id="partInfList" class="itn.let.cop.org.service.PartInfVO"> | |
| 11 | - <result property="partIdx" column="PART_IDX" columnIndex="1"/> | |
| 12 | - <result property="partTitle" column="PART_TITLE" columnIndex="2"/> | |
| 13 | - <result property="upperIdx" column="UPPER_IDX" columnIndex="3"/> | |
| 14 | - <result property="depth" column="DEPTH" columnIndex="4"/> | |
| 15 | - <result property="insertDate" column="INSERT_DATE" columnIndex="5"/> | |
| 16 | - <result property="sortOrd" column="SORT_ORD" columnIndex="6"/> | |
| 17 | - </resultMap> | |
| 18 | - | |
| 19 | - <resultMap id="empInfList" class="itn.let.cop.org.service.EmpInfVO"> | |
| 20 | - <result property="paIdx" column="PA_IDX" columnIndex="1"/> | |
| 21 | - <result property="paName" column="PA_NAME" columnIndex="2"/> | |
| 22 | - <result property="paGrade" column="PA_GRADE" columnIndex="3"/> | |
| 23 | - <result property="partIdx" column="PART_IDX" columnIndex="4"/> | |
| 24 | - <result property="insertDate" column="INSERT_DATE" columnIndex="5"/> | |
| 25 | - <result property="paJob" column="PA_JOB" columnIndex="6"/> | |
| 26 | - <result property="paTel" column="PA_TEL" columnIndex="7"/> | |
| 27 | - <result property="sortOrd" column="SORT_ORD" columnIndex="8"/> | |
| 28 | - </resultMap> | |
| 29 | - | |
| 30 | - <select id="orgChartManageDAO.selectPartInfs" parameterClass="PartInfVO" resultMap="partInfList" > | |
| 31 | - <![CDATA[ | |
| 32 | - WITH RECURSIVE partinfo AS ( | |
| 33 | - SELECT PART_IDX, | |
| 34 | - PART_TITLE, | |
| 35 | - UPPER_IDX, | |
| 36 | - 1 AS DEPTH, | |
| 37 | - INSERT_DATE, | |
| 38 | - SORT_ORD, | |
| 39 | - CAST(SORT_ORD AS CHAR(50)) AS SORT_LPAD | |
| 40 | - FROM TB_PARTINFO | |
| 41 | - WHERE UPPER_IDX = 0 | |
| 42 | - UNION ALL | |
| 43 | - SELECT sub_partinfo.PART_IDX, | |
| 44 | - sub_partinfo.PART_TITLE, | |
| 45 | - sub_partinfo.UPPER_IDX, | |
| 46 | - partinfo.DEPTH + 1 AS DEPTH, | |
| 47 | - sub_partinfo.INSERT_DATE, | |
| 48 | - sub_partinfo.SORT_ORD, | |
| 49 | - CONCAT(partinfo.SORT_LPAD, ",", LPAD(sub_partinfo.SORT_ORD, 5, 0)) AS SORT_LPAD | |
| 50 | - FROM TB_PARTINFO AS sub_partinfo | |
| 51 | - INNER JOIN partinfo ON partinfo.PART_IDX = sub_partinfo.UPPER_IDX | |
| 52 | - ) | |
| 53 | - SELECT PART_IDX, PART_TITLE, UPPER_IDX, DEPTH, INSERT_DATE, SORT_ORD | |
| 54 | - FROM partinfo | |
| 55 | - ORDER BY SORT_LPAD | |
| 56 | - ]]> | |
| 57 | - </select> | |
| 58 | - | |
| 59 | - <update id="orgChartManageDAO.updatePartTitle" parameterClass="PartInfVO" > | |
| 60 | - <![CDATA[ | |
| 61 | - UPDATE TB_PARTINFO | |
| 62 | - SET PART_TITLE = #partTitle# | |
| 63 | - WHERE PART_IDX = #partIdx# | |
| 64 | - ]]> | |
| 65 | - </update> | |
| 66 | - | |
| 67 | - <update id="orgChartManageDAO.updatePartOrder" parameterClass="PartInfVO" > | |
| 68 | - <![CDATA[ | |
| 69 | - UPDATE TB_PARTINFO SET | |
| 70 | - UPPER_IDX = #upperIdx#, | |
| 71 | - SORT_ORD = #sortOrd# | |
| 72 | - WHERE PART_IDX = #partIdx# | |
| 73 | - ]]> | |
| 74 | - </update> | |
| 75 | - | |
| 76 | - <update id="orgChartManageDAO.updatePartSortOrderIncrs" parameterClass="PartInfVO" > | |
| 77 | - <![CDATA[ | |
| 78 | - UPDATE TB_PARTINFO SET | |
| 79 | - SORT_ORD = SORT_ORD + 1 | |
| 80 | - WHERE UPPER_IDX = #upperIdx# | |
| 81 | - AND SORT_ORD >= #incrsSortOrd# | |
| 82 | - ]]> | |
| 83 | - </update> | |
| 84 | - | |
| 85 | - <update id="orgChartManageDAO.insertPartInf" parameterClass="PartInfVO" > | |
| 86 | - <![CDATA[ | |
| 87 | - INSERT INTO TB_PARTINFO ( | |
| 88 | - PART_IDX, | |
| 89 | - PART_TITLE, | |
| 90 | - UPPER_IDX, | |
| 91 | - DEPTH, | |
| 92 | - INSERT_DATE, | |
| 93 | - SORT_ORD | |
| 94 | - ) SELECT | |
| 95 | - (SELECT IFNULL(MAX(PART_IDX), 0) + 1 FROM TB_PARTINFO) AS PART_IDX, | |
| 96 | - #partTitle# AS PART_TITLE, | |
| 97 | - #upperIdx# AS UPPER_IDX, | |
| 98 | - #depth# AS DEPTH, | |
| 99 | - SYSDATE() AS INSERT_DATE, | |
| 100 | - #sortOrd# AS SORT_ORD | |
| 101 | - ]]> | |
| 102 | - </update> | |
| 103 | - | |
| 104 | - <procedure id="orgChartManageDAO.deletePart" parameterClass="PartInfVO" > | |
| 105 | - <![CDATA[ | |
| 106 | - { CALL P_DELETE_PART(#partIdx#) } | |
| 107 | - ]]> | |
| 108 | - </procedure> | |
| 109 | - | |
| 110 | - <select id="orgChartManageDAO.selectPartEmpInf" parameterClass="EmpInfVO" resultMap="empInfList" > | |
| 111 | - <![CDATA[ | |
| 112 | - SELECT | |
| 113 | - PA_IDX, | |
| 114 | - PA_NAME, | |
| 115 | - PA_GRADE, | |
| 116 | - PART_IDX, | |
| 117 | - INSERT_DATE, | |
| 118 | - PA_JOB, | |
| 119 | - PA_TEL, | |
| 120 | - SORT_ORD | |
| 121 | - FROM TB_PARTACCOUNT | |
| 122 | - WHERE PART_IDX = #partIdx# | |
| 123 | - ]]> | |
| 124 | - <isNotEqual property="paIdx" compareValue="0"> | |
| 125 | - AND PA_IDX = #paIdx# | |
| 126 | - </isNotEqual> | |
| 127 | - <![CDATA[ | |
| 128 | - ORDER BY SORT_ORD | |
| 129 | - ]]> | |
| 130 | - </select> | |
| 131 | - | |
| 132 | - <update id="orgChartManageDAO.insertEmpInf" parameterClass="EmpInfVO" > | |
| 133 | - <![CDATA[ | |
| 134 | - INSERT INTO TB_PARTACCOUNT ( | |
| 135 | - PA_IDX, | |
| 136 | - PA_NAME, | |
| 137 | - PA_GRADE, | |
| 138 | - PART_IDX, | |
| 139 | - INSERT_DATE, | |
| 140 | - PA_JOB, | |
| 141 | - PA_TEL, | |
| 142 | - SORT_ORD | |
| 143 | - ) SELECT | |
| 144 | - (SELECT IFNULL(MAX(PA_IDX), 0) + 1 FROM TB_PARTACCOUNT) AS PA_IDX, | |
| 145 | - #paName# AS PA_NAME, | |
| 146 | - #paGrade# AS PA_GRADE, | |
| 147 | - #partIdx# AS PART_IDX, | |
| 148 | - SYSDATE() AS INSERT_DATE, | |
| 149 | - #paJob# AS PA_JOB, | |
| 150 | - #paTel# AS PA_TEL, | |
| 151 | - #sortOrd# AS SORT_ORD | |
| 152 | - ]]> | |
| 153 | - </update> | |
| 154 | - | |
| 155 | - <update id="orgChartManageDAO.updateEmpInf" parameterClass="EmpInfVO" > | |
| 156 | - <![CDATA[ | |
| 157 | - UPDATE TB_PARTACCOUNT SET | |
| 158 | - PA_NAME = #paName#, | |
| 159 | - PA_GRADE = #paGrade#, | |
| 160 | - PART_IDX = #partIdx#, | |
| 161 | - PA_JOB = #paJob#, | |
| 162 | - PA_TEL = #paTel#, | |
| 163 | - SORT_ORD = #sortOrd# | |
| 164 | - WHERE PA_IDX = #paIdx# | |
| 165 | - ]]> | |
| 166 | - </update> | |
| 167 | - | |
| 168 | - <delete id="orgChartManageDAO.deleteEmpInf" parameterClass="EmpInfVO" > | |
| 169 | - <![CDATA[ | |
| 170 | - DELETE FROM TB_PARTACCOUNT | |
| 171 | - WHERE PA_IDX = #paIdx# | |
| 172 | - ]]> | |
| 173 | - </delete> | |
| 174 | - | |
| 175 | - <select id="orgChartManageDAO.selectChartDepth" parameterClass="PartInfVO" resultClass="PartInfVO" > | |
| 176 | - SELECT PART_IDX partIdx, | |
| 177 | - PART_TITLE partTitle , | |
| 178 | - UPPER_IDX upperIdx , | |
| 179 | - DEPTH depth | |
| 180 | - FROM TB_PARTINFO | |
| 181 | - WHERE 1=1 | |
| 182 | - AND DEPTH = #depth# | |
| 183 | - <isNotNull property="upperIdx"> | |
| 184 | - AND UPPER_IDX = #upperIdx# | |
| 185 | - </isNotNull> | |
| 186 | - </select> | |
| 187 | - | |
| 188 | - <select id="orgChartManageDAO.selectUserPart" parameterClass="PartInfVO" resultClass="PartInfVO" > | |
| 189 | - WITH RECURSIVE partinfo AS | |
| 190 | - ( | |
| 191 | - SELECT PART_IDX, | |
| 192 | - PART_TITLE, | |
| 193 | - UPPER_IDX, | |
| 194 | - DEPTH, | |
| 195 | - INSERT_DATE, | |
| 196 | - SORT_ORD, | |
| 197 | - CAST(SORT_ORD AS CHAR(50)) AS SORT_LPAD | |
| 198 | - FROM TB_PARTINFO | |
| 199 | - WHERE PART_IDX = #partIdx# | |
| 200 | - UNION ALL | |
| 201 | - SELECT sub_partinfo.PART_IDX, | |
| 202 | - sub_partinfo.PART_TITLE, | |
| 203 | - sub_partinfo.UPPER_IDX, | |
| 204 | - sub_partinfo.DEPTH , | |
| 205 | - sub_partinfo.INSERT_DATE, | |
| 206 | - sub_partinfo.SORT_ORD, | |
| 207 | - CONCAT(partinfo.SORT_LPAD, ",", LPAD(sub_partinfo.SORT_ORD, 5, 0)) AS SORT_LPAD | |
| 208 | - FROM TB_PARTINFO AS sub_partinfo | |
| 209 | - INNER JOIN partinfo | |
| 210 | - ON sub_partinfo.PART_IDX = partinfo.UPPER_IDX | |
| 211 | - | |
| 212 | - ) | |
| 213 | - SELECT PART_IDX as partIdx, | |
| 214 | - PART_TITLE as partTitle, | |
| 215 | - UPPER_IDX as upperIdx, | |
| 216 | - DEPTH as depth, | |
| 217 | - SORT_ORD as sortOrd | |
| 218 | - FROM partinfo | |
| 219 | - ORDER BY DEPTH | |
| 220 | - </select> | |
| 221 | - | |
| 222 | -</sqlMap> |
--- target/classes/egovframework/sqlmap/let/cop/resve/ResveManage_SQL_Mysql.xml
... | ... | @@ -1,336 +0,0 @@ |
| 1 | -<?xml version="1.0" encoding="UTF-8"?> | |
| 2 | -<!DOCTYPE sqlMap PUBLIC "-//iBATIS.com//DTD SQL Map 2.0//EN" "http://www.ibatis.com/dtd/sql-map-config-2.dtd"> | |
| 3 | - | |
| 4 | -<sqlMap namespace="ResveManage"> | |
| 5 | - | |
| 6 | - <typeAlias alias="egovMap" type="egovframework.rte.psl.dataaccess.util.EgovMap"/> | |
| 7 | - <typeAlias alias="ResveVO" type="itn.let.cop.resve.service.ResveVO"/> | |
| 8 | - <typeAlias alias="Resve" type="itn.let.cop.resve.service.Resve"/> | |
| 9 | - <typeAlias alias="ComDefaultVO" type="itn.com.cmm.ComDefaultVO"/> | |
| 10 | - | |
| 11 | - <resultMap id="resveList" class="itn.let.cop.resve.service.ResveVO"> | |
| 12 | - <result property="applyNum" column="APPLY_NUM" /> | |
| 13 | - <result property="userName" column="USER_NAME" /> | |
| 14 | - <result property="userTypeNm" column="USER_TYPE_NM" /> | |
| 15 | - <result property="resSdate" column="RES_SDATE" /> | |
| 16 | - <result property="resEdate" column="RES_EDATE" /> | |
| 17 | - <result property="resStart" column="RES_START" /> | |
| 18 | - <result property="resStateNm" column="RES_STATE_NM" /> | |
| 19 | - <result property="exName" column="EX_NAME" /> | |
| 20 | - <result property="exRoom1" column="EX_ROOM1" /> | |
| 21 | - <result property="exRoom2" column="EX_ROOM2" /> | |
| 22 | - <result property="exRoom3" column="EX_ROOM3" /> | |
| 23 | - <result property="exRoom4" column="EX_ROOM4" /> | |
| 24 | - <result property="exRoom5" column="EX_ROOM5" /> | |
| 25 | - <result property="exRoom6" column="EX_ROOM6" /> | |
| 26 | - <result property="imgAtchFileId" column="IMG_ATCH_FILE_ID" /> | |
| 27 | - <result property="thumbAtchFileId" column="THUMB_ATCH_FILE_ID" /> | |
| 28 | - <result property="portfolioAtchFileId" column="PORTFOLIO_ATCH_FILE_ID" /> | |
| 29 | - </resultMap> | |
| 30 | - | |
| 31 | - <resultMap id="resveDetail" class="itn.let.cop.resve.service.ResveVO"> | |
| 32 | - <result property="applyNum" column="APPLY_NUM" /> | |
| 33 | - <result property="userName" column="USER_NAME" /> | |
| 34 | - <result property="userType" column="USER_TYPE" /> | |
| 35 | - <result property="email" column="EMAIL" /> | |
| 36 | - <result property="display" column="DISPLAY" /> | |
| 37 | - <result property="maindisplay" column="MAINDISPLAY" /> | |
| 38 | - <result property="resSdate" column="RES_SDATE" /> | |
| 39 | - <result property="resEdate" column="RES_EDATE" /> | |
| 40 | - <result property="resStart" column="RES_START" /> | |
| 41 | - <result property="resState" column="RES_STATE" /> | |
| 42 | - <result property="recordStatus" column="RECORD_STATUS" /> | |
| 43 | - <result property="exDevise" column="EX_DEVISE" /> | |
| 44 | - <result property="exName" column="EX_NAME" /> | |
| 45 | - <result property="exExplain" column="EX_EXPLAIN" /> | |
| 46 | - <result property="exHours" column="EX_HOURS" /> | |
| 47 | - <result property="exRoom1" column="EX_ROOM1" /> | |
| 48 | - <result property="exRoom2" column="EX_ROOM2" /> | |
| 49 | - <result property="exRoom3" column="EX_ROOM3" /> | |
| 50 | - <result property="exRoom4" column="EX_ROOM4" /> | |
| 51 | - <result property="exRoom5" column="EX_ROOM5" /> | |
| 52 | - <result property="exRoom6" column="EX_ROOM6" /> | |
| 53 | - <result property="telHome1" column="TEL_HOME1" /> | |
| 54 | - <result property="telHome2" column="TEL_HOME2" /> | |
| 55 | - <result property="telHome3" column="TEL_HOME3" /> | |
| 56 | - <result property="telMobile1" column="TEL_MOBILE1" /> | |
| 57 | - <result property="telMobile2" column="TEL_MOBILE2" /> | |
| 58 | - <result property="telMobile3" column="TEL_MOBILE3" /> | |
| 59 | - <result property="authorName" column="AUTHOR_NAME" /> | |
| 60 | - <result property="companyName" column="COMPANY_NAME" /> | |
| 61 | - <result property="companyNumber" column="COMPANY_NUMBER" /> | |
| 62 | - <result property="groupName" column="GROUP_NAME" /> | |
| 63 | - <result property="imgAtchFileId" column="IMG_ATCH_FILE_ID" /> | |
| 64 | - <result property="thumbAtchFileId" column="THUMB_ATCH_FILE_ID" /> | |
| 65 | - <result property="portfolioAtchFileId" column="PORTFOLIO_ATCH_FILE_ID" /> | |
| 66 | - </resultMap> | |
| 67 | - | |
| 68 | - <resultMap id="resveListWeb" class="itn.let.cop.resve.service.ResveVO"> | |
| 69 | - <result property="strDate" column="strDate" /> | |
| 70 | - <result property="exRoom1" column="EX_ROOM1" /> | |
| 71 | - <result property="exRoom2" column="EX_ROOM2" /> | |
| 72 | - <result property="exRoom3" column="EX_ROOM3" /> | |
| 73 | - <result property="exRoom5Am" column="EX_ROOM5_AM" /> | |
| 74 | - <result property="exRoom5Pm" column="EX_ROOM5_PM" /> | |
| 75 | - </resultMap> | |
| 76 | - | |
| 77 | - <select id="ResveManageDAO.selectResveManageList" parameterClass="ResveVO" resultMap="resveList" > | |
| 78 | - <![CDATA[ | |
| 79 | - SELECT | |
| 80 | - a.APPLY_NUM | |
| 81 | - ,c.CODE_NM as USER_TYPE_NM | |
| 82 | - ,a.EX_NAME | |
| 83 | - ,SUBSTR(TRIM(a.USER_NAME), 1, 1) as USER_NAME | |
| 84 | - ,a.EX_ROOM1 | |
| 85 | - ,a.EX_ROOM2 | |
| 86 | - ,a.EX_ROOM3 | |
| 87 | - ,a.EX_ROOM4 | |
| 88 | - ,a.EX_ROOM5 | |
| 89 | - ,a.EX_ROOM6 | |
| 90 | - ,DATE_FORMAT(a.RES_SDATE, '%Y-%m-%d') as RES_SDATE | |
| 91 | - ,DATE_FORMAT(a.RES_EDATE, '%Y-%m-%d') as RES_EDATE | |
| 92 | - ,b.CODE_NM as RES_STATE_NM | |
| 93 | - ,DATE_FORMAT(a.RES_START, '%Y-%m-%d') as RES_START | |
| 94 | - ,IFNULL(a.THUMB_ATCH_FILE_ID, '-') as THUMB_ATCH_FILE_ID | |
| 95 | - ,IFNULL(a.IMG_ATCH_FILE_ID, '-') as IMG_ATCH_FILE_ID | |
| 96 | - ,IFNULL(a.PORTFOLIO_ATCH_FILE_ID, '-') as PORTFOLIO_ATCH_FILE_ID | |
| 97 | - FROM TB_RESERVATION a | |
| 98 | - LEFT OUTER JOIN | |
| 99 | - (SELECT CODE_ID, CODE, CODE_NM FROM | |
| 100 | - LETTCCMMNDETAILCODE WHERE CODE_ID = 'ITN006' AND USE_AT='Y') b | |
| 101 | - ON a.RES_STATE = b.CODE | |
| 102 | - LEFT OUTER JOIN | |
| 103 | - (SELECT CODE_ID, CODE, CODE_NM FROM | |
| 104 | - LETTCCMMNDETAILCODE WHERE CODE_ID = 'ITN007' AND USE_AT='Y') c | |
| 105 | - ON a.USER_TYPE = c.CODE | |
| 106 | - WHERE RECORD_STATUS != 'D' | |
| 107 | - AND RES_STATE != 'a' /* 신청상태. a:의미파악안됨 */ | |
| 108 | - ]]> | |
| 109 | - <isEqual prepend="AND" property="searchCnd" compareValue="0"> | |
| 110 | - <![CDATA[ a.EX_NAME LIKE CONCAT ('%', #searchWrd#,'%') ]]> | |
| 111 | - </isEqual> | |
| 112 | - <isEqual prepend="AND" property="searchCnd" compareValue="1"> | |
| 113 | - <![CDATA[ a.USER_NAME LIKE CONCAT ('%', #searchWrd#,'%') ]]> | |
| 114 | - </isEqual> | |
| 115 | - <![CDATA[ | |
| 116 | - ORDER BY a.RES_START DESC | |
| 117 | - LIMIT #recordCountPerPage# OFFSET #firstIndex# | |
| 118 | - ]]> | |
| 119 | - </select> | |
| 120 | - | |
| 121 | - <select id="ResveManageDAO.selectResveManageListCnt" parameterClass="ResveVO" resultClass="java.lang.Integer" > | |
| 122 | - <![CDATA[ | |
| 123 | - SELECT | |
| 124 | - COUNT(1) | |
| 125 | - FROM TB_RESERVATION a | |
| 126 | - WHERE RECORD_STATUS != 'D' | |
| 127 | - AND RES_STATE != 'a' /* 신청상태. a:의미파악안됨 */ | |
| 128 | - ]]> | |
| 129 | - <isEqual prepend="AND" property="searchCnd" compareValue="0"> | |
| 130 | - <![CDATA[ a.EX_NAME LIKE CONCAT ('%', #searchWrd#,'%') ]]> | |
| 131 | - </isEqual> | |
| 132 | - <isEqual prepend="AND" property="searchCnd" compareValue="1"> | |
| 133 | - <![CDATA[ a.USER_NAME LIKE CONCAT ('%', #searchWrd#,'%') ]]> | |
| 134 | - </isEqual> | |
| 135 | - </select> | |
| 136 | - | |
| 137 | - <select id="ResveManageDAO.selectResveManageInf" parameterClass="ResveVO" resultMap="resveDetail" > | |
| 138 | - <![CDATA[ | |
| 139 | - SELECT | |
| 140 | - a.APPLY_NUM | |
| 141 | - ,a.USER_NAME | |
| 142 | - ,a.USER_TYPE | |
| 143 | - ,a.EMAIL | |
| 144 | - ,a.DISPLAY | |
| 145 | - ,a.MAINDISPLAY | |
| 146 | - ,DATE_FORMAT(a.RES_SDATE, '%Y-%m-%d') as RES_SDATE | |
| 147 | - ,DATE_FORMAT(a.RES_EDATE, '%Y-%m-%d') as RES_EDATE | |
| 148 | - ,a.RES_START | |
| 149 | - ,a.RES_STATE | |
| 150 | - ,a.RECORD_STATUS | |
| 151 | - ,a.EX_DEVISE | |
| 152 | - ,a.EX_NAME | |
| 153 | - ,a.EX_EXPLAIN | |
| 154 | - ,a.EX_HOURS | |
| 155 | - ,a.EX_ROOM1 | |
| 156 | - ,a.EX_ROOM2 | |
| 157 | - ,a.EX_ROOM3 | |
| 158 | - ,a.EX_ROOM4 | |
| 159 | - ,a.EX_ROOM5 | |
| 160 | - ,a.EX_ROOM6 | |
| 161 | - ,a.TEL_HOME1 | |
| 162 | - ,a.TEL_HOME2 | |
| 163 | - ,a.TEL_HOME3 | |
| 164 | - ,a.TEL_MOBILE1 | |
| 165 | - ,a.TEL_MOBILE2 | |
| 166 | - ,a.TEL_MOBILE3 | |
| 167 | - ,a.AUTHOR_NAME | |
| 168 | - ,a.COMPANY_NAME | |
| 169 | - ,a.COMPANY_NUMBER | |
| 170 | - ,a.GROUP_NAME | |
| 171 | - ,a.IMG_ATCH_FILE_ID | |
| 172 | - ,a.THUMB_ATCH_FILE_ID | |
| 173 | - ,a.PORTFOLIO_ATCH_FILE_ID | |
| 174 | - FROM TB_RESERVATION a | |
| 175 | - LEFT OUTER JOIN | |
| 176 | - (SELECT CODE_ID, CODE, CODE_NM FROM | |
| 177 | - LETTCCMMNDETAILCODE WHERE CODE_ID = 'ITN006' AND USE_AT='Y') b | |
| 178 | - ON a.RES_STATE = b.CODE | |
| 179 | - LEFT OUTER JOIN | |
| 180 | - (SELECT CODE_ID, CODE, CODE_NM FROM | |
| 181 | - LETTCCMMNDETAILCODE WHERE CODE_ID = 'ITN007' AND USE_AT='Y') c | |
| 182 | - ON a.USER_TYPE = c.CODE | |
| 183 | - WHERE RECORD_STATUS != 'D' | |
| 184 | - AND RES_STATE != 'a' /* 신청상태. a:의미파악안됨 */ | |
| 185 | - AND a.APPLY_NUM = #applyNum# | |
| 186 | - ]]> | |
| 187 | - </select> | |
| 188 | - | |
| 189 | - <update id="ResveManageDAO.updateResveManageInf" parameterClass="Resve"> | |
| 190 | - <![CDATA[ | |
| 191 | - UPDATE TB_RESERVATION | |
| 192 | - SET RES_STATE = #resState# | |
| 193 | - WHERE RECORD_STATUS != 'D' | |
| 194 | - AND RES_STATE != 'a' /* 신청상태. a:의미파악안됨 */ | |
| 195 | - AND APPLY_NUM = #applyNum# | |
| 196 | - ]]> | |
| 197 | - </update> | |
| 198 | - | |
| 199 | - <update id="ResveManageDAO.insertResveManage" parameterClass="Resve" > | |
| 200 | - <![CDATA[ | |
| 201 | - INSERT INTO TB_RESERVATION ( | |
| 202 | - APPLY_NUM, USER_NAME, USER_TYPE, EMAIL, DISPLAY, MAINDISPLAY, | |
| 203 | - RES_SDATE, RES_EDATE, RES_START, RES_STATE, RECORD_STATUS, | |
| 204 | - EX_DEVISE, EX_NAME, EX_EXPLAIN, EX_HOURS, | |
| 205 | - EX_ROOM1, EX_ROOM2, EX_ROOM3, EX_ROOM4, EX_ROOM5, EX_ROOM6, | |
| 206 | - TEL_HOME1, TEL_HOME2, TEL_HOME3, TEL_MOBILE1, TEL_MOBILE2, TEL_MOBILE3, | |
| 207 | - AUTHOR_NAME, COMPANY_NAME, COMPANY_NUMBER, GROUP_NAME, | |
| 208 | - IMG_ATCH_FILE_ID, THUMB_ATCH_FILE_ID, PORTFOLIO_ATCH_FILE_ID, MEMBER_ID | |
| 209 | - ) VALUES ( | |
| 210 | - (SELECT IFNULL(MAX(APPLY_NUM), 0)+1 FROM TB_RESERVATION a), | |
| 211 | - #userName#, #userType#, #email#, 'Y', 'N', | |
| 212 | - #resSdate#, #resEdate#, SYSDATE(), #resState#, '', | |
| 213 | - #exDevise#, #exName#, #exExplain#, #exHours#, | |
| 214 | - #exRoom1#, #exRoom2#, #exRoom3#, #exRoom4#, #exRoom5#, #exRoom6#, | |
| 215 | - #telHome1#, #telHome2#, #telHome3#, #telMobile1#, #telMobile2#, #telMobile3#, | |
| 216 | - #authorName#, #companyName#, #companyNumber#, #groupName#, | |
| 217 | - #imgAtchFileId#, #thumbAtchFileId#, #portfolioAtchFileId#, #memberId# | |
| 218 | - ) | |
| 219 | - ]]> | |
| 220 | - </update> | |
| 221 | - | |
| 222 | - <update id="ResveManageDAO.deleteResveManage" parameterClass="Resve" > | |
| 223 | - <![CDATA[ | |
| 224 | - UPDATE TB_RESERVATION SET | |
| 225 | - RECORD_STATUS = 'D' | |
| 226 | - WHERE APPLY_NUM = #applyNum# | |
| 227 | - ]]> | |
| 228 | - </update> | |
| 229 | - | |
| 230 | - <!-- 대관신청 가능일 조회 (전시관) --> | |
| 231 | - <select id="ResveManageDAO.resveResSdateList" parameterClass="Resve" resultClass="egovMap" > | |
| 232 | - <![CDATA[ | |
| 233 | - SELECT | |
| 234 | - DATE_FORMAT(a.RES_SDATE, '%Y%m%d') as RES_SDATE | |
| 235 | - FROM TB_RESERVATION a | |
| 236 | - WHERE 1=1 | |
| 237 | - AND a.RECORD_STATUS != 'D' | |
| 238 | - AND a.RES_STATE = 'b' | |
| 239 | - AND a.RES_SDATE BETWEEN #searchDate# and #searchDate1# | |
| 240 | - AND (1=2 | |
| 241 | - ]]> | |
| 242 | - <isEqual property="exRoom1" compareValue="r"> | |
| 243 | - OR a.EX_ROOM1 = 'r' | |
| 244 | - </isEqual> | |
| 245 | - <isEqual property="exRoom2" compareValue="r"> | |
| 246 | - OR a.EX_ROOM2 = 'r' | |
| 247 | - </isEqual> | |
| 248 | - <isEqual property="exRoom3" compareValue="r"> | |
| 249 | - OR a.EX_ROOM3 = 'r' | |
| 250 | - </isEqual> | |
| 251 | - <![CDATA[ | |
| 252 | - ) | |
| 253 | - ORDER BY a.RES_SDATE | |
| 254 | - ]]> | |
| 255 | - </select> | |
| 256 | - | |
| 257 | - <!-- 대관신청 가능일 조회 (교육장) --> | |
| 258 | - <select id="ResveManageDAO.resveResSdateList1" parameterClass="Resve" resultClass="egovMap" > | |
| 259 | - <![CDATA[ | |
| 260 | - SELECT | |
| 261 | - DATE_FORMAT(a.RES_SDATE, '%Y%m%d') as RES_SDATE | |
| 262 | - ,GROUP_CONCAT(EX_HOURS SEPARATOR '|') AS EX_HOURS | |
| 263 | - FROM TB_RESERVATION a | |
| 264 | - WHERE 1=1 | |
| 265 | - AND a.RECORD_STATUS != 'D' | |
| 266 | - AND a.RES_STATE = 'b' | |
| 267 | - AND a.RES_SDATE BETWEEN #searchDate# and #searchDate1# | |
| 268 | - AND a.EX_ROOM5 = 'r' | |
| 269 | - GROUP BY a.RES_SDATE | |
| 270 | - ORDER BY a.RES_SDATE | |
| 271 | - ]]> | |
| 272 | - </select> | |
| 273 | - | |
| 274 | - <!-- 대관신청 대관가능일 가능여부 --> | |
| 275 | - <select id="ResveManageDAO.resvePosbleDate" parameterClass="Resve" resultClass="java.lang.Integer" > | |
| 276 | - <![CDATA[ | |
| 277 | - SELECT | |
| 278 | - COUNT(1) | |
| 279 | - FROM TB_RESERVATION a | |
| 280 | - WHERE 1=1 | |
| 281 | - AND a.RECORD_STATUS != 'D' | |
| 282 | - AND a.RES_STATE = 'b' | |
| 283 | - AND a.RES_SDATE BETWEEN #resSdate# and #resEdate# | |
| 284 | - AND (1=2 | |
| 285 | - ]]> | |
| 286 | - <isEqual property="exRoom1" compareValue="r"> | |
| 287 | - OR a.EX_ROOM1 = 'r' | |
| 288 | - </isEqual> | |
| 289 | - <isEqual property="exRoom2" compareValue="r"> | |
| 290 | - OR a.EX_ROOM2 = 'r' | |
| 291 | - </isEqual> | |
| 292 | - <isEqual property="exRoom3" compareValue="r"> | |
| 293 | - OR a.EX_ROOM3 = 'r' | |
| 294 | - </isEqual> | |
| 295 | - <isEqual property="exRoom5" compareValue="r"> | |
| 296 | - OR a.EX_ROOM5 = 'r' | |
| 297 | - </isEqual> | |
| 298 | - <![CDATA[ | |
| 299 | - ) | |
| 300 | - ]]> | |
| 301 | - <isEqual property="exRoom5" compareValue="r"> | |
| 302 | - AND a.EX_HOURS = #exHours# | |
| 303 | - </isEqual> | |
| 304 | - </select> | |
| 305 | - | |
| 306 | - <select id="ResveManageDAO.selectResveManageListWeb" parameterClass="ResveVO" resultMap="resveListWeb" > | |
| 307 | - <![CDATA[ | |
| 308 | - WITH days AS ( | |
| 309 | - WITH RECURSIVE days AS ( | |
| 310 | - SELECT DATE_FORMAT(#searchDate# + INTERVAL 0 DAY, '%Y%m%d') AS strDate | |
| 311 | - UNION ALL | |
| 312 | - SELECT DATE_FORMAT(sub_days.strDate + INTERVAL 1 DAY, '%Y%m%d') AS strDate | |
| 313 | - FROM days AS sub_days | |
| 314 | - WHERE sub_days.strDate + INTERVAL 1 DAY < #searchDate# + INTERVAL 1 MONTH | |
| 315 | - ) | |
| 316 | - SELECT strDate | |
| 317 | - FROM days | |
| 318 | - ) | |
| 319 | - SELECT | |
| 320 | - days.strDate | |
| 321 | - , GROUP_CONCAT(IF(a.EX_ROOM1='r',CONCAT(a.APPLY_NUM, '|', a.EX_NAME, '|', IFNULL(a.AUTHOR_NAME, '')), '')) AS EX_ROOM1 | |
| 322 | - , GROUP_CONCAT(IF(a.EX_ROOM2='r',CONCAT(a.APPLY_NUM, '|', a.EX_NAME, '|', IFNULL(a.AUTHOR_NAME, '')), '')) AS EX_ROOM2 | |
| 323 | - , GROUP_CONCAT(IF(a.EX_ROOM3='r',CONCAT(a.APPLY_NUM, '|', a.EX_NAME, '|', IFNULL(a.AUTHOR_NAME, '')), '')) AS EX_ROOM3 | |
| 324 | - , GROUP_CONCAT(IF(a.EX_ROOM5='r' AND EX_HOURS='am' ,CONCAT(a.APPLY_NUM, '|', a.EX_NAME, '|', IFNULL(a.AUTHOR_NAME, '')), '')) AS EX_ROOM5_AM | |
| 325 | - , GROUP_CONCAT(IF(a.EX_ROOM5='r' AND EX_HOURS='pm' ,CONCAT(a.APPLY_NUM, '|', a.EX_NAME, '|', IFNULL(a.AUTHOR_NAME, '')), '')) AS EX_ROOM5_PM | |
| 326 | - FROM TB_RESERVATION a RIGHT OUTER JOIN days | |
| 327 | - ON days.strDate BETWEEN a.RES_SDATE AND a.RES_EDATE | |
| 328 | - AND a.RECORD_STATUS != 'D' | |
| 329 | - AND a.RES_STATE = 'b' | |
| 330 | - WHERE 1=1 | |
| 331 | - GROUP BY days.strDate | |
| 332 | - ORDER BY days.strDate | |
| 333 | - ]]> | |
| 334 | - </select> | |
| 335 | - | |
| 336 | -</sqlMap> |
--- target/classes/egovframework/sqlmap/let/cop/smt/sim/EgovIndvdlSchdulManage_SQL_Mysql.xml
... | ... | @@ -1,317 +0,0 @@ |
| 1 | -<?xml version="1.0" encoding="UTF-8"?> | |
| 2 | - | |
| 3 | -<!DOCTYPE sqlMap PUBLIC "-//ibatis.apache.org//DTD SQL Map 2.0//EN" "http://ibatis.apache.org/dtd/sql-map-2.dtd"> | |
| 4 | - | |
| 5 | -<sqlMap namespace="IndvdlSchdulManage"> | |
| 6 | - | |
| 7 | - <typeAlias alias="egovMap" type="egovframework.rte.psl.dataaccess.util.EgovMap"/> | |
| 8 | - <typeAlias alias="comDefaultVO" type="itn.com.cmm.ComDefaultVO"/> | |
| 9 | - <typeAlias alias="IndvdlSchdulManageVO" type="itn.let.cop.smt.sim.service.IndvdlSchdulManageVO"/> | |
| 10 | - | |
| 11 | - <resultMap id="IndvdlSchdulManage" class="itn.let.cop.smt.sim.service.IndvdlSchdulManageVO"> | |
| 12 | - <result property="schdulId" column="SCHDUL_ID" columnIndex="1"/> | |
| 13 | - <result property="schdulSe" column="SCHDUL_SE" columnIndex="2"/> | |
| 14 | - <result property="schdulDeptId" column="SCHDUL_DEPT_ID" columnIndex="3"/> | |
| 15 | - <result property="schdulDeptName" column="SCHDUL_DEPT_NAME" columnIndex="4"/> | |
| 16 | - | |
| 17 | - <result property="schdulKindCode" column="SCHDUL_KND_CODE" columnIndex="5"/> | |
| 18 | - <result property="schdulBgnde" column="SCHDUL_BEGINDE" columnIndex="6"/> | |
| 19 | - <result property="schdulEndde" column="SCHDUL_ENDDE" columnIndex="7"/> | |
| 20 | - <result property="schdulNm" column="SCHDUL_NM" columnIndex="8"/> | |
| 21 | - <result property="schdulCn" column="SCHDUL_CN" columnIndex="9"/> | |
| 22 | - <result property="schdulPlace" column="SCHDUL_PLACE" columnIndex="10"/> | |
| 23 | - <result property="schdulIpcrCode" column="SCHDUL_IPCR_CODE" columnIndex="11"/> | |
| 24 | - <result property="schdulChargerId" column="SCHDUL_CHARGER_ID" columnIndex="12"/> | |
| 25 | - <result property="schdulChargerName" column="SCHDUL_CHARGER_NAME" columnIndex="13"/> | |
| 26 | - | |
| 27 | - <result property="atchFileId" column="ATCH_FILE_ID" columnIndex="14"/> | |
| 28 | - <result property="reptitSeCode" column="REPTIT_SE_CODE" columnIndex="15"/> | |
| 29 | - <result property="frstRegisterPnttm" column="FRST_REGIST_PNTTM" columnIndex="16" /> | |
| 30 | - <result property="frstRegisterId" column="FRST_REGISTER_ID" columnIndex="17"/> | |
| 31 | - <result property="lastUpdusrPnttm" column="LAST_UPDT_PNTTM" columnIndex="18"/> | |
| 32 | - <result property="lastUpdusrId" column="LAST_UPDUSR_ID" columnIndex="19" /> | |
| 33 | - </resultMap> | |
| 34 | - | |
| 35 | - <!-- 메인페이지/일정관리조회 --> | |
| 36 | - <select id="IndvdlSchdulManage.selectIndvdlSchdulManageMainList" parameterClass="java.util.Map" resultClass="egovMap"> | |
| 37 | - SELECT | |
| 38 | - DATE_FORMAT(sysdate(),'%Y-%m-%d') TO_DAY, | |
| 39 | - A.SCHDUL_ID, | |
| 40 | - A.SCHDUL_SE, | |
| 41 | - A.SCHDUL_DEPT_ID, | |
| 42 | - A.SCHDUL_KND_CODE, | |
| 43 | - DATE_FORMAT(A.SCHDUL_BEGINDE, '%Y%m%d%H%i')SCHDUL_BGNDE, | |
| 44 | - DATE_FORMAT(A.SCHDUL_ENDDE, '%Y%m%d%H%i')SCHDUL_ENDDE, | |
| 45 | - A.SCHDUL_NM, | |
| 46 | - A.SCHDUL_CN, | |
| 47 | - A.SCHDUL_PLACE, | |
| 48 | - A.SCHDUL_IPCR_CODE, | |
| 49 | - A.SCHDUL_CHARGER_ID, | |
| 50 | - A.ATCH_FILE_ID, | |
| 51 | - DATE_FORMAT(A.FRST_REGIST_PNTTM,'%Y-%m-%d') FRST_REGIST_PNTTM, | |
| 52 | - A.FRST_REGISTER_ID, | |
| 53 | - A.LAST_UPDT_PNTTM, | |
| 54 | - A.LAST_UPDUSR_ID, | |
| 55 | - A.REPTIT_SE_CODE | |
| 56 | - FROM LETTNSCHDULINFO A | |
| 57 | - WHERE 1=1 | |
| 58 | - AND A.SCHDUL_KND_CODE = '2' | |
| 59 | - AND (A.SCHDUL_CHARGER_ID = #uniqId# OR A.FRST_REGISTER_ID = #uniqId#) | |
| 60 | - | |
| 61 | - <![CDATA[ | |
| 62 | - AND ( | |
| 63 | - ( SUBSTRING(A.SCHDUL_BEGINDE,1,8) > DATE_FORMAT(sysdate(),'%Y%m%d') AND SUBSTRING(A.SCHDUL_BEGINDE,1,8) <= DATE_FORMAT(sysdate(),'%Y%m%d')) | |
| 64 | - OR | |
| 65 | - ( SUBSTRING(A.SCHDUL_ENDDE,1,8) >DATE_FORMAT(sysdate(),'%Y%m%d') AND SUBSTRING(A.SCHDUL_BEGINDE,1,8) <= DATE_FORMAT(sysdate(),'%Y%m%d')) | |
| 66 | - ) | |
| 67 | - ]]> | |
| 68 | - | |
| 69 | - ORDER BY A.FRST_REGIST_PNTTM DESC | |
| 70 | - LIMIT 0, 4 | |
| 71 | - </select> | |
| 72 | - | |
| 73 | - <!-- 개인일정정보::목록조회 --> | |
| 74 | - <select id="IndvdlSchdulManage.selectIndvdlSchdulManageRetrieve" parameterClass="java.util.Map" resultClass="egovMap"> | |
| 75 | - <![CDATA[ | |
| 76 | - SELECT | |
| 77 | - A.SCHDUL_ID, | |
| 78 | - A.SCHDUL_SE, | |
| 79 | - A.SCHDUL_DEPT_ID, | |
| 80 | - A.SCHDUL_KND_CODE, | |
| 81 | - DATE_FORMAT(A.SCHDUL_BEGINDE, '%Y%m%d%H%i')SCHDUL_BGNDE, | |
| 82 | - DATE_FORMAT(A.SCHDUL_ENDDE, '%Y%m%d%H%i')SCHDUL_ENDDE, | |
| 83 | - A.SCHDUL_NM, | |
| 84 | - A.SCHDUL_CN, | |
| 85 | - A.SCHDUL_PLACE, | |
| 86 | - A.SCHDUL_IPCR_CODE, | |
| 87 | - A.SCHDUL_CHARGER_ID, | |
| 88 | - A.ATCH_FILE_ID, | |
| 89 | - A.FRST_REGIST_PNTTM, | |
| 90 | - A.FRST_REGISTER_ID, | |
| 91 | - A.LAST_UPDT_PNTTM, | |
| 92 | - A.LAST_UPDUSR_ID, | |
| 93 | - A.REPTIT_SE_CODE | |
| 94 | - FROM LETTNSCHDULINFO A | |
| 95 | - WHERE 1=1 | |
| 96 | - AND A.SCHDUL_KND_CODE = '2' | |
| 97 | - ]]> | |
| 98 | - <isNotEmpty property="searchMode"> | |
| 99 | - <isEqual property="searchMode" compareValue="MONTH"> | |
| 100 | - | |
| 101 | - <isNotEmpty property="searchMonth"> | |
| 102 | - <isNotEqual property="searchMonth" compareValue=""> | |
| 103 | - AND (#searchMonth# BETWEEN SUBSTRING(DATE_FORMAT(A.SCHDUL_BEGINDE,'%Y%m%d'), 1, 6) AND SUBSTRING(DATE_FORMAT(A.SCHDUL_ENDDE,'%Y%m%d'), 1, 6) ) | |
| 104 | - </isNotEqual> | |
| 105 | - </isNotEmpty> | |
| 106 | - | |
| 107 | - </isEqual> | |
| 108 | - <isEqual property="searchMode" compareValue="WEEK"> | |
| 109 | - <![CDATA[ | |
| 110 | - AND ( | |
| 111 | - ( SUBSTRING(DATE_FORMAT(A.SCHDUL_BEGINDE,'%Y%m%d'),1,8) > #schdulBgnde# AND SUBSTRING(DATE_FORMAT(A.SCHDUL_BEGINDE,'%Y%m%d'),1,8) <= #schdulEndde#) | |
| 112 | - OR | |
| 113 | - ( SUBSTRING(DATE_FORMAT(A.SCHDUL_ENDDE,'%Y%m%d'),1,8) > #schdulBgnde# AND SUBSTRING(DATE_FORMAT(A.SCHDUL_BEGINDE,'%Y%m%d'),1,8) <= #schdulEndde#) | |
| 114 | - ) | |
| 115 | - ]]> | |
| 116 | - </isEqual> | |
| 117 | - <isEqual property="searchMode" compareValue="DAILY"> | |
| 118 | - <![CDATA[ | |
| 119 | - AND (#searchDay# BETWEEN SUBSTRING(DATE_FORMAT(A.SCHDUL_BEGINDE,'%Y%m%d'), 1, 8) AND SUBSTRING(DATE_FORMAT(A.SCHDUL_ENDDE,'%Y%m%d'), 1, 8) ) | |
| 120 | - ]]> | |
| 121 | - </isEqual> | |
| 122 | - </isNotEmpty> | |
| 123 | - | |
| 124 | - <isNotEmpty property="searchKeyword"> | |
| 125 | - <isNotEqual property="searchKeyword" compareValue=""> | |
| 126 | - <isNotEqual property="searchCondition" compareValue=""> | |
| 127 | - AND SCHDUL_SE LIKE CONCAT(CONCAT('%', #searchKeyword#), '%') | |
| 128 | - </isNotEqual> | |
| 129 | - </isNotEqual> | |
| 130 | - </isNotEmpty> | |
| 131 | - | |
| 132 | - </select> | |
| 133 | - | |
| 134 | - <!-- 개인일정정보::상세보기 --> | |
| 135 | - <select id="IndvdlSchdulManage.selectIndvdlSchdulManageDetailVO" resultMap="IndvdlSchdulManage"> | |
| 136 | - SELECT | |
| 137 | - A.SCHDUL_ID, | |
| 138 | - A.SCHDUL_SE, | |
| 139 | - A.SCHDUL_DEPT_ID, | |
| 140 | - (SELECT ORGNZT_NM FROM LETTNORGNZTINFO WHERE ORGNZT_ID = A.SCHDUL_DEPT_ID) SCHDUL_DEPT_NAME, | |
| 141 | - A.SCHDUL_KND_CODE, | |
| 142 | - DATE_FORMAT(A.SCHDUL_BEGINDE, '%Y%m%d%H%i')SCHDUL_BEGINDE, | |
| 143 | - DATE_FORMAT(A.SCHDUL_ENDDE, '%Y%m%d%H%i')SCHDUL_ENDDE, | |
| 144 | - A.SCHDUL_NM, | |
| 145 | - A.SCHDUL_CN, | |
| 146 | - A.SCHDUL_PLACE, | |
| 147 | - A.SCHDUL_IPCR_CODE, | |
| 148 | - A.SCHDUL_CHARGER_ID, | |
| 149 | - (SELECT ESNTL_ID FROM LETTNEMPLYRINFO WHERE ESNTL_ID = A.SCHDUL_CHARGER_ID) SCHDUL_CHARGER_NAME, | |
| 150 | - A.ATCH_FILE_ID, | |
| 151 | - A.REPTIT_SE_CODE, | |
| 152 | - A.FRST_REGIST_PNTTM, | |
| 153 | - A.FRST_REGISTER_ID, | |
| 154 | - A.LAST_UPDT_PNTTM, | |
| 155 | - A.LAST_UPDUSR_ID | |
| 156 | - FROM LETTNSCHDULINFO A | |
| 157 | - WHERE 1=1 | |
| 158 | - AND SCHDUL_ID = #schdulId# | |
| 159 | - </select> | |
| 160 | - | |
| 161 | - <!-- 개인일정정보::목록조회_게시물정보 --> | |
| 162 | - <select id="IndvdlSchdulManage.selectIndvdlSchdulManage" parameterClass="comDefaultVO" resultClass="egovMap"> | |
| 163 | - <![CDATA[ | |
| 164 | - SELECT | |
| 165 | - A.SCHDUL_ID, | |
| 166 | - A.SCHDUL_SE, | |
| 167 | - A.SCHDUL_DEPT_ID, | |
| 168 | - A.SCHDUL_KND_CODE, | |
| 169 | - DATE_FORMAT(A.SCHDUL_BEGINDE, '%Y%m%d%H%i')SCHDUL_BGNDE, | |
| 170 | - DATE_FORMAT(A.SCHDUL_ENDDE, '%Y%m%d%H%i')SCHDUL_ENDDE, | |
| 171 | - A.SCHDUL_NM, | |
| 172 | - A.SCHDUL_CN, | |
| 173 | - A.SCHDUL_PLACE, | |
| 174 | - A.SCHDUL_IPCR_CODE, | |
| 175 | - A.SCHDUL_CHARGER_ID, | |
| 176 | - A.ATCH_FILE_ID, | |
| 177 | - A.FRST_REGIST_PNTTM, | |
| 178 | - A.FRST_REGISTER_ID, | |
| 179 | - A.LAST_UPDT_PNTTM, | |
| 180 | - A.LAST_UPDUSR_ID, | |
| 181 | - A.REPTIT_SE_CODE | |
| 182 | - FROM LETTNSCHDULINFO A | |
| 183 | - WHERE 1=1 | |
| 184 | - ]]> | |
| 185 | - <isNotEmpty property="searchKeyword"> | |
| 186 | - <isNotEqual property="searchKeyword" compareValue=""> | |
| 187 | - <isNotEqual property="searchCondition" compareValue=""> | |
| 188 | - AND SCHDUL_SE LIKE CONCAT(CONCAT('%', #searchKeyword#), '%') | |
| 189 | - </isNotEqual> | |
| 190 | - </isNotEqual> | |
| 191 | - </isNotEmpty> | |
| 192 | - <![CDATA[ | |
| 193 | - ORDER BY A.FRST_REGIST_PNTTM DESC | |
| 194 | - LIMIT #recordCountPerPage# OFFSET #firstIndex# | |
| 195 | - ]]> | |
| 196 | - </select> | |
| 197 | - | |
| 198 | - <!-- 개인일정정보::목록조회_게시물 총갯수 --> | |
| 199 | - <select id="IndvdlSchdulManage.selectIndvdlSchdulManageCnt" parameterClass="comDefaultVO" resultClass="int"> | |
| 200 | - SELECT | |
| 201 | - COUNT(*) totcnt | |
| 202 | - FROM LETTNSCHDULINFO | |
| 203 | - WHERE 1=1 | |
| 204 | - <isNotEmpty property="searchKeyword"> | |
| 205 | - <isNotEqual property="searchKeyword" compareValue=""> | |
| 206 | - <isNotEqual property="searchCondition" compareValue=""> | |
| 207 | - AND SCHDUL_SE LIKE CONCAT(CONCAT('%', #searchKeyword#), '%') | |
| 208 | - </isNotEqual> | |
| 209 | - </isNotEqual> | |
| 210 | - </isNotEmpty> | |
| 211 | - </select> | |
| 212 | - | |
| 213 | - | |
| 214 | - <!-- 개인일정정보::삭제 --> | |
| 215 | - <delete id="IndvdlSchdulManage.deleteDiaryManage"> | |
| 216 | - DELETE FROM LETTNDIARYINFO WHERE SCHDUL_ID = #schdulId#; | |
| 217 | - </delete> | |
| 218 | - <delete id="IndvdlSchdulManage.deleteIndvdlSchdulManage"> | |
| 219 | - <![CDATA[ | |
| 220 | - DELETE FROM LETTNSCHDULINFO WHERE SCHDUL_ID = #schdulId#; | |
| 221 | - ]]> | |
| 222 | - </delete> | |
| 223 | - | |
| 224 | - <!-- 개인일정정보::수정 --> | |
| 225 | - <update id="IndvdlSchdulManage.updateIndvdlSchdulManage"> | |
| 226 | - UPDATE LETTNSCHDULINFO | |
| 227 | - SET | |
| 228 | - SCHDUL_SE=#schdulSe#, | |
| 229 | - SCHDUL_DEPT_ID=#schdulDeptId#, | |
| 230 | - SCHDUL_KND_CODE=#schdulKindCode#, | |
| 231 | - SCHDUL_BEGINDE=#schdulBgnde#, | |
| 232 | - SCHDUL_ENDDE=#schdulEndde#, | |
| 233 | - SCHDUL_NM=#schdulNm#, | |
| 234 | - SCHDUL_CN=#schdulCn#, | |
| 235 | - SCHDUL_IPCR_CODE=#schdulIpcrCode#, | |
| 236 | - SCHDUL_CHARGER_ID=#schdulChargerId#, | |
| 237 | - ATCH_FILE_ID=#atchFileId#, | |
| 238 | - REPTIT_SE_CODE=#reptitSeCode#, | |
| 239 | - LAST_UPDT_PNTTM = sysdate(), | |
| 240 | - LAST_UPDUSR_ID = #lastUpdusrId# | |
| 241 | - WHERE SCHDUL_ID = #schdulId# | |
| 242 | - </update> | |
| 243 | - | |
| 244 | - <!-- 개인일정정보::상세보기 --> | |
| 245 | - <select id="IndvdlSchdulManage.selectIndvdlSchdulManageDetail" resultClass="egovMap"> | |
| 246 | - SELECT | |
| 247 | - A.SCHDUL_ID, | |
| 248 | - A.SCHDUL_SE, | |
| 249 | - A.SCHDUL_DEPT_ID, | |
| 250 | - (SELECT ORGNZT_NM FROM LETTNORGNZTINFO WHERE ORGNZT_ID = A.SCHDUL_DEPT_ID) SCHDUL_DEPT_NAME, | |
| 251 | - A.SCHDUL_KND_CODE, | |
| 252 | - DATE_FORMAT(A.SCHDUL_BEGINDE, '%Y%m%d%H%i')SCHDUL_BGNDE, | |
| 253 | - DATE_FORMAT(A.SCHDUL_ENDDE, '%Y%m%d%H%i')SCHDUL_ENDDE, | |
| 254 | - A.SCHDUL_NM, | |
| 255 | - A.SCHDUL_CN, | |
| 256 | - A.SCHDUL_PLACE, | |
| 257 | - A.SCHDUL_IPCR_CODE, | |
| 258 | - A.SCHDUL_CHARGER_ID, | |
| 259 | - (SELECT USER_NM FROM LETTNEMPLYRINFO WHERE ESNTL_ID = A.SCHDUL_CHARGER_ID) SCHDUL_CHARGER_NAME, | |
| 260 | - A.ATCH_FILE_ID, | |
| 261 | - A.FRST_REGIST_PNTTM, | |
| 262 | - A.FRST_REGISTER_ID, | |
| 263 | - A.LAST_UPDT_PNTTM, | |
| 264 | - A.LAST_UPDUSR_ID, | |
| 265 | - A.REPTIT_SE_CODE | |
| 266 | - FROM LETTNSCHDULINFO A | |
| 267 | - WHERE 1=1 | |
| 268 | - AND SCHDUL_ID = #schdulId# | |
| 269 | - </select> | |
| 270 | - | |
| 271 | - <!-- 개인일정정보::입력 --> | |
| 272 | - <insert id="IndvdlSchdulManage.insertIndvdlSchdulManage"> | |
| 273 | - <![CDATA[ | |
| 274 | - | |
| 275 | - INSERT INTO LETTNSCHDULINFO ( | |
| 276 | - SCHDUL_ID, | |
| 277 | - SCHDUL_SE, | |
| 278 | - SCHDUL_DEPT_ID, | |
| 279 | - SCHDUL_KND_CODE, | |
| 280 | - SCHDUL_BEGINDE, | |
| 281 | - SCHDUL_ENDDE, | |
| 282 | - SCHDUL_NM, | |
| 283 | - SCHDUL_CN, | |
| 284 | - SCHDUL_PLACE, | |
| 285 | - SCHDUL_IPCR_CODE, | |
| 286 | - SCHDUL_CHARGER_ID, | |
| 287 | - ATCH_FILE_ID, | |
| 288 | - REPTIT_SE_CODE, | |
| 289 | - FRST_REGIST_PNTTM, | |
| 290 | - FRST_REGISTER_ID, | |
| 291 | - LAST_UPDT_PNTTM, | |
| 292 | - LAST_UPDUSR_ID | |
| 293 | - )VALUES( | |
| 294 | - #schdulId#, | |
| 295 | - #schdulSe#, | |
| 296 | - #schdulDeptId#, | |
| 297 | - #schdulKindCode#, | |
| 298 | - STR_TO_DATE(DATE_FORMAT(#schdulBgnde#,'%Y %m %d %T'), '%Y %m %d %T'), | |
| 299 | - STR_TO_DATE(DATE_FORMAT(#schdulEndde#,'%Y %m %d %T'), '%Y %m %d %T'), | |
| 300 | - #schdulNm#, | |
| 301 | - #schdulCn#, | |
| 302 | - #schdulPlace#, | |
| 303 | - #schdulIpcrCode#, | |
| 304 | - #schdulChargerId#, | |
| 305 | - #atchFileId#, | |
| 306 | - #reptitSeCode#, | |
| 307 | - sysdate(), | |
| 308 | - #frstRegisterId#, | |
| 309 | - sysdate(), | |
| 310 | - #lastUpdusrId# | |
| 311 | - ) | |
| 312 | - | |
| 313 | - ]]> | |
| 314 | - </insert> | |
| 315 | - | |
| 316 | - | |
| 317 | -</sqlMap>(No newline at end of file) |
--- target/classes/egovframework/sqlmap/let/fax/Fax_SQL_Mysql.xml
... | ... | @@ -1,842 +0,0 @@ |
| 1 | -<?xml version="1.0" encoding="UTF-8"?> | |
| 2 | -<!DOCTYPE sqlMap PUBLIC "-//iBATIS.com//DTD SQL Map 2.0//EN" "http://ibatis.apache.org/dtd/sql-map-2.dtd"> | |
| 3 | -<sqlMap namespace="Fax"> | |
| 4 | - <typeAlias alias="faxConvertVO" type="itn.let.fax.user.service.FaxConvertVO"/> | |
| 5 | - <typeAlias alias="faxConvertMngVO" type="itn.let.fax.user.service.FaxConvertMngVO"/> | |
| 6 | - <typeAlias alias="faxTranVO" type="itn.let.fax.user.service.FaxTranVO"/> | |
| 7 | - <typeAlias alias="faxGroupDataVO" type="itn.let.fax.user.service.FaxGroupDataVO"/> | |
| 8 | - <typeAlias alias="faxReceiverVO" type="itn.let.fax.user.service.FaxReceiverVO"/> | |
| 9 | - <typeAlias alias="faxStatVO" type="itn.let.fax.admin.service.FaxStatVO"/> | |
| 10 | - <typeAlias alias="mjonMsgDataVO" type="itn.let.mjo.msgdata.service.MjonMsgDataVO"/> | |
| 11 | - <!-- 변환 요청 --> | |
| 12 | - <insert id="faxDAO.insertPgiFaxConvertInfo" parameterClass="faxConvertVO"> | |
| 13 | - | |
| 14 | - INSERT INTO PGI_FAXCONVERT ( | |
| 15 | - SEQ | |
| 16 | - , UserID | |
| 17 | - , Req_File | |
| 18 | - , Status | |
| 19 | - ) | |
| 20 | - VALUES( | |
| 21 | - #faxConvertSeq# | |
| 22 | - , #userId# | |
| 23 | - , #reqFile# | |
| 24 | - , #status# | |
| 25 | - ) | |
| 26 | - </insert> | |
| 27 | - | |
| 28 | - <!-- 변환 요청 --> | |
| 29 | - <insert id="faxDAO.insertFaxTranInfo" parameterClass="faxTranVO"> | |
| 30 | - | |
| 31 | - INSERT INTO PGI_FAXTRAN ( | |
| 32 | - seq | |
| 33 | - , UserID | |
| 34 | - , UserPW | |
| 35 | - , Subject | |
| 36 | - , FaxConvert_SEQ | |
| 37 | - , SendDate | |
| 38 | - ) | |
| 39 | - VALUES | |
| 40 | - ( | |
| 41 | - #faxTranSeq# | |
| 42 | - , #userId# | |
| 43 | - , #userPw# | |
| 44 | - , #subject# | |
| 45 | - , #faxConvertSeq# | |
| 46 | - , now() | |
| 47 | - ) | |
| 48 | - </insert> | |
| 49 | - | |
| 50 | - <!-- MjFax 변환 파일 관리 테이블 insert --> | |
| 51 | - <insert id="faxDAO.insertMjFaxConvertMngInfo" parameterClass="faxConvertMngVO"> | |
| 52 | - | |
| 53 | - INSERT INTO MJ_FAX_CONVERT_MNG ( | |
| 54 | - CONVERT_MNG_SEQ | |
| 55 | - , USER_ID | |
| 56 | - , CONVERT_SEQ | |
| 57 | - , ORIGNL_FILE_NM | |
| 58 | - , ORIGNL_FILE_EXT | |
| 59 | - , STRE_FILE_NM | |
| 60 | - , FRST_REGISTER_ID | |
| 61 | - , FRST_REGIST_PNTTM | |
| 62 | - ) | |
| 63 | - VALUES( | |
| 64 | - #convertMngSeq# | |
| 65 | - , #userId# | |
| 66 | - , #convertSeq# | |
| 67 | - , #orignlFileNm# | |
| 68 | - , #orignlFileExt# | |
| 69 | - , #streFileNm# | |
| 70 | - , #userId# | |
| 71 | - , now() | |
| 72 | - ) | |
| 73 | - </insert> | |
| 74 | - | |
| 75 | - <!-- 변환 요청 --> | |
| 76 | - <select id="faxDAO.findByConvertTbStatus" parameterClass="String" resultClass="int"> | |
| 77 | - | |
| 78 | - SELECT Status | |
| 79 | - FROM PGI_FAXCONVERT | |
| 80 | - WHERE SEQ = #seq# | |
| 81 | - </select> | |
| 82 | - | |
| 83 | - | |
| 84 | - <!-- mj_fax_convert_mng_seq select --> | |
| 85 | - <select id="faxDAO.selectConvertMngSeq" parameterClass="String" resultClass="String"> | |
| 86 | - | |
| 87 | - SELECT CONVERT_MNG_SEQ as convertMngSeq | |
| 88 | - FROM MJ_FAX_CONVERT_MNG | |
| 89 | - WHERE CONVERT_SEQ = #faxConvertSeq# | |
| 90 | - </select> | |
| 91 | - | |
| 92 | - <select id="faxDAO.getFaxCost" resultClass="Double"> | |
| 93 | - | |
| 94 | - SELECT | |
| 95 | - FAX_COST | |
| 96 | - FROM MJ_MSG_COST | |
| 97 | - WHERE AGENT_CODE = '06' | |
| 98 | - ORDER BY COST_ID DESC | |
| 99 | - LIMIT 1 | |
| 100 | - </select> | |
| 101 | - | |
| 102 | - | |
| 103 | - <!-- 변환 요청 --> | |
| 104 | - <select id="faxDAO.findAllConvertTb" parameterClass="String" resultClass="faxConvertVO"> | |
| 105 | - | |
| 106 | - SELECT | |
| 107 | - SEQ as faxConvertSeq | |
| 108 | - , UserID as userId | |
| 109 | - , ReqDate as reqDate | |
| 110 | - , Req_File as reqFile | |
| 111 | - , Req_MergeSEQ as reqMergeSeq | |
| 112 | - , Status as status | |
| 113 | - , Res_Result as resResult | |
| 114 | -<!-- , Res_SEQ as resSeq --> | |
| 115 | - , Res_Page as resPage | |
| 116 | - , Res_TiffMode as resTiffMode | |
| 117 | - FROM | |
| 118 | - PGI_FAXCONVERT | |
| 119 | - WHERE | |
| 120 | - SEQ = #seq# | |
| 121 | - </select> | |
| 122 | - | |
| 123 | - <!-- pgi 수신처 관리 테이블 insert --> | |
| 124 | - <insert id="faxDAO.insertFaxListInfo" parameterClass="java.util.List"> | |
| 125 | - | |
| 126 | - INSERT INTO PGI_FAXLIST ( | |
| 127 | - SEQ | |
| 128 | - , UserID | |
| 129 | - , FaxTranSEQ | |
| 130 | - , XQN | |
| 131 | - , REF | |
| 132 | - , ADDR | |
| 133 | - )VALUES | |
| 134 | - <iterate conjunction=","> | |
| 135 | - ( | |
| 136 | - #[].faxListSeq# | |
| 137 | - , #[].userId# | |
| 138 | - , #[].faxTranSeq# | |
| 139 | - , #[].xqn# | |
| 140 | - , #[].ref# | |
| 141 | - , #[].addr# | |
| 142 | - ) | |
| 143 | - </iterate> | |
| 144 | - </insert> | |
| 145 | - | |
| 146 | - <!-- 변환 요청 --> | |
| 147 | - <update id="faxDAO.updateSendStatus" parameterClass="String"> | |
| 148 | - UPDATE PGi_FaxTran SET SendStatus=1 WHERE SEQ=#faxTranSeq#; | |
| 149 | - </update> | |
| 150 | - | |
| 151 | - <!-- [임시] 예약 취소 요청 사용 X --> | |
| 152 | - <update id="faxDAO.updateCancelStatus" parameterClass="String"> | |
| 153 | - UPDATE PGi_FaxTran SET CancelStatus=1 WHERE SEQ=#faxTranSeq#; | |
| 154 | - </update> | |
| 155 | - | |
| 156 | - | |
| 157 | - <!-- Fax 그룹 테이블 insert --> | |
| 158 | - <insert id="faxDAO.insertMjFaxGroupData" parameterClass="faxGroupDataVO"> | |
| 159 | - | |
| 160 | - INSERT INTO MJ_FAX_GROUP_DATA ( | |
| 161 | - FAX_GROUP_ID | |
| 162 | - , USER_ID | |
| 163 | - , CONVERT_MNG_SEQ | |
| 164 | - , PGI_FAXTRAN_SEQ | |
| 165 | - , SUBJECT | |
| 166 | - , FAX_PAGE_CNT | |
| 167 | - , FAX_GROUP_CNT | |
| 168 | - , EACH_PRICE | |
| 169 | - , TOT_PRICE | |
| 170 | - , BEF_CASH | |
| 171 | - , BEF_POINT | |
| 172 | - , RECOMM_ID | |
| 173 | - ) | |
| 174 | - VALUES | |
| 175 | - ( | |
| 176 | - #faxGroupId# | |
| 177 | - , #userId# | |
| 178 | - , #convertMngSeq# | |
| 179 | - , #pgiFaxtranSeq# | |
| 180 | - , #subject# | |
| 181 | - , #faxPageCnt# | |
| 182 | - , #faxGroupCnt# | |
| 183 | - , #eachPrice# | |
| 184 | - , #totPrice# | |
| 185 | - , #befCash# | |
| 186 | - , #befPoint# | |
| 187 | - , #recommId# | |
| 188 | - ) | |
| 189 | - </insert> | |
| 190 | - | |
| 191 | - <select id="faxDAO.selectRefundPrcss" resultClass="faxReceiverVO"> | |
| 192 | - | |
| 193 | - SELECT | |
| 194 | - SEQ as faxListSeq | |
| 195 | - , UserID as userId | |
| 196 | - , FaxTranSEQ as faxTranSeq | |
| 197 | - , XQN as xqn | |
| 198 | - , REF as ref | |
| 199 | - , ADDR as addr | |
| 200 | - , Result as result | |
| 201 | - , DoneDate as doneDate | |
| 202 | - , ResultCode as resultCode | |
| 203 | - , REFUND_YN as refundYn | |
| 204 | - FROM | |
| 205 | - PGI_FAXLIST | |
| 206 | - WHERE REFUND_YN = 'N' <!-- 환불로직 처리 안한 ROW --> | |
| 207 | - AND result IS NOT NULL <!-- 전송 중인 row --> | |
| 208 | - | |
| 209 | - </select> | |
| 210 | - | |
| 211 | - <select id="faxDAO.selectFaxSendList" resultClass="faxGroupDataVO" parameterClass="faxGroupDataVO"> | |
| 212 | - | |
| 213 | - select COUNT(1) OVER () AS totCnt, | |
| 214 | - tb.faxGroupId, | |
| 215 | - tb.userId, | |
| 216 | - tb.orignlFileNm, | |
| 217 | - tb.subject, | |
| 218 | - tb.sendStatus, | |
| 219 | - tb.doneDate, | |
| 220 | - tb.page, | |
| 221 | - IF(tb.totalEa = 0 , tb.faxGroupCnt, tb.totalEa) as totalEa, | |
| 222 | - IF(tb.totalEa = 0 , tb.faxGroupCnt, tb.holdEa) as holdEa, | |
| 223 | - tb.sentEa, | |
| 224 | - tb.unSendEa, | |
| 225 | - (tb.errorEa - tb.unSendEa) as errorEa, | |
| 226 | - tb.eachPrice, | |
| 227 | - tb.totPrice, | |
| 228 | - tb.refundPrice, | |
| 229 | - tb.reqDate | |
| 230 | - from (SELECT mjf.FAX_GROUP_ID as faxGroupId, | |
| 231 | - mjf.USER_ID as userId, | |
| 232 | - mjc.ORIGNL_FILE_NM as orignlFileNm, | |
| 233 | - pf.Subject as subject, | |
| 234 | - pf.SendStatus as sendStatus, | |
| 235 | - date_format(pf.DoneDate, '%Y-%m-%d %H:%i') as doneDate, | |
| 236 | - COALESCE(pf.Page, mjf.FAX_PAGE_CNT) as page, | |
| 237 | - COALESCE(pf.TotalEA, 0) as totalEa, | |
| 238 | - mjf.FAX_GROUP_CNT as faxGroupCnt, | |
| 239 | - COALESCE(pf.SentEA, 0) as sentEa, | |
| 240 | - IF(pf.SentEA = 0 | |
| 241 | - AND pf.ErrorEA = 0, pf.TotalEA, 0) as holdEa, | |
| 242 | - (select count(*) | |
| 243 | - from pgi_faxlist pgf | |
| 244 | - WHERE pf.seq = pgf.FaxTranSEQ | |
| 245 | - AND ResultCode in ('6500', '6503', '6504', '6505')) as unSendEa, | |
| 246 | - COALESCE(pf.ErrorEA, 0) as errorEa, | |
| 247 | - mjf.EACH_PRICE as eachPrice, | |
| 248 | - mjf.TOT_PRICE as totPrice, | |
| 249 | - IF(pf.ErrorEA != 0, (pf.ErrorEA * pf.Page * mjf.EACH_PRICE), 0) as refundPrice, | |
| 250 | - date_format(pf.ReqDate, '%Y-%m-%d %H:%i') as reqDate | |
| 251 | - FROM pgi_faxtran pf | |
| 252 | - LEFT JOIN mj_fax_group_data mjf ON pf.seq = mjf.PGI_FAXTRAN_SEQ | |
| 253 | - LEFT JOIN mj_fax_convert_mng mjc ON mjf.CONVERT_MNG_SEQ = mjc.CONVERT_MNG_SEQ | |
| 254 | - WHERE 1 = 1 | |
| 255 | - <isNotEmpty property="userId"> | |
| 256 | - AND mjf.USER_ID = #userId# | |
| 257 | - </isNotEmpty> | |
| 258 | - <isNotEmpty property="searchStartDate"> | |
| 259 | - <![CDATA[ | |
| 260 | - AND DATE_FORMAT(reqDate, '%Y-%m-%d') >= DATE_FORMAT(#searchStartDate#, '%Y-%m-%d') | |
| 261 | - ]]> | |
| 262 | - </isNotEmpty> | |
| 263 | - <isNotEmpty property="searchEndDate"> | |
| 264 | - <![CDATA[ | |
| 265 | - AND DATE_FORMAT(reqDate, '%Y-%m-%d') <= DATE_FORMAT(#searchEndDate#, '%Y-%m-%d') | |
| 266 | - ]]> | |
| 267 | - </isNotEmpty> | |
| 268 | - <isNotEmpty property="searchKeyword"> | |
| 269 | - <!-- 현재는 검색 조건이 하나지만 추후를 위해 남김 --> | |
| 270 | - <isEqual property="searchCondition" compareValue="1"> | |
| 271 | - AND mjf.USER_ID LIKE CONCAT ('%', #searchKeyword#,'%') | |
| 272 | - </isEqual> | |
| 273 | - <isEqual property="searchCondition" compareValue="2"> | |
| 274 | - AND pf.Subject LIKE CONCAT ('%', #searchKeyword#,'%') | |
| 275 | - </isEqual> | |
| 276 | - </isNotEmpty> | |
| 277 | - | |
| 278 | - ) as tb | |
| 279 | - ORDER BY 1=1 | |
| 280 | - <isNotEmpty property="searchSortCnd"> | |
| 281 | - ,$searchSortCnd$ | |
| 282 | - </isNotEmpty> | |
| 283 | - <isNotEmpty property="searchSortOrd"> | |
| 284 | - $searchSortOrd$ | |
| 285 | - </isNotEmpty> | |
| 286 | - LIMIT #recordCountPerPage# OFFSET #firstIndex# | |
| 287 | - </select> | |
| 288 | - | |
| 289 | - <select id="faxDAO.getExcelForFaxSendList" resultClass="faxGroupDataVO" parameterClass="faxGroupDataVO"> | |
| 290 | - | |
| 291 | - select | |
| 292 | - COUNT(1) OVER() AS totCnt | |
| 293 | - , tb.faxGroupId | |
| 294 | - ,tb.userId | |
| 295 | - ,tb.subject | |
| 296 | - ,tb.doneDate | |
| 297 | - ,tb.page | |
| 298 | - ,tb.totalEa | |
| 299 | - ,tb.sentEa | |
| 300 | - ,tb.holdEa | |
| 301 | - ,tb.unSendEa | |
| 302 | - ,(tb.errorEa - tb.unSendEa) as errorEa | |
| 303 | - ,tb.totPrice | |
| 304 | - ,tb.refundPrice | |
| 305 | - ,tb.reqDate | |
| 306 | - from ( | |
| 307 | - SELECT mjf.FAX_GROUP_ID as faxGroupId, | |
| 308 | - mjf.USER_ID as userId, | |
| 309 | - pf.Subject as subject, | |
| 310 | - date_format(pf.DoneDate, '%Y-%m-%d %H:%i') as doneDate, | |
| 311 | - pf.Page as page, | |
| 312 | - pf.TotalEA as totalEa, | |
| 313 | - pf.SentEA as sentEa, | |
| 314 | - IF(pf.SentEA = 0 AND pf.ErrorEA = 0, pf.TotalEA, 0) as holdEa, | |
| 315 | - ( | |
| 316 | - select count(*) | |
| 317 | - from pgi_faxlist pgf | |
| 318 | - where pf.seq = pgf.FaxTranSEQ | |
| 319 | - and ResultCode in ('6500', '6503', '6504', '6505' ) | |
| 320 | - ) as unSendEa, | |
| 321 | - pf.ErrorEA as errorEa, | |
| 322 | - mjf.TOT_PRICE as totPrice, | |
| 323 | - IF(pf.ErrorEA != 0, (pf.ErrorEA * pf.Page * mjf.EACH_PRICE), 0) as refundPrice, | |
| 324 | - pf.ReqDate as reqDate | |
| 325 | - FROM pgi_faxtran pf | |
| 326 | - LEFT JOIN mj_fax_group_data mjf | |
| 327 | - ON pf.seq = mjf.PGI_FAXTRAN_SEQ | |
| 328 | - WHERE mjf.USER_ID = #userId# | |
| 329 | - <isNotEmpty property="searchStartDate"> | |
| 330 | - <![CDATA[ | |
| 331 | - AND DATE_FORMAT(doneDate, '%Y-%m-%d') >= DATE_FORMAT(#searchStartDate#, '%Y-%m-%d') | |
| 332 | - ]]> | |
| 333 | - </isNotEmpty> | |
| 334 | - <isNotEmpty property="searchEndDate"> | |
| 335 | - <![CDATA[ | |
| 336 | - AND DATE_FORMAT(doneDate, '%Y-%m-%d') <= DATE_FORMAT(#searchEndDate#, '%Y-%m-%d') | |
| 337 | - ]]> | |
| 338 | - </isNotEmpty> | |
| 339 | - <isNotEmpty property="searchKeyword"> | |
| 340 | - <!-- 현재는 검색 조건이 하나지만 추후를 위해 남김 --> | |
| 341 | - <isEqual property="searchCondition" compareValue="2"> | |
| 342 | - AND pf.Subject LIKE CONCAT ('%', #searchKeyword#,'%') | |
| 343 | - </isEqual> | |
| 344 | - </isNotEmpty> | |
| 345 | - | |
| 346 | - ) as tb | |
| 347 | - ORDER BY 1=1 | |
| 348 | - <isNotEmpty property="searchSortCnd"> | |
| 349 | - ,$searchSortCnd$ | |
| 350 | - </isNotEmpty> | |
| 351 | - <isNotEmpty property="searchSortOrd"> | |
| 352 | - $searchSortOrd$ | |
| 353 | - </isNotEmpty> | |
| 354 | - </select> | |
| 355 | - | |
| 356 | - <select id="faxDAO.selectFaxSendDetail" resultClass="faxGroupDataVO" parameterClass="faxGroupDataVO"> | |
| 357 | - | |
| 358 | - | |
| 359 | - SELECT | |
| 360 | - pfl.SEQ as faxListSeq | |
| 361 | - , mfg.FAX_GROUP_ID as faxGroupId | |
| 362 | - , mfg.USER_ID as userId | |
| 363 | - , pft.Subject as subject | |
| 364 | - , pfl.addr as addr | |
| 365 | - , pft.Page as page | |
| 366 | - , concat(mfc.STRE_FILE_NM, mfc.ORIGNL_FILE_EXT) as streFileNm | |
| 367 | - , mfc.ORIGNL_FILE_NM as orignlFileNm | |
| 368 | - , concat(mfc.CONVERT_SEQ, '.pdf') as convertSeq | |
| 369 | - , date_format(pfl.DoneDate, '%Y-%m-%d %H:%i') as doneDate | |
| 370 | - , (pft.page * mfg.EACH_PRICE) as totPrice | |
| 371 | - , IF(pfl.ResultCode != 0 | |
| 372 | - , (pft.page * mfg.EACH_PRICE), 0) as refundPrice | |
| 373 | - ,IF(pfl.Result = 'SENT', '정상수신', IF( | |
| 374 | - pfl.resultcode = '6500' | |
| 375 | - OR pfl.resultcode = '6503' | |
| 376 | - OR pfl.resultcode = '6504' | |
| 377 | - OR pfl.resultcode = '6505' | |
| 378 | - , '수신거부', '수신오류')) as result | |
| 379 | - , IF(pfl.ResultCode != 0, mmr.RESULT_CODE2, '-') as resultTxt | |
| 380 | - , IF(pfl.ResultCode != 0, mmr.RESULT_CODE_TXT, '-') as resultDetailTxt | |
| 381 | - FROM pgi_faxlist pfl | |
| 382 | - LEFT JOIN pgi_faxtran pft | |
| 383 | - ON pfl.FaxTranSEQ = pft.SEQ | |
| 384 | - LEFT JOIN MJ_FAX_GROUP_DATA mfg | |
| 385 | - ON pft.SEQ = mfg.PGI_FAXTRAN_SEQ | |
| 386 | - LEFT JOIN mj_fax_convert_mng mfc | |
| 387 | - ON mfg.CONVERT_MNG_SEQ = mfc.CONVERT_MNG_SEQ | |
| 388 | - LEFT JOIN mj_msg_result_code mmr | |
| 389 | - ON mmr.AGENT_CODE = '06' <!-- -06:팩스 전송사 코드 --> | |
| 390 | - AND mmr.RESULT_CODE = pfl.ResultCode | |
| 391 | - WHERE pfl.SEQ = #faxListSeq# | |
| 392 | - </select> | |
| 393 | - | |
| 394 | - | |
| 395 | - <select id="faxDAO.selectFaxSendDetailList" resultClass="faxGroupDataVO" parameterClass="faxGroupDataVO"> | |
| 396 | - | |
| 397 | - SELECT | |
| 398 | - COUNT(1) OVER() AS totCnt | |
| 399 | - , pfl.SEQ as faxListSeq | |
| 400 | - , mfg.FAX_GROUP_ID as faxGroupId | |
| 401 | - , mfg.USER_ID as userId | |
| 402 | - , date_format(pfl.DoneDate, '%Y-%m-%d %H:%i') as doneDate | |
| 403 | - , mfg.SUBJECT as subject | |
| 404 | - , pfl.ADDR as addr | |
| 405 | - , pft.Page as page | |
| 406 | - , mjfc.ORIGNL_FILE_NM as orignlFileNm | |
| 407 | - , mjfc.ORIGNL_FILE_EXT as orignlFileExt | |
| 408 | - , mjfc.convert_seq as convertSeq | |
| 409 | - , mfg.EACH_PRICE as eachPrice | |
| 410 | - , mfg.EACH_PRICE * mfg.FAX_PAGE_CNT as totPrice | |
| 411 | - , IF(pfl.ResultCode != 0, mfg.EACH_PRICE * mfg.FAX_PAGE_CNT, 0) as refundPrice | |
| 412 | - , IF(pfl.Result = 'SENT','정상수신', | |
| 413 | - IF(pfl.resultcode = '6500' | |
| 414 | - OR pfl.resultcode = '6503' | |
| 415 | - OR pfl.resultcode = '6504' | |
| 416 | - OR pfl.resultcode = '6505', '수신거부', '수신오류')) as result | |
| 417 | - , pfl.ResultCode as resultcode | |
| 418 | - FROM MJ_FAX_GROUP_DATA mfg | |
| 419 | - LEFT JOIN PGI_FAXLIST pfl | |
| 420 | - ON mfg.PGI_FAXTRAN_SEQ = pfl.FaxTranSEQ | |
| 421 | - LEFT JOIN MJ_FAX_CONVERT_MNG mjfc | |
| 422 | - ON mfg.CONVERT_MNG_SEQ = mjfc.CONVERT_MNG_SEQ | |
| 423 | - LEFT JOIN pgi_faxtran pft | |
| 424 | - ON mfg.PGI_FAXTRAN_SEQ = pft.SEQ | |
| 425 | - WHERE mfg.FAX_GROUP_ID = #faxGroupId# | |
| 426 | - <isNotEmpty property="searchKeyword"> | |
| 427 | - AND pfl.ADDR LIKE CONCAT ('%', #searchKeyword#,'%') | |
| 428 | - </isNotEmpty> | |
| 429 | - <isEqual property="searchCondition" compareValue="1"> | |
| 430 | - AND pfl.result = 'SENT' | |
| 431 | - </isEqual> | |
| 432 | - <isEqual property="searchCondition" compareValue="2"> | |
| 433 | - AND pfl.result = 'FAIL' | |
| 434 | - AND pfl.resultCode IN ('6500', '6503', '6504', '6505') | |
| 435 | - </isEqual> | |
| 436 | - <isEqual property="searchCondition" compareValue="3"> | |
| 437 | - AND pfl.result = 'FAIL' | |
| 438 | - AND pfl.resultCode NOT IN ('6500', '6503', '6504', '6505') | |
| 439 | - </isEqual> | |
| 440 | - ORDER BY 1=1 | |
| 441 | - <isNotEmpty property="searchSortCnd"> | |
| 442 | - ,$searchSortCnd$ | |
| 443 | - </isNotEmpty> | |
| 444 | - <isNotEmpty property="searchSortOrd"> | |
| 445 | - $searchSortOrd$ | |
| 446 | - </isNotEmpty> | |
| 447 | - LIMIT #recordCountPerPage# OFFSET #firstIndex# | |
| 448 | - </select> | |
| 449 | - | |
| 450 | - | |
| 451 | - <update id="faxDAO.updateSentPrcss" parameterClass="java.util.List"> | |
| 452 | - | |
| 453 | - UPDATE PGI_FAXLIST | |
| 454 | - SET REFUND_YN = 'Y' | |
| 455 | - <iterate prepend="WHERE SEQ IN" open="(" close=")" conjunction=","> | |
| 456 | - #[].faxListSeq# | |
| 457 | - </iterate> | |
| 458 | - | |
| 459 | - </update> | |
| 460 | - <select id="faxDAO.selectSentAndErrorPrice" parameterClass="faxGroupDataVO" resultClass="HashMap"> | |
| 461 | - SELECT | |
| 462 | - sum(b.SentEA) as sentEa | |
| 463 | - , sum(b.sentPrice) as sentPrice | |
| 464 | - , sum(b.ErrorEA) as errorEa | |
| 465 | - , sum(b.errorPrice) as errorPrice | |
| 466 | - FROM( | |
| 467 | - SELECT (pft.page * pft.SentEA) * mfg.EACH_PRICE as sentPrice | |
| 468 | - , (pft.page * pft.ErrorEA) * mfg.EACH_PRICE as errorPrice | |
| 469 | - , pft.SentEA | |
| 470 | - , pft.ErrorEA | |
| 471 | - FROM MJ_FAX_GROUP_DATA mfg | |
| 472 | - LEFT JOIN pgi_faxtran pft | |
| 473 | - ON mfg.PGI_FAXTRAN_SEQ = pft.SEQ | |
| 474 | - WHERE mfg.USER_ID = #userId# | |
| 475 | - <isNotEmpty property="searchStartDate"> | |
| 476 | - <![CDATA[ | |
| 477 | - AND DATE_FORMAT(reqDate, '%Y-%m-%d') >= DATE_FORMAT(#searchStartDate#, '%Y-%m-%d') | |
| 478 | - ]]> | |
| 479 | - </isNotEmpty> | |
| 480 | - <isNotEmpty property="searchEndDate"> | |
| 481 | - <![CDATA[ | |
| 482 | - AND DATE_FORMAT(reqDate, '%Y-%m-%d') <= DATE_FORMAT(#searchEndDate#, '%Y-%m-%d') | |
| 483 | - ]]> | |
| 484 | - </isNotEmpty> | |
| 485 | - ) as b | |
| 486 | - | |
| 487 | - </select> | |
| 488 | - | |
| 489 | - <!-- 변환 요청 --> | |
| 490 | - <select id="faxDAO.selectLatestAddrList" parameterClass="String" resultClass="egovMap"> | |
| 491 | - | |
| 492 | - SELECT | |
| 493 | - pfl.ADDR AS callTo | |
| 494 | - FROM MJ_FAX_GROUP_DATA mfg | |
| 495 | - LEFT JOIN PGI_FAXTRAN pft | |
| 496 | - ON mfg.PGI_FAXTRAN_SEQ = pft.SEQ | |
| 497 | - LEFT JOIN PGI_FAXLIST pfl | |
| 498 | - ON pfl.FaxTranSEQ = pft.SEQ | |
| 499 | - WHERE USER_ID = #userId# | |
| 500 | - AND pfl.DoneDate >= DATE_FORMAT((CURDATE()-INTERVAL 3 DAY), '%Y-%m-%d') | |
| 501 | - AND pft.SendStatus = '3' | |
| 502 | - ORDER BY pfl.DoneDate DESC | |
| 503 | - LIMIT 100 | |
| 504 | - </select> | |
| 505 | - | |
| 506 | - <!-- 문자 발송 실패에 따른 금액 환불 프로시저 실행 --> | |
| 507 | - <procedure id="faxDAO.updateFaxSentFailPayBack"> | |
| 508 | - | |
| 509 | - {call procFaxRefund()} | |
| 510 | - | |
| 511 | - </procedure> | |
| 512 | - | |
| 513 | - | |
| 514 | - | |
| 515 | - <update id="faxDAO.insertFaxCountStat" parameterClass="faxStatVO"> | |
| 516 | - <![CDATA[ | |
| 517 | - INSERT | |
| 518 | - INTO MJ_FAX_STAT | |
| 519 | - ( | |
| 520 | - REQ_DATE, | |
| 521 | - AGENT_CODE, | |
| 522 | - SUCC_FAX_CNT, | |
| 523 | - FAIL_FAX_CNT, | |
| 524 | - SUCC_FAX_COST, | |
| 525 | - SUCC_FAX_USER_COST, | |
| 526 | - FAIL_FAX_COST, | |
| 527 | - SUCC_FAX_RATE, | |
| 528 | - REG_DATE | |
| 529 | - ) | |
| 530 | - SELECT b.reqDate, | |
| 531 | - b.AGENT_CODE, | |
| 532 | - b.succFaxCnt, | |
| 533 | - b.failFaxCnt, | |
| 534 | - b.succFaxCost, | |
| 535 | - b.succFaxUserCost, | |
| 536 | - b.failFaxCost, | |
| 537 | - b.succFaxRate, | |
| 538 | - b.regDate | |
| 539 | - FROM ( SELECT a.reqDate AS reqDate, | |
| 540 | - '06' AS AGENT_CODE, | |
| 541 | - SUM(IF(a.Result = 'SENT', 1, 0)) AS succFaxCnt, | |
| 542 | - SUM(IF(a.Result = 'FAIL', 1, 0)) AS failFaxCnt, | |
| 543 | - SUM(IF(a.Result = 'SENT', 1, 0) *a.faxCost) AS succFaxCost, | |
| 544 | - SUM( IF(a.Result = 'SENT', 1, 0) *a.faxUserCost) AS succFaxUserCost, | |
| 545 | - SUM(IF(a.Result = 'FAIL', 1, 0) *a.faxCost) AS failFaxCost, | |
| 546 | - IF(ROUND((SUM(IF(a.Result = 'SENT', 1, 0)) / IF(SUM(IF(a.Result <> '0', 1, 0)) = 0 , 1 , SUM(IF(a.Result <> '0', 1, 0)))) * 100) IS NOT NULL, ROUND((SUM(IF(a.Result = 'SENT', 1, 0)) / IF(SUM(IF(a.Result <> '0', 1, 0)) = 0 , 1, SUM(IF(a.Result <> '0', 1, 0)))) * 100), 0) AS succFaxRate, | |
| 547 | - NOW() AS regDate | |
| 548 | - FROM (SELECT a.*, | |
| 549 | - b.EACH_PRICE AS faxUserCost | |
| 550 | - FROM mj_fax_summary_view a | |
| 551 | - LEFT OUTER JOIN mj_fax_group_data b | |
| 552 | - ON a.FaxTranSEQ = b.PGI_FAXTRAN_SEQ | |
| 553 | - | |
| 554 | - UNION ALL | |
| 555 | - | |
| 556 | - SELECT DATE_FORMAT(#statStartDate#, '%Y-%m-%d') AS reqDate, | |
| 557 | - 0 AS SEQ, | |
| 558 | - 0 AS FaxTranSEQ, | |
| 559 | - 0 AS Result, | |
| 560 | - 0 AS resPage, | |
| 561 | - 0 AS faxCost, | |
| 562 | - 0 AS faxUserCost | |
| 563 | - FROM dual | |
| 564 | - ) | |
| 565 | - a | |
| 566 | - ]]> | |
| 567 | - WHERE a.reqDate >= DATE_FORMAT(#statStartDate#, '%Y-%m-%d') | |
| 568 | - AND DATE_FORMAT(#statStandardDate#, '%Y-%m-%d') > a.reqDate | |
| 569 | - GROUP BY a.reqDate | |
| 570 | - ) | |
| 571 | - b | |
| 572 | - ON DUPLICATE KEY UPDATE SUCC_FAX_CNT = b.succFaxCnt, | |
| 573 | - FAIL_FAX_CNT = b.failFaxCnt, | |
| 574 | - SUCC_FAX_COST = b.succFaxCost, | |
| 575 | - SUCC_FAX_USER_COST = b.succFaxUserCost, | |
| 576 | - FAIL_FAX_COST = b.failFaxCost, | |
| 577 | - SUCC_FAX_RATE = b.succFaxRate, | |
| 578 | - REG_DATE = now() | |
| 579 | - </update> | |
| 580 | - | |
| 581 | - <select id="faxDAO.selectFaxCountStatList" resultClass="faxStatVO" parameterClass="faxStatVO"> | |
| 582 | - SELECT a.REQ_DATE AS reqDate, | |
| 583 | - a.SUCC_FAX_CNT AS succFaxCnt, | |
| 584 | - a.FAIL_FAX_CNT AS failFaxCnt, | |
| 585 | - a.SUCC_FAX_COST AS succFaxCost, | |
| 586 | - a.FAIL_FAX_COST AS failFaxCost, | |
| 587 | - a.SUCC_FAX_RATE AS succFaxRate | |
| 588 | - FROM mj_fax_stat a | |
| 589 | - WHERE | |
| 590 | - 1=1 | |
| 591 | - <isNotEmpty prepend="AND" property="searchDateType"> | |
| 592 | - <isEqual property="searchDateType" compareValue="year"> | |
| 593 | - YEAR(a.REQ_DATE) = #searchYear# | |
| 594 | - </isEqual> | |
| 595 | - <isEqual property="searchDateType" compareValue="month"> | |
| 596 | - YEAR(a.REQ_DATE) = #searchYear# | |
| 597 | - AND | |
| 598 | - MONTH(a.REQ_DATE) = #searchMonth# | |
| 599 | - </isEqual> | |
| 600 | - <isEqual property="searchDateType" compareValue="quarter"> | |
| 601 | - YEAR(a.REQ_DATE) = #searchYear# | |
| 602 | - AND | |
| 603 | - QUARTER(a.REQ_DATE) = #searchQuarter# | |
| 604 | - </isEqual> | |
| 605 | - <isEqual property="searchDateType" compareValue="day"> | |
| 606 | - a.REQ_DATE between #searchStartDate# and #searchEndDate# | |
| 607 | - </isEqual> | |
| 608 | - </isNotEmpty> | |
| 609 | - <isEmpty prepend="AND" property="searchDateType"> | |
| 610 | - <![CDATA[ | |
| 611 | - a.REQ_DATE >= DATE_FORMAT(CURDATE() - INTERVAL 1 DAY, '%Y-%m-%d') | |
| 612 | - AND | |
| 613 | - a.REQ_DATE < DATE_FORMAT(CURDATE(), '%Y-%m-%d') | |
| 614 | - ]]> | |
| 615 | - </isEmpty> | |
| 616 | - GROUP BY a.REQ_DATE | |
| 617 | - ORDER BY a.REQ_DATE DESC | |
| 618 | - LIMIT #recordCountPerPage# OFFSET #firstIndex# | |
| 619 | - | |
| 620 | - </select> | |
| 621 | - | |
| 622 | - <select id="faxDAO.selectFaxStatList" resultClass="faxGroupDataVO" parameterClass="faxGroupDataVO"> | |
| 623 | - | |
| 624 | - SELECT t1.reqDate AS reqDate, | |
| 625 | - SUM(t1.totalEa * t1.page) AS totalSentPage, | |
| 626 | - SUM(t1.sentEa * t1.page) AS totalSuccessPage, | |
| 627 | - SUM(t1.holdEa * t1.page) AS totalHoldPage, | |
| 628 | - SUM(t1.errorEa * t1.page) AS totalErrorPage, | |
| 629 | - SUM(t1.unSendEa * t1.page) AS totalUnsendPage, | |
| 630 | - SUM(t1.sentEa * t1.page * t1.eachPrice) AS totalSuccessPrice, | |
| 631 | - SUM(t1.refundPrice) AS totalRefundPrice | |
| 632 | - FROM (SELECT DATE_FORMAT(tb.reqDate, '%Y-%m-%d') AS reqDate, /* 요청일 */ | |
| 633 | - tb.faxGroupId AS faxGroupId, | |
| 634 | - tb.userId AS userId, | |
| 635 | - tb.orignlFileNm AS orignlFileNm, | |
| 636 | - tb.subject AS subject, | |
| 637 | - tb.sendStatus AS sendStatus, /* 발송 상태 값 0:발송 대기 1:발송 요청 2:발송 중 3:발송 완료 */ | |
| 638 | - tb.doneDate AS doneDate, /* 발송이 완료된 시간 */ | |
| 639 | - tb.page AS page, /* 발송 요청한 장수 */ | |
| 640 | - IF(tb.totalEa = 0 , tb.faxGroupCnt, tb.totalEa) AS totalEa, /* 총 수신처 수 */ | |
| 641 | - IF(tb.totalEa = 0 , tb.faxGroupCnt, tb.holdEa) AS holdEa, /* 대기 건 수 */ | |
| 642 | - tb.sentEa AS sentEa, /* 성공 수신처 수 */ | |
| 643 | - tb.unSendEa AS unSendEa, /* 수신거부 수 */ | |
| 644 | - (tb.errorEa - tb.unSendEa) AS errorEa, /* 실패 수신처 수 */ | |
| 645 | - tb.eachPrice AS eachPrice, /* 개별팩스 가격 */ | |
| 646 | - tb.totPrice AS totPrice, /* 전체팩스 가격 */ | |
| 647 | - tb.refundPrice AS refundPrice /* 환불 금액 */ | |
| 648 | - FROM (SELECT mjf.FAX_GROUP_ID AS faxGroupId, | |
| 649 | - mjf.USER_ID AS userId, | |
| 650 | - mjc.ORIGNL_FILE_NM AS orignlFileNm, | |
| 651 | - pf.Subject AS subject, | |
| 652 | - pf.SendStatus AS sendStatus, | |
| 653 | - date_format(pf.DoneDate, '%Y-%m-%d %H:%i') AS doneDate, | |
| 654 | - COALESCE(pf.Page, mjf.FAX_PAGE_CNT) AS page, | |
| 655 | - COALESCE(pf.TotalEA, 0) AS totalEa, | |
| 656 | - mjf.FAX_GROUP_CNT AS faxGroupCnt, | |
| 657 | - COALESCE(pf.SentEA, 0) AS sentEa, | |
| 658 | - IF(pf.SentEA = 0 | |
| 659 | - AND pf.ErrorEA = 0, pf.TotalEA, 0) AS holdEa, | |
| 660 | - (SELECT COUNT(*) | |
| 661 | - FROM pgi_faxlist pgf | |
| 662 | - WHERE pf.seq = pgf.FaxTranSEQ | |
| 663 | - AND ResultCode IN ('6500', | |
| 664 | - '6503', | |
| 665 | - '6504', | |
| 666 | - '6505') | |
| 667 | - ) | |
| 668 | - AS unSendEa, | |
| 669 | - COALESCE(pf.ErrorEA, 0) AS errorEa, | |
| 670 | - mjf.EACH_PRICE AS eachPrice, | |
| 671 | - mjf.TOT_PRICE AS totPrice, | |
| 672 | - IF(pf.ErrorEA != 0, (pf.ErrorEA * pf.Page * mjf.EACH_PRICE), 0) AS refundPrice, | |
| 673 | - date_format(pf.ReqDate, '%Y-%m-%d %H:%i') AS reqDate | |
| 674 | - FROM pgi_faxtran pf | |
| 675 | - LEFT JOIN mj_fax_group_data mjf | |
| 676 | - ON pf.seq = mjf.PGI_FAXTRAN_SEQ | |
| 677 | - LEFT JOIN mj_fax_convert_mng mjc | |
| 678 | - ON mjf.CONVERT_MNG_SEQ = mjc.CONVERT_MNG_SEQ | |
| 679 | - WHERE 1 = 1 | |
| 680 | - <isNotEmpty prepend="AND" property="searchDateType"> | |
| 681 | - <isEqual property="searchDateType" compareValue="year"> | |
| 682 | - YEAR(pf.ReqDate) = #searchYear# | |
| 683 | - </isEqual> | |
| 684 | - <isEqual property="searchDateType" compareValue="month"> | |
| 685 | - YEAR(pf.ReqDate) = #searchYear# | |
| 686 | - AND | |
| 687 | - MONTH(pf.ReqDate) = #searchMonth# | |
| 688 | - </isEqual> | |
| 689 | - <isEqual property="searchDateType" compareValue="quarter"> | |
| 690 | - YEAR(pf.ReqDate) = #searchYear# | |
| 691 | - AND | |
| 692 | - QUARTER(pf.ReqDate) = #searchQuarter# | |
| 693 | - </isEqual> | |
| 694 | - <isEqual property="searchDateType" compareValue="day"> | |
| 695 | - date_format(pf.ReqDate, '%Y-%m-%d') between #searchStartDate# and #searchEndDate# | |
| 696 | - </isEqual> | |
| 697 | - </isNotEmpty> | |
| 698 | - <isEmpty prepend="AND" property="searchDateType"> | |
| 699 | - <![CDATA[ | |
| 700 | - date_format(pf.ReqDate, '%Y/%m/%d') >= DATE_FORMAT(CURDATE() - INTERVAL 1 DAY, '%Y/%m/%d') | |
| 701 | - AND | |
| 702 | - date_format(pf.ReqDate, '%Y/%m/%d') < DATE_FORMAT(CURDATE(), '%Y/%m/%d') | |
| 703 | - ]]> | |
| 704 | - </isEmpty> | |
| 705 | - ) | |
| 706 | - AS tb | |
| 707 | - | |
| 708 | - UNION ALL | |
| 709 | - | |
| 710 | - SELECT a.all_date AS reqDate, | |
| 711 | - 0 AS faxGroupId, | |
| 712 | - 0 AS userId, | |
| 713 | - 0 AS orignlFileNm, | |
| 714 | - 0 AS subject, | |
| 715 | - 0 AS sendStatus, | |
| 716 | - 0 AS doneDate, | |
| 717 | - 0 AS page, | |
| 718 | - 0 AS totalEa, | |
| 719 | - 0 AS holdEa, | |
| 720 | - 0 AS sentEa, | |
| 721 | - 0 AS unSendEa, | |
| 722 | - 0 AS errorEa, | |
| 723 | - 0 AS eachPrice, | |
| 724 | - 0 AS totPrice, | |
| 725 | - 0 AS refundPrice | |
| 726 | - FROM calendar a | |
| 727 | - ) | |
| 728 | - t1 | |
| 729 | - WHERE 1 = 1 | |
| 730 | - <isNotEmpty prepend="AND" property="searchDateType"> | |
| 731 | - <isEqual property="searchDateType" compareValue="year"> | |
| 732 | - YEAR(t1.reqDate) = #searchYear# | |
| 733 | - </isEqual> | |
| 734 | - <isEqual property="searchDateType" compareValue="month"> | |
| 735 | - YEAR(t1.reqDate) = #searchYear# | |
| 736 | - AND | |
| 737 | - MONTH(t1.reqDate) = #searchMonth# | |
| 738 | - </isEqual> | |
| 739 | - <isEqual property="searchDateType" compareValue="quarter"> | |
| 740 | - YEAR(t1.reqDate) = #searchYear# | |
| 741 | - AND | |
| 742 | - QUARTER(t1.reqDate) = #searchQuarter# | |
| 743 | - </isEqual> | |
| 744 | - <isEqual property="searchDateType" compareValue="day"> | |
| 745 | - date_format(t1.reqDate, '%Y-%m-%d') between #searchStartDate# and #searchEndDate# | |
| 746 | - </isEqual> | |
| 747 | - </isNotEmpty> | |
| 748 | - <isEmpty prepend="AND" property="searchDateType"> | |
| 749 | - <![CDATA[ | |
| 750 | - date_format(t1.reqDate, '%Y/%m/%d') >= DATE_FORMAT(CURDATE() - INTERVAL 1 DAY, '%Y/%m/%d') | |
| 751 | - AND | |
| 752 | - date_format(t1.reqDate, '%Y/%m/%d') < DATE_FORMAT(CURDATE(), '%Y/%m/%d') | |
| 753 | - ]]> | |
| 754 | - </isEmpty> | |
| 755 | - GROUP BY t1.reqDate | |
| 756 | - </select> | |
| 757 | - | |
| 758 | - <select id="faxDAO.selectFaxSendDetailInfo" resultClass="faxGroupDataVO" parameterClass="faxGroupDataVO"> | |
| 759 | - SELECT | |
| 760 | - COUNT(1) OVER() AS totCnt | |
| 761 | - , mfg.FAX_GROUP_ID AS faxGroupId | |
| 762 | - , mfg.USER_ID AS userId | |
| 763 | - , mfg.SUBJECT AS subject | |
| 764 | - , mjfc.ORIGNL_FILE_NM AS orignlFileNm | |
| 765 | - , mjfc.ORIGNL_FILE_EXT AS orignlFileExt | |
| 766 | - , mjfc.convert_seq AS convertSeq | |
| 767 | - , mfg.EACH_PRICE AS eachPrice | |
| 768 | - , mfg.EACH_PRICE * mfg.FAX_PAGE_CNT AS totPrice | |
| 769 | - FROM MJ_FAX_GROUP_DATA mfg | |
| 770 | - LEFT JOIN MJ_FAX_CONVERT_MNG mjfc | |
| 771 | - ON mfg.CONVERT_MNG_SEQ = mjfc.CONVERT_MNG_SEQ | |
| 772 | - WHERE mfg.FAX_GROUP_ID = #faxGroupId# | |
| 773 | - ORDER BY 1=1 | |
| 774 | - </select> | |
| 775 | - | |
| 776 | - | |
| 777 | - <select id="faxDAO.selectBookMarkMsgList" parameterClass="mjonMsgDataVO" resultClass="egovMap"> | |
| 778 | - | |
| 779 | - SELECT ADDR_ID AS addrId, | |
| 780 | - ADDR_GRP_ID AS addrGrpId, | |
| 781 | - MBER_ID AS mberId, | |
| 782 | - ADDR_PHONE_NO AS addrPhoneNo | |
| 783 | - FROM MJ_FAX_ADDR | |
| 784 | - WHERE MBER_ID = #userId# | |
| 785 | - AND DELETE_YN = 'N' | |
| 786 | - AND BOOKMARK = 'Y' | |
| 787 | - ORDER BY LAST_UPDT_PNTTM DESC, ADDR_PHONE_NO ASC | |
| 788 | - LIMIT 100 | |
| 789 | - </select> | |
| 790 | - | |
| 791 | - <select id="faxDAO.selectMyFaxSendList" resultClass="faxGroupDataVO" parameterClass="faxGroupDataVO"> | |
| 792 | - SELECT | |
| 793 | - COUNT(1) OVER () AS totCnt | |
| 794 | - , tb.faxGroupId | |
| 795 | - , tb.userId | |
| 796 | - , tb.orignlFileNm | |
| 797 | - , tb.subject | |
| 798 | - , tb.sendStatus | |
| 799 | - , tb.doneDate | |
| 800 | - , tb.page | |
| 801 | - , IF(tb.totalEa = 0 , tb.faxGroupCnt, tb.totalEa) as totalEa | |
| 802 | - , IF(tb.totalEa = 0 , tb.faxGroupCnt, tb.holdEa) as holdEa | |
| 803 | - , tb.sentEa | |
| 804 | - , tb.unSendEa | |
| 805 | - , (tb.errorEa - tb.unSendEa) as errorEa | |
| 806 | - , tb.reqDate | |
| 807 | - FROM (SELECT | |
| 808 | - mjf.FAX_GROUP_ID as faxGroupId | |
| 809 | - , mjf.USER_ID as userId | |
| 810 | - , mjc.ORIGNL_FILE_NM as orignlFileNm | |
| 811 | - , pf.Subject as subject | |
| 812 | - , pf.SendStatus as sendStatus | |
| 813 | - , date_format(pf.DoneDate, '%Y-%m-%d %H:%i:%S') as doneDate | |
| 814 | - , COALESCE(pf.Page, mjf.FAX_PAGE_CNT) as page | |
| 815 | - , COALESCE(pf.TotalEA, 0) as totalEa | |
| 816 | - , mjf.FAX_GROUP_CNT as faxGroupCnt | |
| 817 | - , COALESCE(pf.SentEA, 0) as sentEa | |
| 818 | - , IF(pf.SentEA = 0 AND pf.ErrorEA = 0, pf.TotalEA, 0) as holdEa | |
| 819 | - , (SELECT | |
| 820 | - count(*) | |
| 821 | - FROM | |
| 822 | - PGI_FAXLIST PGF | |
| 823 | - WHERE pf.seq = pgf.FaxTranSEQ | |
| 824 | - AND ResultCode in ('6500', '6503', '6504', '6505')) as unSendEa | |
| 825 | - , COALESCE(pf.ErrorEA, 0) as errorEa | |
| 826 | - , date_format(pf.ReqDate, '%Y-%m-%d %H:%i:%S') as reqDate | |
| 827 | - FROM | |
| 828 | - pgi_faxtran pf | |
| 829 | - LEFT JOIN mj_fax_group_data mjf | |
| 830 | - ON pf.seq = mjf.PGI_FAXTRAN_SEQ | |
| 831 | - LEFT JOIN mj_fax_convert_mng mjc | |
| 832 | - ON mjf.CONVERT_MNG_SEQ = mjc.CONVERT_MNG_SEQ | |
| 833 | - WHERE 1 = 1 | |
| 834 | - <isNotEmpty property="userId"> | |
| 835 | - AND mjf.USER_ID = #userId# | |
| 836 | - </isNotEmpty> | |
| 837 | - ) as tb | |
| 838 | - ORDER BY 1=1 | |
| 839 | - , reqDate DESC | |
| 840 | - LIMIT 3 | |
| 841 | - </select> | |
| 842 | -</sqlMap> |
--- target/classes/egovframework/sqlmap/let/fax/addr/Fax_AddrGroup_SQL_Mysql.xml
... | ... | @@ -1,152 +0,0 @@ |
| 1 | -<?xml version="1.0" encoding="UTF-8"?> | |
| 2 | -<!DOCTYPE sqlMap PUBLIC "-//iBATIS.com//DTD SQL Map 2.0//EN" "http://www.ibatis.com/dtd/sql-map-config-2.dtd"> | |
| 3 | -<sqlMap namespace="AddrGroup"> | |
| 4 | - <typeAlias alias="egovMap" type="egovframework.rte.psl.dataaccess.util.EgovMap"/> | |
| 5 | - <typeAlias alias="faxAddrGroupVO" type="itn.let.fax.addr.service.FaxAddrGroupVO"/> | |
| 6 | - | |
| 7 | - <!-- 주소록 그룹 목록 조회 --> | |
| 8 | - <select id="FaxAddrGroupDAO.selectFaxAddrGroupList" parameterClass="faxAddrGroupVO" resultClass="faxAddrGroupVO"> | |
| 9 | - SELECT | |
| 10 | - COUNT(1) OVER() AS totCnt | |
| 11 | - ,A.ADDR_GRP_ID AS addrGrpId | |
| 12 | - ,A.MBER_ID AS mberId | |
| 13 | - ,A.ADDR_GRP_NM AS addrGrpNm | |
| 14 | - ,DATE_FORMAT(A.FRST_REGIST_PNTTM, '%Y-%m-%d %T' ) AS frstRegistPnttm | |
| 15 | - ,A.DELETE_YN AS deleteYn | |
| 16 | - ,IFNULL(a.GRP_ORDER, '0') AS grpOrder | |
| 17 | - ,(SELECT COUNT(1) FROM MJ_FAX_ADDR WHERE ADDR_GRP_ID = A.ADDR_GRP_ID) AS grpCount | |
| 18 | - FROM | |
| 19 | - MJ_FAX_ADDR_GRP A | |
| 20 | - LEFT OUTER JOIN | |
| 21 | - MJ_FAX_ADDR_TRANS_HIST B | |
| 22 | - ON | |
| 23 | - A.ADDR_GRP_ID = B.ADDR_GRP_ID | |
| 24 | - WHERE | |
| 25 | - (B.RECV_STATUS = 'Y' OR B.RECV_STATUS IS NULL) | |
| 26 | - <isNotEmpty property="mberId"> | |
| 27 | - AND A.MBER_ID = #mberId# | |
| 28 | - </isNotEmpty> | |
| 29 | - <isNotEmpty property="searchKeyword"> | |
| 30 | - <isEqual property="searchCondition" compareValue=""> | |
| 31 | - AND ( A.MBER_ID LIKE CONCAT ('%', #searchKeyword#,'%') | |
| 32 | - OR A.ADDR_GRP_NM LIKE CONCAT ('%', #searchKeyword#,'%') | |
| 33 | - ) | |
| 34 | - </isEqual> | |
| 35 | - <isEqual property="searchCondition" compareValue="1"> | |
| 36 | - AND A.MBER_ID LIKE CONCAT ('%', #searchKeyword#,'%') | |
| 37 | - </isEqual> | |
| 38 | - <isEqual property="searchCondition" compareValue="2"> | |
| 39 | - AND A.ADDR_GRP_NM LIKE CONCAT ('%', #searchKeyword#,'%') | |
| 40 | - </isEqual> | |
| 41 | - </isNotEmpty> | |
| 42 | - GROUP BY A.ADDR_GRP_ID | |
| 43 | - <isNotEqual property="siteId" compareValue="admin"> | |
| 44 | - ORDER BY A.GRP_ORDER | |
| 45 | - <isNotEmpty property="searchSortCnd"> | |
| 46 | - ,$searchSortCnd$ | |
| 47 | - </isNotEmpty> | |
| 48 | - </isNotEqual> | |
| 49 | - <isEqual property="siteId" compareValue="admin"> | |
| 50 | - ORDER BY A.ADDR_GRP_ID DESC | |
| 51 | - <isNotEmpty property="searchSortCnd"> | |
| 52 | - ,$searchSortCnd$ | |
| 53 | - </isNotEmpty> | |
| 54 | - </isEqual> | |
| 55 | - | |
| 56 | - <isEqual property="siteId" compareValue="admin"> | |
| 57 | - LIMIT #recordCountPerPage# OFFSET #firstIndex# | |
| 58 | - </isEqual> | |
| 59 | - </select> | |
| 60 | - | |
| 61 | - <!-- 주소록 그룹 상세 조회 --> | |
| 62 | - <select id="FaxAddrGroupDAO.selectFaxAddrGroupDetail" parameterClass="faxAddrGroupVO" resultClass="faxAddrGroupVO"> | |
| 63 | - SELECT | |
| 64 | - a.ADDR_GRP_ID AS addrGrpId | |
| 65 | - ,a.MBER_ID AS mberId | |
| 66 | - ,a.ADDR_GRP_NM AS addrGrpNm | |
| 67 | - FROM | |
| 68 | - MJ_FAX_ADDR_GRP a | |
| 69 | - WHERE 1=1 | |
| 70 | - AND a.ADDR_GRP_ID = #addrGrpId# | |
| 71 | - </select> | |
| 72 | - | |
| 73 | - <!-- 주소록 그룹 등록 --> | |
| 74 | - <insert id="FaxAddrGroupDAO.insertFaxAddrGroup" parameterClass="faxAddrGroupVO"> | |
| 75 | - INSERT INTO MJ_FAX_ADDR_GRP ( | |
| 76 | - MBER_ID | |
| 77 | - ,ADDR_GRP_NM | |
| 78 | - ,GRP_ORDER | |
| 79 | - ,FRST_REGIST_PNTTM | |
| 80 | - ,FRST_REGISTER_ID | |
| 81 | - )VALUES( | |
| 82 | - #mberId# | |
| 83 | - ,#addrGrpNm# | |
| 84 | - ,#grpOrder# | |
| 85 | - ,NOW() | |
| 86 | - ,#frstRegisterId# | |
| 87 | - ) | |
| 88 | - <selectKey keyProperty="addrGrpId" resultClass="String"> | |
| 89 | - SELECT LAST_INSERT_ID() | |
| 90 | - </selectKey> | |
| 91 | - </insert> | |
| 92 | - | |
| 93 | - <!-- 주소록 그룹수정 --> | |
| 94 | - <update id="FaxAddrGroupDAO.updateFaxAddrGroup" parameterClass="faxAddrGroupVO"> | |
| 95 | - UPDATE | |
| 96 | - MJ_FAX_ADDR_GRP | |
| 97 | - SET | |
| 98 | - ADDR_GRP_NM = #addrGrpNm# | |
| 99 | - ,GRP_ORDER = #grpOrder# | |
| 100 | - ,LAST_UPDT_PNTTM = NOW() | |
| 101 | - ,LAST_UPDUSR_ID = #lastUpdusrId# | |
| 102 | - WHERE | |
| 103 | - MBER_ID = #mberId# | |
| 104 | - AND | |
| 105 | - ADDR_GRP_ID = #addrGrpId# | |
| 106 | - </update> | |
| 107 | - | |
| 108 | - <!-- 주소록 그룹삭제 --> | |
| 109 | - <delete id="FaxAddrGroupDAO.deleteFaxAddrGroup" parameterClass="faxAddrGroupVO"> | |
| 110 | - DELETE FROM | |
| 111 | - MJ_FAX_ADDR_GRP | |
| 112 | - WHERE | |
| 113 | - MBER_ID = #mberId# | |
| 114 | - <isEmpty property="mergeGrps"> | |
| 115 | - AND | |
| 116 | - ADDR_GRP_ID = #addrGrpId# | |
| 117 | - </isEmpty> | |
| 118 | - <isNotEmpty property="mergeGrps"> | |
| 119 | - AND | |
| 120 | - ADDR_GRP_ID in (#mergeGrps#) | |
| 121 | - </isNotEmpty> | |
| 122 | - </delete> | |
| 123 | - | |
| 124 | - <!-- 주소록 그룹삭제 By Admin --> | |
| 125 | - <delete id="FaxAddrGroupDAO.deleteFaxAddrGroupByAdmin" parameterClass="faxAddrGroupVO"> | |
| 126 | - DELETE FROM | |
| 127 | - MJ_FAX_ADDR_GRP | |
| 128 | - WHERE ADDR_GRP_ID = #addrGrpId# | |
| 129 | - </delete> | |
| 130 | - | |
| 131 | - <!-- 주소록 그룹명 중복확인 --> | |
| 132 | - <select id="FaxAddrGroupDAO.selectDuplFaxAddrGroupCnt" parameterClass="faxAddrGroupVO" resultClass="int"> | |
| 133 | - SELECT | |
| 134 | - COUNT(1) usedCnt | |
| 135 | - FROM | |
| 136 | - MJ_FAX_ADDR_GRP | |
| 137 | - WHERE | |
| 138 | - ADDR_GRP_NM = #addrGrpNm# | |
| 139 | - AND | |
| 140 | - MBER_ID = #mberId# | |
| 141 | - </select> | |
| 142 | - | |
| 143 | - <!-- 주소록 그룹 다음 순서번호 확인 --> | |
| 144 | - <select id="FaxAddrGroupDAO.selectMaxOrderFaxNumber" parameterClass="faxAddrGroupVO" resultClass="int"> | |
| 145 | - SELECT | |
| 146 | - IFNULL(MAX(GRP_ORDER),0)+1 nextOrderNumber | |
| 147 | - FROM | |
| 148 | - MJ_FAX_ADDR_GRP | |
| 149 | - WHERE | |
| 150 | - MBER_ID = #mberId# | |
| 151 | - </select> | |
| 152 | -</sqlMap> |
--- target/classes/egovframework/sqlmap/let/fax/addr/Fax_AddrTransHist_SQL_Mysql.xml
... | ... | @@ -1,118 +0,0 @@ |
| 1 | -<?xml version="1.0" encoding="UTF-8"?> | |
| 2 | -<!DOCTYPE sqlMap PUBLIC "-//iBATIS.com//DTD SQL Map 2.0//EN" "http://www.ibatis.com/dtd/sql-map-config-2.dtd"> | |
| 3 | -<sqlMap namespace="Addr"> | |
| 4 | - <typeAlias alias="egovMap" type="egovframework.rte.psl.dataaccess.util.EgovMap"/> | |
| 5 | - <typeAlias alias="faxAddrTransHistVO" type="itn.let.fax.addr.service.FaxAddrTransHistVO"/> | |
| 6 | - | |
| 7 | - | |
| 8 | - <!-- 주소록 전송 히스토리 등록 --> | |
| 9 | - <insert id="FaxAddrTransHistDAO.insertFaxAddrTransHist" parameterClass="faxAddrTransHistVO"> | |
| 10 | - INSERT INTO MJ_FAX_ADDR_TRANS_HIST ( | |
| 11 | - ADDR_TRANS_HIST_ID | |
| 12 | - ,ADDR_GRP_ID | |
| 13 | - ,SEND_MBER_ID | |
| 14 | - ,RECV_MBER_ID | |
| 15 | - ,SEND_DATE | |
| 16 | - ,SEND_ADDR_CNT | |
| 17 | - ,RECV_STATUS | |
| 18 | - )VALUES( | |
| 19 | - #addrTransHistId# | |
| 20 | - ,#addrGrpId# | |
| 21 | - ,#sendMberId# | |
| 22 | - ,#recvMberId# | |
| 23 | - ,NOW() | |
| 24 | - ,#sendAddrCnt# | |
| 25 | - ,'W' | |
| 26 | - ) | |
| 27 | - </insert> | |
| 28 | - | |
| 29 | - <!-- 주소록 전송 히스토리 목록 --> | |
| 30 | - <select id="FaxAddrTransHistDAO.selectFaxAddrTransHistList" parameterClass="faxAddrTransHistVO" resultClass="faxAddrTransHistVO"> | |
| 31 | - SELECT | |
| 32 | - COUNT(1) OVER() AS totCnt | |
| 33 | - ,A.ADDR_TRANS_HIST_ID AS addrTransHistId | |
| 34 | - ,A.ADDR_GRP_ID AS addrGrpId | |
| 35 | - ,A.SEND_MBER_ID AS sendMberId | |
| 36 | - ,A.RECV_MBER_ID AS recvMberId | |
| 37 | - ,A.SEND_DATE AS sendDate | |
| 38 | - ,A.RECV_DATE AS recvDate | |
| 39 | - ,A.RECV_STATUS AS recvStatus | |
| 40 | - ,A.SEND_ADDR_CNT AS sendAddrCnt | |
| 41 | - ,B.ADDR_GRP_NM AS addrGrpNm | |
| 42 | - FROM | |
| 43 | - MJ_FAX_ADDR_TRANS_HIST A | |
| 44 | - LEFT OUTER JOIN | |
| 45 | - MJ_FAX_ADDR_GRP B | |
| 46 | - ON | |
| 47 | - A.ADDR_GRP_ID = B.ADDR_GRP_ID | |
| 48 | - WHERE | |
| 49 | - A.SEND_MBER_ID = #sendMberId# | |
| 50 | - ORDER BY 1=1 | |
| 51 | - <isNotEmpty property="searchSortCnd"> | |
| 52 | - ,$searchSortCnd$ | |
| 53 | - </isNotEmpty> | |
| 54 | - <isNotEmpty property="searchSortOrd"> | |
| 55 | - $searchSortOrd$ | |
| 56 | - </isNotEmpty> | |
| 57 | - LIMIT #recordCountPerPage# OFFSET #firstIndex# | |
| 58 | - </select> | |
| 59 | - | |
| 60 | - <!-- 주소록 전송 수신대기 목록 --> | |
| 61 | - <select id="FaxAddrTransHistDAO.selectFaxAddrTransWaitList" parameterClass="faxAddrTransHistVO" resultClass="faxAddrTransHistVO"> | |
| 62 | - SELECT | |
| 63 | - COUNT(1) OVER() AS totCnt | |
| 64 | - ,A.ADDR_TRANS_HIST_ID AS addrTransHistId | |
| 65 | - ,A.ADDR_GRP_ID AS addrGrpId | |
| 66 | - ,A.SEND_MBER_ID AS sendMberId | |
| 67 | - ,A.RECV_MBER_ID AS recvMberId | |
| 68 | - ,A.SEND_DATE AS sendDate | |
| 69 | - ,A.RECV_DATE AS recvDate | |
| 70 | - ,A.RECV_STATUS AS recvStatus | |
| 71 | - ,A.SEND_ADDR_CNT AS sendAddrCnt | |
| 72 | - ,B.ADDR_GRP_NM AS addrGrpNm | |
| 73 | - , (SELECT COUNT(0) FROM MJ_FAX_ADDR S WHERE S.RECV_STATUS = 'W' AND S.MBER_ID = A.RECV_MBER_ID AND S.ADDR_GRP_ID = A.ADDR_GRP_ID) sendAddrCnt | |
| 74 | - FROM | |
| 75 | - MJ_FAX_ADDR_TRANS_HIST A | |
| 76 | - INNER JOIN | |
| 77 | - MJ_FAX_ADDR_GRP B | |
| 78 | - ON | |
| 79 | - A.ADDR_GRP_ID = B.ADDR_GRP_ID | |
| 80 | - WHERE | |
| 81 | - A.RECV_MBER_ID = #recvMberId# | |
| 82 | - AND | |
| 83 | - A.RECV_STATUS = 'W' | |
| 84 | - ORDER BY 1=1 | |
| 85 | - <isNotEmpty property="searchSortCnd"> | |
| 86 | - ,$searchSortCnd$ | |
| 87 | - </isNotEmpty> | |
| 88 | - <isNotEmpty property="searchSortOrd"> | |
| 89 | - $searchSortOrd$ | |
| 90 | - </isNotEmpty> | |
| 91 | - LIMIT #recordCountPerPage# OFFSET #firstIndex# | |
| 92 | - </select> | |
| 93 | - | |
| 94 | - <!-- 주소록 내보내기 수신목록 업데이트 --> | |
| 95 | - <update id="FaxAddrTransHistDAO.updateFaxAddrRecvList" parameterClass="faxAddrTransHistVO"> | |
| 96 | - UPDATE | |
| 97 | - MJ_FAX_ADDR | |
| 98 | - SET | |
| 99 | - RECV_STATUS = #recvStatus# | |
| 100 | - , LAST_UPDT_PNTTM = NOW() | |
| 101 | - , LAST_UPDUSR_ID = #lastUpdusrId# | |
| 102 | - WHERE | |
| 103 | - MBER_ID = #recvMberId# | |
| 104 | - AND ADDR_GRP_ID = #addrGrpId# | |
| 105 | - </update> | |
| 106 | - | |
| 107 | - <!-- 주소록 내보내기 수신목록 업데이트(히스토리) --> | |
| 108 | - <update id="FaxAddrTransHistDAO.updateFaxAddrHistRecvList" parameterClass="faxAddrTransHistVO"> | |
| 109 | - UPDATE | |
| 110 | - MJ_FAX_ADDR_TRANS_HIST | |
| 111 | - SET | |
| 112 | - RECV_STATUS = #recvStatus# | |
| 113 | - WHERE | |
| 114 | - RECV_MBER_ID = #recvMberId# | |
| 115 | - AND ADDR_GRP_ID = #addrGrpId# | |
| 116 | - </update> | |
| 117 | - | |
| 118 | -</sqlMap> |
--- target/classes/egovframework/sqlmap/let/fax/addr/Fax_Addr_SQL_Mysql.xml
... | ... | @@ -1,1160 +0,0 @@ |
| 1 | -<?xml version="1.0" encoding="UTF-8"?> | |
| 2 | -<!DOCTYPE sqlMap PUBLIC "-//iBATIS.com//DTD SQL Map 2.0//EN" "http://www.ibatis.com/dtd/sql-map-config-2.dtd"> | |
| 3 | -<sqlMap namespace="FaxAddr"> | |
| 4 | - | |
| 5 | - <typeAlias alias="egovMap" type="egovframework.rte.psl.dataaccess.util.EgovMap"/> | |
| 6 | - <typeAlias alias="faxAddrVO" type="itn.let.fax.addr.service.FaxAddrVO"/> | |
| 7 | - <typeAlias alias="addrTransHistVO" type="itn.let.mjo.addr.service.AddrTransHistVO"/> | |
| 8 | - | |
| 9 | - <!-- 주소록 목록 조회 --> | |
| 10 | - <select id="FaxAddrDAO.selectFaxAddrList" parameterClass="faxAddrVO" resultClass="faxAddrVO"> | |
| 11 | - SELECT | |
| 12 | - COUNT(1) OVER() AS totCnt | |
| 13 | - ,A.ADDR_ID AS addrId | |
| 14 | - ,A.ADDR_GRP_ID AS addrGrpId | |
| 15 | - ,A.MBER_ID AS mberId | |
| 16 | - ,A.ADDR_NM AS addrNm | |
| 17 | - ,A.ADDR_PHONE_NO AS addrPhoneNo | |
| 18 | - ,A.ADDR_COMMENT AS addrComment | |
| 19 | - ,DATE_FORMAT(A.FRST_REGIST_PNTTM, '%Y-%m-%d %T' ) AS frstRegistPnttm | |
| 20 | - ,A.FRST_REGISTER_ID AS frstRegisterId | |
| 21 | - ,DATE_FORMAT(A.LAST_UPDT_PNTTM, '%Y-%m-%d %T' ) AS lastUpdtPnttm | |
| 22 | - ,A.LAST_UPDUSR_ID AS lastUpdusrId | |
| 23 | - ,A.DELETE_YN AS deleteYn | |
| 24 | - ,A.BOOKMARK AS bookmark | |
| 25 | - ,CASE | |
| 26 | - WHEN A.ADDR_GRP_ID = 0 AND A.BOOKMARK = 'N' | |
| 27 | - THEN '그룹미지정' | |
| 28 | - WHEN A.ADDR_GRP_ID = 0 AND A.BOOKMARK = 'Y' | |
| 29 | - THEN '자주보내는 번호' | |
| 30 | - ELSE B.ADDR_GRP_NM | |
| 31 | - END AS addrGrpNm | |
| 32 | - FROM | |
| 33 | - MJ_FAX_ADDR A | |
| 34 | - LEFT OUTER JOIN | |
| 35 | - MJ_FAX_ADDR_GRP B | |
| 36 | - ON | |
| 37 | - A.ADDR_GRP_ID = B.ADDR_GRP_ID | |
| 38 | - LEFT OUTER JOIN | |
| 39 | - MJ_FAX_ADDR_TRANS_HIST C | |
| 40 | - ON | |
| 41 | - B.ADDR_GRP_ID = C.ADDR_GRP_ID | |
| 42 | - WHERE 1=1 | |
| 43 | - <isNotEmpty property="mberId"> | |
| 44 | - AND A.MBER_ID = #mberId# | |
| 45 | - </isNotEmpty> | |
| 46 | - | |
| 47 | - AND (C.RECV_STATUS = 'Y' OR C.RECV_STATUS IS NULL) | |
| 48 | - | |
| 49 | - <isNotEmpty property="addrIdList"> | |
| 50 | - <iterate prepend="AND A.ADDR_ID IN " open="(" close=")" conjunction="," property="addrIdList"> | |
| 51 | - #addrIdList[]# | |
| 52 | - </iterate> | |
| 53 | - </isNotEmpty> | |
| 54 | - | |
| 55 | - <isNotEmpty property="addrGrpId"> | |
| 56 | - AND A.ADDR_GRP_ID = #addrGrpId# | |
| 57 | - </isNotEmpty> | |
| 58 | - <isNotEmpty property="searchKeyword"> | |
| 59 | - <isEqual property="searchCondition" compareValue=""> | |
| 60 | - AND ( A.ADDR_PHONE_NO LIKE CONCAT ('%', #searchKeyword#,'%') | |
| 61 | - OR A.ADDR_NM LIKE CONCAT ('%', #searchKeyword#,'%') | |
| 62 | - ) | |
| 63 | - </isEqual> | |
| 64 | - <isEqual property="searchCondition" compareValue="1"> | |
| 65 | - AND A.ADDR_PHONE_NO LIKE CONCAT ('%', #searchKeyword#,'%') | |
| 66 | - </isEqual> | |
| 67 | - <isEqual property="searchCondition" compareValue="2"> | |
| 68 | - AND A.ADDR_NM LIKE CONCAT ('%', #searchKeyword#,'%') | |
| 69 | - </isEqual> | |
| 70 | - <isEqual property="searchCondition" compareValue="3"> | |
| 71 | - AND A.MBER_ID LIKE CONCAT ('%', #searchKeyword#,'%') | |
| 72 | - </isEqual> | |
| 73 | - </isNotEmpty> | |
| 74 | - <isNotEmpty property="searchAddrGrpId"> | |
| 75 | - <isEqual property="searchAddrGrpId" compareValue="bookmark"> | |
| 76 | - AND A.BOOKMARK = 'Y' | |
| 77 | - </isEqual> | |
| 78 | - <isNotEqual property="searchAddrGrpId" compareValue="bookmark"> | |
| 79 | - <isEqual property="searchAddrGrpId" compareValue="noGrp"> | |
| 80 | - AND A.ADDR_GRP_ID = '0' AND A.BOOKMARK = 'N' | |
| 81 | - </isEqual> | |
| 82 | - <isNotEqual property="searchAddrGrpId" compareValue="noGrp"> | |
| 83 | - AND A.ADDR_GRP_ID = #searchAddrGrpId# | |
| 84 | - </isNotEqual> | |
| 85 | - </isNotEqual> | |
| 86 | - </isNotEmpty> | |
| 87 | - <isEqual property="startKeyword" compareValue="1"> | |
| 88 | - AND (A.ADDR_NM RLIKE '^(ㄱ|ㄲ)' OR (A.ADDR_NM <![CDATA[>=]]> '가' AND A.ADDR_NM <![CDATA[<]]> '나')) | |
| 89 | - </isEqual> | |
| 90 | - <isEqual property="startKeyword" compareValue="2"> | |
| 91 | - AND (A.ADDR_NM RLIKE '^(ㄴ)' OR (A.ADDR_NM <![CDATA[>=]]> '나' AND A.ADDR_NM <![CDATA[<]]> '다')) | |
| 92 | - </isEqual> | |
| 93 | - <isEqual property="startKeyword" compareValue="3"> | |
| 94 | - AND (A.ADDR_NM RLIKE '^(ㄷ|ㄸ)' OR (A.ADDR_NM <![CDATA[>=]]> '다' AND A.ADDR_NM <![CDATA[<]]> '라')) | |
| 95 | - </isEqual> | |
| 96 | - <isEqual property="startKeyword" compareValue="4"> | |
| 97 | - AND (A.ADDR_NM RLIKE '^(ㄹ)' OR (A.ADDR_NM <![CDATA[>=]]> '라' AND A.ADDR_NM <![CDATA[<]]> '마')) | |
| 98 | - </isEqual> | |
| 99 | - <isEqual property="startKeyword" compareValue="5"> | |
| 100 | - AND (A.ADDR_NM RLIKE '^(ㅁ)' OR (A.ADDR_NM <![CDATA[>=]]> '마' AND A.ADDR_NM <![CDATA[<]]> '바')) | |
| 101 | - </isEqual> | |
| 102 | - <isEqual property="startKeyword" compareValue="6"> | |
| 103 | - AND (A.ADDR_NM RLIKE '^(ㅂ|ㅃ)' OR (A.ADDR_NM <![CDATA[>=]]> '바' AND A.ADDR_NM <![CDATA[<]]> '사')) | |
| 104 | - </isEqual> | |
| 105 | - <isEqual property="startKeyword" compareValue="7"> | |
| 106 | - AND (A.ADDR_NM RLIKE '^(ㅅ|ㅆ)' OR (A.ADDR_NM <![CDATA[>=]]> '사' AND A.ADDR_NM <![CDATA[<]]> '아')) | |
| 107 | - </isEqual> | |
| 108 | - <isEqual property="startKeyword" compareValue="8"> | |
| 109 | - AND (A.ADDR_NM RLIKE '^(ㅇ)' OR (A.ADDR_NM <![CDATA[>=]]> '아' AND A.ADDR_NM <![CDATA[<]]> '자')) | |
| 110 | - </isEqual> | |
| 111 | - <isEqual property="startKeyword" compareValue="9"> | |
| 112 | - AND (A.ADDR_NM RLIKE '^(ㅈ|ㅉ)' OR (A.ADDR_NM <![CDATA[>=]]> '자' AND A.ADDR_NM <![CDATA[<]]> '차')) | |
| 113 | - </isEqual> | |
| 114 | - <isEqual property="startKeyword" compareValue="10"> | |
| 115 | - AND (A.ADDR_NM RLIKE '^(ㅊ)' OR (A.ADDR_NM <![CDATA[>=]]> '차' AND A.ADDR_NM <![CDATA[<]]> '카')) | |
| 116 | - </isEqual> | |
| 117 | - <isEqual property="startKeyword" compareValue="11"> | |
| 118 | - AND (A.ADDR_NM RLIKE '^(ㅋ)' OR (A.ADDR_NM <![CDATA[>=]]> '카' AND A.ADDR_NM <![CDATA[<]]> '타')) | |
| 119 | - </isEqual> | |
| 120 | - <isEqual property="startKeyword" compareValue="12"> | |
| 121 | - AND (A.ADDR_NM RLIKE '^(ㅌ)' OR (A.ADDR_NM <![CDATA[>=]]> '타' AND A.ADDR_NM <![CDATA[<]]> '파')) | |
| 122 | - </isEqual> | |
| 123 | - <isEqual property="startKeyword" compareValue="13"> | |
| 124 | - AND (A.ADDR_NM RLIKE '^(ㅍ)' OR (A.ADDR_NM <![CDATA[>=]]> '파' AND A.ADDR_NM <![CDATA[<]]> '하')) | |
| 125 | - </isEqual> | |
| 126 | - <isEqual property="startKeyword" compareValue="14"> | |
| 127 | - AND (A.ADDR_NM RLIKE '^(ㅎ)' OR (A.ADDR_NM <![CDATA[>=]]> '하' AND A.ADDR_NM <![CDATA[<=]]> '힣')) | |
| 128 | - </isEqual> | |
| 129 | - <isEqual property="startKeyword" compareValue="a"> | |
| 130 | - AND (A.ADDR_NM <![CDATA[>=]]> 'a' AND A.ADDR_NM <![CDATA[<=]]> 'z') | |
| 131 | - </isEqual> | |
| 132 | - <isEqual property="startKeyword" compareValue="0"> | |
| 133 | - AND (A.ADDR_NM <![CDATA[>=]]> '0' AND A.ADDR_NM <![CDATA[<=]]>'9') | |
| 134 | - </isEqual> | |
| 135 | - ORDER BY 1=1 | |
| 136 | - <isNotEmpty property="searchSortCnd"> | |
| 137 | - ,$searchSortCnd$ | |
| 138 | - </isNotEmpty> | |
| 139 | - <isNotEmpty property="searchSortOrd"> | |
| 140 | - $searchSortOrd$ | |
| 141 | - </isNotEmpty> | |
| 142 | - LIMIT #recordCountPerPage# OFFSET #firstIndex# | |
| 143 | - </select> | |
| 144 | - | |
| 145 | - <!-- 주소록 목록 조회(속도개선) --> | |
| 146 | - <select id="FaxAddrDAO.selectFaxAddrNewList" parameterClass="faxAddrVO" resultClass="faxAddrVO"> | |
| 147 | - SELECT | |
| 148 | - ( | |
| 149 | - SELECT COUNT(0) FROM MJ_FAX_ADDR A | |
| 150 | - LEFT OUTER JOIN | |
| 151 | - MJ_FAX_ADDR_GRP B | |
| 152 | - ON | |
| 153 | - A.ADDR_GRP_ID = B.ADDR_GRP_ID | |
| 154 | - LEFT OUTER JOIN | |
| 155 | - MJ_FAX_ADDR_TRANS_HIST C | |
| 156 | - ON | |
| 157 | - B.ADDR_GRP_ID = C.ADDR_GRP_ID | |
| 158 | - WHERE 1=1 | |
| 159 | - <isNotEmpty property="mberId"> | |
| 160 | - AND A.MBER_ID = #mberId# | |
| 161 | - </isNotEmpty> | |
| 162 | - | |
| 163 | - AND (C.RECV_STATUS = 'Y' OR C.RECV_STATUS IS NULL) | |
| 164 | - | |
| 165 | - <isNotEmpty property="addrIdList"> | |
| 166 | - <iterate prepend="AND A.ADDR_ID IN " open="(" close=")" conjunction="," property="addrIdList"> | |
| 167 | - #addrIdList[]# | |
| 168 | - </iterate> | |
| 169 | - </isNotEmpty> | |
| 170 | - | |
| 171 | - <isNotEmpty property="addrGrpId"> | |
| 172 | - AND A.ADDR_GRP_ID = #addrGrpId# | |
| 173 | - </isNotEmpty> | |
| 174 | - <isNotEmpty property="searchKeyword"> | |
| 175 | - <isEqual property="searchCondition" compareValue=""> | |
| 176 | - AND ( A.ADDR_PHONE_NO LIKE CONCAT ('%', #searchKeyword#,'%') | |
| 177 | - OR A.ADDR_NM LIKE CONCAT ('%', #searchKeyword#,'%') | |
| 178 | - ) | |
| 179 | - </isEqual> | |
| 180 | - <isEqual property="searchCondition" compareValue="1"> | |
| 181 | - AND A.ADDR_PHONE_NO LIKE CONCAT ('%', #searchKeyword#,'%') | |
| 182 | - </isEqual> | |
| 183 | - <isEqual property="searchCondition" compareValue="2"> | |
| 184 | - AND A.ADDR_NM LIKE CONCAT ('%', #searchKeyword#,'%') | |
| 185 | - </isEqual> | |
| 186 | - <isEqual property="searchCondition" compareValue="3"> | |
| 187 | - AND A.MBER_ID LIKE CONCAT ('%', #searchKeyword#,'%') | |
| 188 | - </isEqual> | |
| 189 | - </isNotEmpty> | |
| 190 | - <isNotEmpty property="searchAddrGrpId"> | |
| 191 | - <isEqual property="searchAddrGrpId" compareValue="bookmark"> | |
| 192 | - AND A.BOOKMARK = 'Y' | |
| 193 | - </isEqual> | |
| 194 | - <isNotEqual property="searchAddrGrpId" compareValue="bookmark"> | |
| 195 | - <isEqual property="searchAddrGrpId" compareValue="noGrp"> | |
| 196 | - AND A.ADDR_GRP_ID = '0' AND A.BOOKMARK = 'N' | |
| 197 | - </isEqual> | |
| 198 | - <isNotEqual property="searchAddrGrpId" compareValue="noGrp"> | |
| 199 | - AND A.ADDR_GRP_ID = #searchAddrGrpId# | |
| 200 | - </isNotEqual> | |
| 201 | - </isNotEqual> | |
| 202 | - </isNotEmpty> | |
| 203 | - <isEqual property="startKeyword" compareValue="1"> | |
| 204 | - AND (A.ADDR_NM RLIKE '^(ㄱ|ㄲ)' OR (A.ADDR_NM <![CDATA[>=]]> '가' AND A.ADDR_NM <![CDATA[<]]> '나')) | |
| 205 | - </isEqual> | |
| 206 | - <isEqual property="startKeyword" compareValue="2"> | |
| 207 | - AND (A.ADDR_NM RLIKE '^(ㄴ)' OR (A.ADDR_NM <![CDATA[>=]]> '나' AND A.ADDR_NM <![CDATA[<]]> '다')) | |
| 208 | - </isEqual> | |
| 209 | - <isEqual property="startKeyword" compareValue="3"> | |
| 210 | - AND (A.ADDR_NM RLIKE '^(ㄷ|ㄸ)' OR (A.ADDR_NM <![CDATA[>=]]> '다' AND A.ADDR_NM <![CDATA[<]]> '라')) | |
| 211 | - </isEqual> | |
| 212 | - <isEqual property="startKeyword" compareValue="4"> | |
| 213 | - AND (A.ADDR_NM RLIKE '^(ㄹ)' OR (A.ADDR_NM <![CDATA[>=]]> '라' AND A.ADDR_NM <![CDATA[<]]> '마')) | |
| 214 | - </isEqual> | |
| 215 | - <isEqual property="startKeyword" compareValue="5"> | |
| 216 | - AND (A.ADDR_NM RLIKE '^(ㅁ)' OR (A.ADDR_NM <![CDATA[>=]]> '마' AND A.ADDR_NM <![CDATA[<]]> '바')) | |
| 217 | - </isEqual> | |
| 218 | - <isEqual property="startKeyword" compareValue="6"> | |
| 219 | - AND (A.ADDR_NM RLIKE '^(ㅂ|ㅃ)' OR (A.ADDR_NM <![CDATA[>=]]> '바' AND A.ADDR_NM <![CDATA[<]]> '사')) | |
| 220 | - </isEqual> | |
| 221 | - <isEqual property="startKeyword" compareValue="7"> | |
| 222 | - AND (A.ADDR_NM RLIKE '^(ㅅ|ㅆ)' OR (A.ADDR_NM <![CDATA[>=]]> '사' AND A.ADDR_NM <![CDATA[<]]> '아')) | |
| 223 | - </isEqual> | |
| 224 | - <isEqual property="startKeyword" compareValue="8"> | |
| 225 | - AND (A.ADDR_NM RLIKE '^(ㅇ)' OR (A.ADDR_NM <![CDATA[>=]]> '아' AND A.ADDR_NM <![CDATA[<]]> '자')) | |
| 226 | - </isEqual> | |
| 227 | - <isEqual property="startKeyword" compareValue="9"> | |
| 228 | - AND (A.ADDR_NM RLIKE '^(ㅈ|ㅉ)' OR (A.ADDR_NM <![CDATA[>=]]> '자' AND A.ADDR_NM <![CDATA[<]]> '차')) | |
| 229 | - </isEqual> | |
| 230 | - <isEqual property="startKeyword" compareValue="10"> | |
| 231 | - AND (A.ADDR_NM RLIKE '^(ㅊ)' OR (A.ADDR_NM <![CDATA[>=]]> '차' AND A.ADDR_NM <![CDATA[<]]> '카')) | |
| 232 | - </isEqual> | |
| 233 | - <isEqual property="startKeyword" compareValue="11"> | |
| 234 | - AND (A.ADDR_NM RLIKE '^(ㅋ)' OR (A.ADDR_NM <![CDATA[>=]]> '카' AND A.ADDR_NM <![CDATA[<]]> '타')) | |
| 235 | - </isEqual> | |
| 236 | - <isEqual property="startKeyword" compareValue="12"> | |
| 237 | - AND (A.ADDR_NM RLIKE '^(ㅌ)' OR (A.ADDR_NM <![CDATA[>=]]> '타' AND A.ADDR_NM <![CDATA[<]]> '파')) | |
| 238 | - </isEqual> | |
| 239 | - <isEqual property="startKeyword" compareValue="13"> | |
| 240 | - AND (A.ADDR_NM RLIKE '^(ㅍ)' OR (A.ADDR_NM <![CDATA[>=]]> '파' AND A.ADDR_NM <![CDATA[<]]> '하')) | |
| 241 | - </isEqual> | |
| 242 | - <isEqual property="startKeyword" compareValue="14"> | |
| 243 | - AND (A.ADDR_NM RLIKE '^(ㅎ)' OR (A.ADDR_NM <![CDATA[>=]]> '하' AND A.ADDR_NM <![CDATA[<=]]> '힣')) | |
| 244 | - </isEqual> | |
| 245 | - <isEqual property="startKeyword" compareValue="a"> | |
| 246 | - AND (A.ADDR_NM <![CDATA[>=]]> 'a' AND A.ADDR_NM <![CDATA[<=]]> 'z') | |
| 247 | - </isEqual> | |
| 248 | - <isEqual property="startKeyword" compareValue="0"> | |
| 249 | - AND (A.ADDR_NM <![CDATA[>=]]> '0' AND A.ADDR_NM <![CDATA[<=]]>'9') | |
| 250 | - </isEqual> | |
| 251 | - ) totCnt | |
| 252 | - ,M.addrId | |
| 253 | - ,M.addrGrpId | |
| 254 | - ,M.mberId | |
| 255 | - ,M.addrNm | |
| 256 | - ,M.addrPhoneNo | |
| 257 | - ,M.addrComment | |
| 258 | - ,M.frstRegistPnttm | |
| 259 | - ,M.frstRegisterId | |
| 260 | - ,M.lastUpdtPnttm | |
| 261 | - ,M.lastUpdusrId | |
| 262 | - ,M.deleteYn | |
| 263 | - ,M.bookmark | |
| 264 | - ,M.addrGrpNm | |
| 265 | - FROM ( | |
| 266 | - SELECT | |
| 267 | - A.ADDR_ID AS addrId | |
| 268 | - ,A.ADDR_GRP_ID AS addrGrpId | |
| 269 | - ,A.MBER_ID AS mberId | |
| 270 | - ,A.ADDR_NM AS addrNm | |
| 271 | - ,A.ADDR_PHONE_NO AS addrPhoneNo | |
| 272 | - ,A.ADDR_COMMENT AS addrComment | |
| 273 | - ,DATE_FORMAT(A.FRST_REGIST_PNTTM, '%Y-%m-%d %T' ) AS frstRegistPnttm | |
| 274 | - ,A.FRST_REGISTER_ID AS frstRegisterId | |
| 275 | - ,DATE_FORMAT(A.LAST_UPDT_PNTTM, '%Y-%m-%d %T' ) AS lastUpdtPnttm | |
| 276 | - ,A.LAST_UPDUSR_ID AS lastUpdusrId | |
| 277 | - ,A.DELETE_YN AS deleteYn | |
| 278 | - ,A.BOOKMARK AS bookmark | |
| 279 | - ,CASE | |
| 280 | - WHEN A.ADDR_GRP_ID = 0 AND A.BOOKMARK = 'N' | |
| 281 | - THEN '그룹미지정' | |
| 282 | - WHEN A.ADDR_GRP_ID = 0 AND A.BOOKMARK = 'Y' | |
| 283 | - THEN '자주보내는 번호' | |
| 284 | - ELSE B.ADDR_GRP_NM | |
| 285 | - END AS addrGrpNm | |
| 286 | - FROM | |
| 287 | - MJ_FAX_ADDR A | |
| 288 | - LEFT OUTER JOIN | |
| 289 | - MJ_FAX_ADDR_GRP B | |
| 290 | - ON | |
| 291 | - A.ADDR_GRP_ID = B.ADDR_GRP_ID | |
| 292 | - LEFT OUTER JOIN | |
| 293 | - MJ_FAX_ADDR_TRANS_HIST C | |
| 294 | - ON | |
| 295 | - B.ADDR_GRP_ID = C.ADDR_GRP_ID | |
| 296 | - WHERE 1=1 | |
| 297 | - <isNotEmpty property="mberId"> | |
| 298 | - AND A.MBER_ID = #mberId# | |
| 299 | - </isNotEmpty> | |
| 300 | - | |
| 301 | - AND (C.RECV_STATUS = 'Y' OR C.RECV_STATUS IS NULL) | |
| 302 | - | |
| 303 | - <isNotEmpty property="addrIdList"> | |
| 304 | - <iterate prepend="AND A.ADDR_ID IN " open="(" close=")" conjunction="," property="addrIdList"> | |
| 305 | - #addrIdList[]# | |
| 306 | - </iterate> | |
| 307 | - </isNotEmpty> | |
| 308 | - | |
| 309 | - <isNotEmpty property="addrGrpId"> | |
| 310 | - AND A.ADDR_GRP_ID = #addrGrpId# | |
| 311 | - </isNotEmpty> | |
| 312 | - <isNotEmpty property="searchKeyword"> | |
| 313 | - <isEqual property="searchCondition" compareValue=""> | |
| 314 | - AND ( A.ADDR_PHONE_NO LIKE CONCAT ('%', #searchKeyword#,'%') | |
| 315 | - OR A.ADDR_NM LIKE CONCAT ('%', #searchKeyword#,'%') | |
| 316 | - ) | |
| 317 | - </isEqual> | |
| 318 | - <isEqual property="searchCondition" compareValue="1"> | |
| 319 | - AND A.ADDR_PHONE_NO LIKE CONCAT ('%', #searchKeyword#,'%') | |
| 320 | - </isEqual> | |
| 321 | - <isEqual property="searchCondition" compareValue="2"> | |
| 322 | - AND A.ADDR_NM LIKE CONCAT ('%', #searchKeyword#,'%') | |
| 323 | - </isEqual> | |
| 324 | - <isEqual property="searchCondition" compareValue="3"> | |
| 325 | - AND A.MBER_ID LIKE CONCAT ('%', #searchKeyword#,'%') | |
| 326 | - </isEqual> | |
| 327 | - </isNotEmpty> | |
| 328 | - <isNotEmpty property="searchAddrGrpId"> | |
| 329 | - <isEqual property="searchAddrGrpId" compareValue="bookmark"> | |
| 330 | - AND A.BOOKMARK = 'Y' | |
| 331 | - </isEqual> | |
| 332 | - <isNotEqual property="searchAddrGrpId" compareValue="bookmark"> | |
| 333 | - <isEqual property="searchAddrGrpId" compareValue="noGrp"> | |
| 334 | - AND A.ADDR_GRP_ID = '0' AND A.BOOKMARK = 'N' | |
| 335 | - </isEqual> | |
| 336 | - <isNotEqual property="searchAddrGrpId" compareValue="noGrp"> | |
| 337 | - AND A.ADDR_GRP_ID = #searchAddrGrpId# | |
| 338 | - </isNotEqual> | |
| 339 | - </isNotEqual> | |
| 340 | - </isNotEmpty> | |
| 341 | - <isEqual property="startKeyword" compareValue="1"> | |
| 342 | - AND (A.ADDR_NM RLIKE '^(ㄱ|ㄲ)' OR (A.ADDR_NM <![CDATA[>=]]> '가' AND A.ADDR_NM <![CDATA[<]]> '나')) | |
| 343 | - </isEqual> | |
| 344 | - <isEqual property="startKeyword" compareValue="2"> | |
| 345 | - AND (A.ADDR_NM RLIKE '^(ㄴ)' OR (A.ADDR_NM <![CDATA[>=]]> '나' AND A.ADDR_NM <![CDATA[<]]> '다')) | |
| 346 | - </isEqual> | |
| 347 | - <isEqual property="startKeyword" compareValue="3"> | |
| 348 | - AND (A.ADDR_NM RLIKE '^(ㄷ|ㄸ)' OR (A.ADDR_NM <![CDATA[>=]]> '다' AND A.ADDR_NM <![CDATA[<]]> '라')) | |
| 349 | - </isEqual> | |
| 350 | - <isEqual property="startKeyword" compareValue="4"> | |
| 351 | - AND (A.ADDR_NM RLIKE '^(ㄹ)' OR (A.ADDR_NM <![CDATA[>=]]> '라' AND A.ADDR_NM <![CDATA[<]]> '마')) | |
| 352 | - </isEqual> | |
| 353 | - <isEqual property="startKeyword" compareValue="5"> | |
| 354 | - AND (A.ADDR_NM RLIKE '^(ㅁ)' OR (A.ADDR_NM <![CDATA[>=]]> '마' AND A.ADDR_NM <![CDATA[<]]> '바')) | |
| 355 | - </isEqual> | |
| 356 | - <isEqual property="startKeyword" compareValue="6"> | |
| 357 | - AND (A.ADDR_NM RLIKE '^(ㅂ|ㅃ)' OR (A.ADDR_NM <![CDATA[>=]]> '바' AND A.ADDR_NM <![CDATA[<]]> '사')) | |
| 358 | - </isEqual> | |
| 359 | - <isEqual property="startKeyword" compareValue="7"> | |
| 360 | - AND (A.ADDR_NM RLIKE '^(ㅅ|ㅆ)' OR (A.ADDR_NM <![CDATA[>=]]> '사' AND A.ADDR_NM <![CDATA[<]]> '아')) | |
| 361 | - </isEqual> | |
| 362 | - <isEqual property="startKeyword" compareValue="8"> | |
| 363 | - AND (A.ADDR_NM RLIKE '^(ㅇ)' OR (A.ADDR_NM <![CDATA[>=]]> '아' AND A.ADDR_NM <![CDATA[<]]> '자')) | |
| 364 | - </isEqual> | |
| 365 | - <isEqual property="startKeyword" compareValue="9"> | |
| 366 | - AND (A.ADDR_NM RLIKE '^(ㅈ|ㅉ)' OR (A.ADDR_NM <![CDATA[>=]]> '자' AND A.ADDR_NM <![CDATA[<]]> '차')) | |
| 367 | - </isEqual> | |
| 368 | - <isEqual property="startKeyword" compareValue="10"> | |
| 369 | - AND (A.ADDR_NM RLIKE '^(ㅊ)' OR (A.ADDR_NM <![CDATA[>=]]> '차' AND A.ADDR_NM <![CDATA[<]]> '카')) | |
| 370 | - </isEqual> | |
| 371 | - <isEqual property="startKeyword" compareValue="11"> | |
| 372 | - AND (A.ADDR_NM RLIKE '^(ㅋ)' OR (A.ADDR_NM <![CDATA[>=]]> '카' AND A.ADDR_NM <![CDATA[<]]> '타')) | |
| 373 | - </isEqual> | |
| 374 | - <isEqual property="startKeyword" compareValue="12"> | |
| 375 | - AND (A.ADDR_NM RLIKE '^(ㅌ)' OR (A.ADDR_NM <![CDATA[>=]]> '타' AND A.ADDR_NM <![CDATA[<]]> '파')) | |
| 376 | - </isEqual> | |
| 377 | - <isEqual property="startKeyword" compareValue="13"> | |
| 378 | - AND (A.ADDR_NM RLIKE '^(ㅍ)' OR (A.ADDR_NM <![CDATA[>=]]> '파' AND A.ADDR_NM <![CDATA[<]]> '하')) | |
| 379 | - </isEqual> | |
| 380 | - <isEqual property="startKeyword" compareValue="14"> | |
| 381 | - AND (A.ADDR_NM RLIKE '^(ㅎ)' OR (A.ADDR_NM <![CDATA[>=]]> '하' AND A.ADDR_NM <![CDATA[<=]]> '힣')) | |
| 382 | - </isEqual> | |
| 383 | - <isEqual property="startKeyword" compareValue="a"> | |
| 384 | - AND (A.ADDR_NM <![CDATA[>=]]> 'a' AND A.ADDR_NM <![CDATA[<=]]> 'z') | |
| 385 | - </isEqual> | |
| 386 | - <isEqual property="startKeyword" compareValue="0"> | |
| 387 | - AND (A.ADDR_NM <![CDATA[>=]]> '0' AND A.ADDR_NM <![CDATA[<=]]>'9') | |
| 388 | - </isEqual> | |
| 389 | - | |
| 390 | - ORDER BY 1=1 | |
| 391 | - <isNotEmpty property="searchSortCnd"> | |
| 392 | - ,$searchSortCnd$ | |
| 393 | - </isNotEmpty> | |
| 394 | - <isNotEmpty property="searchSortOrd"> | |
| 395 | - $searchSortOrd$ | |
| 396 | - </isNotEmpty> | |
| 397 | - LIMIT #recordCountPerPage# OFFSET #firstIndex# | |
| 398 | - ) M | |
| 399 | - </select> | |
| 400 | - | |
| 401 | - <!-- 회원별 주소록 전체 갯수 조회 --> | |
| 402 | - <select id="FaxAddrDAO.selectFaxAddrTotalCount" parameterClass="faxAddrVO" resultClass="int"> | |
| 403 | - SELECT | |
| 404 | - COUNT(A.ADDR_ID) AS totCnt | |
| 405 | - FROM | |
| 406 | - MJ_FAX_ADDR A | |
| 407 | - WHERE | |
| 408 | - A.MBER_ID = #mberId# | |
| 409 | - AND (A.RECV_STATUS = 'Y' OR A.RECV_STATUS = 'S' OR A.RECV_STATUS IS NULL) | |
| 410 | - AND A.DELETE_YN = 'N' | |
| 411 | - </select> | |
| 412 | - | |
| 413 | - <!-- 주소록 상세 조회 --> | |
| 414 | - <select id="FaxAddrDAO.selectFaxAddrDetail" parameterClass="faxAddrVO" resultClass="faxAddrVO"> | |
| 415 | - SELECT | |
| 416 | - A.ADDR_ID AS addrId | |
| 417 | - ,A.ADDR_GRP_ID AS addrGrpId | |
| 418 | - ,A.MBER_ID AS mberId | |
| 419 | - ,A.ADDR_NM AS addrNm | |
| 420 | - ,A.ADDR_PHONE_NO AS addrPhoneNo | |
| 421 | - ,A.ADDR_COMMENT AS addrComment | |
| 422 | - ,DATE_FORMAT(A.FRST_REGIST_PNTTM, '%Y-%m-%d %T' ) AS frstRegistPnttm | |
| 423 | - ,A.FRST_REGISTER_ID AS frstRegisterId | |
| 424 | - ,DATE_FORMAT(A.LAST_UPDT_PNTTM, '%Y-%m-%d %T' ) AS lastUpdtPnttm | |
| 425 | - ,A.LAST_UPDUSR_ID AS lastUpdusrId | |
| 426 | - ,A.DELETE_YN AS deleteYn | |
| 427 | - ,A.BOOKMARK AS bookmark | |
| 428 | - ,b.ADDR_GRP_NM AS addrGrpNm | |
| 429 | - FROM | |
| 430 | - MJ_FAX_ADDR a | |
| 431 | - LEFT OUTER JOIN | |
| 432 | - MJ_FAX_ADDR_GRP b | |
| 433 | - ON | |
| 434 | - a.ADDR_GRP_ID = b.ADDR_GRP_ID | |
| 435 | - WHERE | |
| 436 | - a.ADDR_ID = #addrId# | |
| 437 | - </select> | |
| 438 | - | |
| 439 | - | |
| 440 | - <!-- 주소록 등록 --> | |
| 441 | - <insert id="FaxAddrDAO.insertFaxAddr" parameterClass="faxAddrVO"> | |
| 442 | - INSERT INTO MJ_FAX_ADDR ( | |
| 443 | - <isNotEmpty property="addrGrpId"> | |
| 444 | - ADDR_GRP_ID, | |
| 445 | - </isNotEmpty> | |
| 446 | - MBER_ID | |
| 447 | - ,ADDR_NM | |
| 448 | - ,ADDR_PHONE_NO | |
| 449 | - ,ADDR_COMMENT | |
| 450 | - ,FRST_REGIST_PNTTM | |
| 451 | - ,FRST_REGISTER_ID | |
| 452 | - <isNotEmpty property="bookmark"> | |
| 453 | - ,BOOKMARK | |
| 454 | - </isNotEmpty> | |
| 455 | - <isNotEmpty property="recvStatus"> | |
| 456 | - ,RECV_STATUS | |
| 457 | - </isNotEmpty> | |
| 458 | - )VALUES( | |
| 459 | - <isNotEmpty property="addrGrpId"> | |
| 460 | - #addrGrpId#, | |
| 461 | - </isNotEmpty> | |
| 462 | - #mberId# | |
| 463 | - ,#addrNm# | |
| 464 | - ,#addrPhoneNo# | |
| 465 | - ,#addrComment# | |
| 466 | - ,NOW() | |
| 467 | - ,#frstRegisterId# | |
| 468 | - <isNotEmpty property="bookmark"> | |
| 469 | - ,#bookmark# | |
| 470 | - </isNotEmpty> | |
| 471 | - <isNotEmpty property="recvStatus"> | |
| 472 | - ,#recvStatus# | |
| 473 | - </isNotEmpty> | |
| 474 | - ) | |
| 475 | - </insert> | |
| 476 | - | |
| 477 | - | |
| 478 | - <!-- 주소록 수정 --> | |
| 479 | - <update id="FaxAddrDAO.updateFaxAddr" parameterClass="faxAddrVO"> | |
| 480 | - UPDATE | |
| 481 | - MJ_FAX_ADDR | |
| 482 | - SET | |
| 483 | - <isNotEmpty property="addrGrpId"> | |
| 484 | - ADDR_GRP_ID = #addrGrpId#, | |
| 485 | - </isNotEmpty> | |
| 486 | - <isNotEmpty property="addrPhoneNo"> | |
| 487 | - ADDR_PHONE_NO = #addrPhoneNo#, | |
| 488 | - </isNotEmpty> | |
| 489 | - ADDR_NM = #addrNm#, | |
| 490 | - <isNotEmpty property="addrComment"> | |
| 491 | - ADDR_COMMENT = #addrComment#, | |
| 492 | - </isNotEmpty> | |
| 493 | - <isNotEmpty property="bookmark"> | |
| 494 | - BOOKMARK = #bookmark#, | |
| 495 | - </isNotEmpty> | |
| 496 | - LAST_UPDT_PNTTM = NOW(), | |
| 497 | - LAST_UPDUSR_ID = #lastUpdusrId# | |
| 498 | - WHERE | |
| 499 | - MBER_ID = #mberId# | |
| 500 | - AND | |
| 501 | - ADDR_ID = #addrId# | |
| 502 | - </update> | |
| 503 | - | |
| 504 | - <!-- 주소록 그룹 수정 --> | |
| 505 | - <update id="FaxAddrDAO.updateFaxAddrGrp" parameterClass="faxAddrVO"> | |
| 506 | - UPDATE | |
| 507 | - MJ_FAX_ADDR | |
| 508 | - SET | |
| 509 | - ADDR_GRP_ID = #addrGrpId#, | |
| 510 | - BOOKMARK = #bookmark#, | |
| 511 | - LAST_UPDT_PNTTM = NOW(), | |
| 512 | - LAST_UPDUSR_ID = #lastUpdusrId# | |
| 513 | - WHERE | |
| 514 | - MBER_ID = #mberId# | |
| 515 | - AND | |
| 516 | - ADDR_ID = #addrId# | |
| 517 | - </update> | |
| 518 | - | |
| 519 | - <!-- 주소록 메모 수정 --> | |
| 520 | - <update id="FaxAddrDAO.updateMemoFaxAddr" parameterClass="faxAddrVO"> | |
| 521 | - UPDATE | |
| 522 | - MJ_FAX_ADDR | |
| 523 | - SET | |
| 524 | - ADDR_COMMENT = #addrComment# | |
| 525 | - WHERE | |
| 526 | - MBER_ID = #mberId# | |
| 527 | - AND | |
| 528 | - ADDR_ID = #addrId# | |
| 529 | - </update> | |
| 530 | - | |
| 531 | - | |
| 532 | - | |
| 533 | - <!-- 주소록 수정 By Admin --> | |
| 534 | - <update id="FaxAddrDAO.updateFaxAddrByAdmin" parameterClass="faxAddrVO"> | |
| 535 | - UPDATE | |
| 536 | - MJ_FAX_ADDR | |
| 537 | - SET | |
| 538 | - <isNotEmpty property="addrGrpId"> | |
| 539 | - ADDR_GRP_ID = #addrGrpId#, | |
| 540 | - </isNotEmpty> | |
| 541 | - <isNotEmpty property="addrNm"> | |
| 542 | - ADDR_NM = #addrNm#, | |
| 543 | - </isNotEmpty> | |
| 544 | - <isNotEmpty property="addrPhoneNo"> | |
| 545 | - ADDR_PHONE_NO = #addrPhoneNo#, | |
| 546 | - </isNotEmpty> | |
| 547 | - <isNotEmpty property="addrComment"> | |
| 548 | - ADDR_COMMENT = #addrComment#, | |
| 549 | - </isNotEmpty> | |
| 550 | - <isNotEmpty property="bookmark"> | |
| 551 | - BOOKMARK = #bookmark#, | |
| 552 | - </isNotEmpty> | |
| 553 | - LAST_UPDT_PNTTM = NOW(), | |
| 554 | - LAST_UPDUSR_ID = #lastUpdusrId# | |
| 555 | - WHERE | |
| 556 | - ADDR_ID = #addrId# | |
| 557 | - </update> | |
| 558 | - | |
| 559 | - | |
| 560 | - <!-- 주소록 합치기, 이동 --> | |
| 561 | - <update id="FaxAddrDAO.updateFaxAddrsGrp" parameterClass="faxAddrVO"> | |
| 562 | - UPDATE | |
| 563 | - MJ_FAX_ADDR | |
| 564 | - SET | |
| 565 | - ADDR_GRP_ID = #addrGrpId#, | |
| 566 | - LAST_UPDT_PNTTM = NOW(), | |
| 567 | - LAST_UPDUSR_ID = #lastUpdusrId# | |
| 568 | - WHERE | |
| 569 | - MBER_ID = #mberId# | |
| 570 | - AND | |
| 571 | - ADDR_GRP_ID | |
| 572 | - IN | |
| 573 | - <iterate property="mergeGrps" open="(" close=")" conjunction=","> | |
| 574 | - #mergeGrps[]# | |
| 575 | - </iterate> | |
| 576 | - | |
| 577 | - </update> | |
| 578 | - | |
| 579 | - | |
| 580 | - | |
| 581 | - <!-- 주소록 삭제 --> | |
| 582 | - <delete id="FaxAddrDAO.deleteFaxAddr" parameterClass="faxAddrVO"> | |
| 583 | - DELETE FROM | |
| 584 | - MJ_FAX_ADDR | |
| 585 | - WHERE | |
| 586 | - MBER_ID = #mberId# | |
| 587 | - <isEqual property="grpDelete" compareValue="Y"> | |
| 588 | - AND | |
| 589 | - ADDR_GRP_ID = #addrGrpId# | |
| 590 | - </isEqual> | |
| 591 | - <isNotEqual property="grpDelete" compareValue="Y"> | |
| 592 | - AND | |
| 593 | - ADDR_ID = #addrId# | |
| 594 | - </isNotEqual> | |
| 595 | - </delete> | |
| 596 | - | |
| 597 | - <!-- 주소록 삭제 By Admin --> | |
| 598 | - <delete id="FaxAddrDAO.deleteFaxAddrByAdmin" parameterClass="faxAddrVO"> | |
| 599 | - DELETE FROM | |
| 600 | - MJ_FAX_ADDR | |
| 601 | - WHERE ADDR_ID = #addrId# | |
| 602 | - </delete> | |
| 603 | - | |
| 604 | - <!-- 주소록 삭제 By Admin By Grpid --> | |
| 605 | - <delete id="FaxAddrDAO.deleteFaxAddrByAdminByGrpid" parameterClass="faxAddrVO"> | |
| 606 | - DELETE FROM | |
| 607 | - MJ_FAX_ADDR | |
| 608 | - WHERE ADDR_GRP_ID = #addrGrpId# | |
| 609 | - </delete> | |
| 610 | - | |
| 611 | - <!-- 주소록 기본 그룹 조회 (자주보내는번호, 그룹미지정)--> | |
| 612 | - <select id="FaxAddrDAO.selectFaxAddrBasicGrpList" parameterClass="faxAddrVO" resultClass="faxAddrVO"> | |
| 613 | - SELECT | |
| 614 | - COUNT(1) OVER() AS totCnt | |
| 615 | - ,A.ADDR_ID AS addrId | |
| 616 | - ,A.ADDR_GRP_ID AS addrGrpId | |
| 617 | - ,A.MBER_ID AS mberId | |
| 618 | - ,A.ADDR_NM AS addrNm | |
| 619 | - ,A.ADDR_PHONE_NO AS addrPhoneNo | |
| 620 | - ,A.ADDR_COMMENT AS addrComment | |
| 621 | - ,DATE_FORMAT(A.FRST_REGIST_PNTTM, '%Y-%m-%d %T' ) AS frstRegistPnttm | |
| 622 | - ,A.FRST_REGISTER_ID AS frstRegisterId | |
| 623 | - ,DATE_FORMAT(A.LAST_UPDT_PNTTM, '%Y-%m-%d %T' ) AS lastUpdtPnttm | |
| 624 | - ,A.LAST_UPDUSR_ID AS lastUpdusrId | |
| 625 | - ,A.DELETE_YN AS deleteYn | |
| 626 | - ,A.BOOKMARK AS bookmark | |
| 627 | - ,B.ADDR_GRP_NM AS addrGrpNm | |
| 628 | - FROM | |
| 629 | - MJ_FAX_ADDR A | |
| 630 | - LEFT OUTER JOIN | |
| 631 | - MJ_FAX_ADDR_GRP B | |
| 632 | - ON | |
| 633 | - A.ADDR_GRP_ID = B.ADDR_GRP_ID | |
| 634 | - WHERE | |
| 635 | - A.MBER_ID = #mberId# | |
| 636 | - <isEqual property="type" compareValue="bookmark"> | |
| 637 | - AND | |
| 638 | - A.BOOKMARK = 'Y' | |
| 639 | - </isEqual> | |
| 640 | - <isEqual property="type" compareValue="noGrp"> | |
| 641 | - AND | |
| 642 | - A.ADDR_GRP_ID = '0' | |
| 643 | - | |
| 644 | - AND | |
| 645 | - A.BOOKMARK = 'N' | |
| 646 | - </isEqual> | |
| 647 | - ORDER BY 1=1 | |
| 648 | - <isNotEmpty property="searchSortCnd"> | |
| 649 | - ,$searchSortCnd$ | |
| 650 | - </isNotEmpty> | |
| 651 | - <isNotEmpty property="searchSortOrd"> | |
| 652 | - $searchSortOrd$ | |
| 653 | - </isNotEmpty> | |
| 654 | - </select> | |
| 655 | - | |
| 656 | - | |
| 657 | - <update id="FaxAddrDAO.insertCopyFaxAddr" parameterClass="faxAddrVO"> | |
| 658 | - INSERT INTO MJ_FAX_ADDR ( | |
| 659 | - ADDR_GRP_ID | |
| 660 | - ,MBER_ID | |
| 661 | - ,ADDR_NM | |
| 662 | - ,ADDR_PHONE_NO | |
| 663 | - ,ADDR_COMMENT | |
| 664 | - ,FRST_REGIST_PNTTM | |
| 665 | - ,FRST_REGISTER_ID | |
| 666 | - <isNotEmpty property="bookmark"> | |
| 667 | - ,BOOKMARK | |
| 668 | - </isNotEmpty> | |
| 669 | - ) | |
| 670 | - SELECT | |
| 671 | - #addrGrpId# AS ADDR_GRP_ID | |
| 672 | - ,MBER_ID | |
| 673 | - ,ADDR_NM | |
| 674 | - ,ADDR_PHONE_NO | |
| 675 | - ,ADDR_COMMENT | |
| 676 | - ,NOW() | |
| 677 | - ,MBER_ID | |
| 678 | - <isNotEmpty property="bookmark"> | |
| 679 | - ,#bookmark# | |
| 680 | - </isNotEmpty> | |
| 681 | - FROM MJ_FAX_ADDR | |
| 682 | - WHERE | |
| 683 | - MBER_ID = #mberId# | |
| 684 | - AND | |
| 685 | - ADDR_ID = #addrId# | |
| 686 | - </update> | |
| 687 | - | |
| 688 | - <!-- /주소록 등록 갯수 및 정보 불러오기/ --> | |
| 689 | - <select id="FaxAddrDAO.selectFaxAddrTotCntInfByUserId" parameterClass="faxAddrVO" resultClass="egovMap"> | |
| 690 | - | |
| 691 | - SELECT COUNT(MBER_ID) OVER() AS totCnt, | |
| 692 | - ADDR_ID AS addrId, | |
| 693 | - ADDR_GRP_ID AS addrGrpId, | |
| 694 | - MBER_ID AS mberId, | |
| 695 | - ADDR_NM AS addrnm, | |
| 696 | - ADDR_PHONE_NO AS addrPhoneNo, | |
| 697 | - ADDR_COMMENT AS addrComment, | |
| 698 | - BOOKMARK AS bookmark, | |
| 699 | - DATE_FORMAT(FRST_REGIST_PNTTM, '%Y-%m-%d %T' ) AS frstRegistPnttm, | |
| 700 | - DATE_FORMAT(LAST_UPDT_PNTTM, '%Y-%m-%d %T' ) AS lastUpdtPnttm | |
| 701 | - FROM MJ_FAX_ADDR a | |
| 702 | - WHERE a.MBER_ID = #mberId# | |
| 703 | - AND delete_yn = 'N' | |
| 704 | - | |
| 705 | - </select> | |
| 706 | - | |
| 707 | - <insert id="FaxAddrDAO.insertFaxAddrList" parameterClass="java.util.List"> | |
| 708 | - | |
| 709 | - INSERT INTO MJ_FAX_ADDR | |
| 710 | - ( | |
| 711 | - MBER_ID, | |
| 712 | - ADDR_GRP_ID, | |
| 713 | - ADDR_NM, | |
| 714 | - ADDR_PHONE_NO, | |
| 715 | - DELETE_YN, | |
| 716 | - BOOKMARK, | |
| 717 | - ADDR_COMMENT, | |
| 718 | - FRST_REGISTER_ID | |
| 719 | - )VALUES | |
| 720 | - <iterate conjunction=","> | |
| 721 | - ( | |
| 722 | - #[].mberId#, | |
| 723 | - #[].addrGrpId#, | |
| 724 | - #[].addrNm#, | |
| 725 | - #[].addrPhoneNo#, | |
| 726 | - 'N', | |
| 727 | - #[].bookmark#, | |
| 728 | - #[].addrComment#, | |
| 729 | - #[].frstRegisterId# | |
| 730 | - ) | |
| 731 | - </iterate> | |
| 732 | - | |
| 733 | - </insert> | |
| 734 | - | |
| 735 | - <!-- 주소록 그룹명 중복확인 --> | |
| 736 | - <select id="FaxAddrDAO.selectDuplFaxAddrCnt" parameterClass="faxAddrVO" resultClass="int"> | |
| 737 | - SELECT | |
| 738 | - COUNT(1) usedCnt | |
| 739 | - FROM | |
| 740 | - MJ_FAX_ADDR | |
| 741 | - WHERE | |
| 742 | - ADDR_GRP_ID = #addrGrpId# | |
| 743 | - AND | |
| 744 | - MBER_ID = #mberId# | |
| 745 | - AND | |
| 746 | - ADDR_PHONE_NO = #addrPhoneNo# | |
| 747 | - </select> | |
| 748 | - | |
| 749 | - | |
| 750 | - <!-- 주소록 한 그룹에 속한 주소록의 전화번호 조회(중복체크용도) --> | |
| 751 | - <select id="FaxAddrDAO.selectPhoneNumInFaxAddrGroup" parameterClass="faxAddrVO" resultClass="faxAddrVO"> | |
| 752 | - SELECT | |
| 753 | - ADDR_PHONE_NO AS addrPhoneNo | |
| 754 | - FROM | |
| 755 | - MJ_FAX_ADDR | |
| 756 | - WHERE | |
| 757 | - ADDR_GRP_ID = #addrGrpId# | |
| 758 | - AND MBER_ID = #mberId# | |
| 759 | - AND BOOKMARK = #bookmark# | |
| 760 | - </select> | |
| 761 | - | |
| 762 | - <update id="FaxAddrDAO.insertCopyFaxAddrs" parameterClass="faxAddrVO"> | |
| 763 | - INSERT INTO MJ_FAX_ADDR ( | |
| 764 | - ADDR_GRP_ID | |
| 765 | - ,MBER_ID | |
| 766 | - ,ADDR_NM | |
| 767 | - ,ADDR_PHONE_NO | |
| 768 | - ,ADDR_COMMENT | |
| 769 | - ,FRST_REGIST_PNTTM | |
| 770 | - ,FRST_REGISTER_ID | |
| 771 | - ) | |
| 772 | - SELECT | |
| 773 | - #addrGrpId# AS ADDR_GRP_ID | |
| 774 | - ,MBER_ID | |
| 775 | - ,ADDR_NM | |
| 776 | - ,ADDR_PHONE_NO | |
| 777 | - ,ADDR_COMMENT | |
| 778 | - ,NOW() | |
| 779 | - ,MBER_ID | |
| 780 | - FROM MJ_FAX_ADDR | |
| 781 | - WHERE | |
| 782 | - MBER_ID = #mberId# | |
| 783 | - AND | |
| 784 | - ADDR_GRP_ID IN | |
| 785 | - <iterate property="copyAddrs" open="(" close=")" conjunction=","> | |
| 786 | - #copyAddrs[]# | |
| 787 | - </iterate> | |
| 788 | - </update> | |
| 789 | - | |
| 790 | - <!-- 문자페이지로 전송할 데이터만 추려오기 --> | |
| 791 | - <select id="FaxAddrDAO.selectFaxAddrDataList" parameterClass="faxAddrVO" resultClass="faxAddrVO"> | |
| 792 | - SELECT | |
| 793 | - COUNT(1) OVER() AS totCnt | |
| 794 | - ,A.ADDR_ID AS addrId | |
| 795 | - ,A.ADDR_GRP_ID AS addrGrpId | |
| 796 | - ,A.MBER_ID AS mberId | |
| 797 | - ,A.ADDR_NM AS addrNm | |
| 798 | - ,A.ADDR_PHONE_NO AS addrPhoneNo | |
| 799 | - ,A.ADDR_COMMENT AS addrComment | |
| 800 | - ,DATE_FORMAT(A.FRST_REGIST_PNTTM, '%Y-%m-%d %T' ) AS frstRegistPnttm | |
| 801 | - ,A.FRST_REGISTER_ID AS frstRegisterId | |
| 802 | - ,DATE_FORMAT(A.LAST_UPDT_PNTTM, '%Y-%m-%d %T' ) AS lastUpdtPnttm | |
| 803 | - ,A.LAST_UPDUSR_ID AS lastUpdusrId | |
| 804 | - ,A.DELETE_YN AS deleteYn | |
| 805 | - ,A.BOOKMARK AS bookmark | |
| 806 | - FROM | |
| 807 | - MJ_FAX_ADDR A | |
| 808 | - WHERE | |
| 809 | - A.MBER_ID = #mberId# | |
| 810 | - <iterate prepend="AND A.ADDR_ID IN " open="(" close=")" conjunction="," property="addrIdList"> | |
| 811 | - #addrIdList[]# | |
| 812 | - </iterate> | |
| 813 | - ORDER BY A.ADDR_NM ASC | |
| 814 | - </select> | |
| 815 | - | |
| 816 | - <!-- 주소록 그룹별 중복 연락처 삭제 --> | |
| 817 | - <delete id="FaxAddrDAO.deleteFaxAddrDupliList" parameterClass="faxAddrVO"> | |
| 818 | - DELETE FROM MJ_FAX_ADDR WHERE ADDR_ID IN ( | |
| 819 | - SELECT | |
| 820 | - M.ADDR_ID | |
| 821 | - FROM ( | |
| 822 | - SELECT | |
| 823 | - A.ADDR_ID | |
| 824 | - , A.ADDR_PHONE_NO | |
| 825 | - , COUNT(0) AS DUPLI_CNT | |
| 826 | - FROM MJ_FAX_ADDR A | |
| 827 | - LEFT OUTER JOIN MJ_FAX_ADDR_GRP B | |
| 828 | - ON A.ADDR_GRP_ID = B.ADDR_GRP_ID | |
| 829 | - WHERE A.MBER_ID = #mberId# | |
| 830 | - AND (A.RECV_STATUS = 'Y' OR A.RECV_STATUS = 'S' OR A.RECV_STATUS IS NULL) | |
| 831 | - AND A.DELETE_YN = 'N' | |
| 832 | - GROUP BY A.ADDR_GRP_ID, A.BOOKMARK, A.ADDR_PHONE_NO | |
| 833 | - ) M | |
| 834 | - WHERE M.DUPLI_CNT > 1 | |
| 835 | - ) | |
| 836 | - </delete> | |
| 837 | - | |
| 838 | - <!-- 주소록 그룹별 중복 연락처 리스트 불러오기 --> | |
| 839 | - <select id="FaxAddrDAO.selectFaxAddrDupliList" parameterClass="faxAddrVO" resultClass="faxAddrVO"> | |
| 840 | - SELECT | |
| 841 | - M.ADDR_GRP_NM AS addrGrpNm | |
| 842 | - , COUNT(0) AS dupliCnt | |
| 843 | - FROM ( | |
| 844 | - SELECT | |
| 845 | - A.ADDR_ID | |
| 846 | - ,CASE | |
| 847 | - WHEN A.ADDR_GRP_ID = 0 AND A.BOOKMARK = 'N' | |
| 848 | - THEN '그룹미지정' | |
| 849 | - WHEN A.ADDR_GRP_ID = 0 AND A.BOOKMARK = 'Y' | |
| 850 | - THEN '자주보내는 번호' | |
| 851 | - ELSE B.ADDR_GRP_NM | |
| 852 | - END ADDR_GRP_NM | |
| 853 | - ,A.ADDR_PHONE_NO | |
| 854 | - ,COUNT(0) AS DUPLI_CNT | |
| 855 | - FROM MJ_FAX_ADDR A | |
| 856 | - LEFT OUTER JOIN MJ_FAX_ADDR_GRP B | |
| 857 | - ON A.ADDR_GRP_ID = B.ADDR_GRP_ID | |
| 858 | - WHERE A.MBER_ID = #mberId# | |
| 859 | - AND (A.RECV_STATUS = 'Y' OR A.RECV_STATUS = 'S' OR A.RECV_STATUS IS NULL) | |
| 860 | - AND A.DELETE_YN = 'N' | |
| 861 | - GROUP BY A.ADDR_GRP_ID, A.BOOKMARK, A.ADDR_PHONE_NO | |
| 862 | - ) M | |
| 863 | - WHERE M.DUPLI_CNT > 1 | |
| 864 | - GROUP BY M.ADDR_GRP_NM | |
| 865 | - </select> | |
| 866 | - | |
| 867 | - <!-- 주소록 그룹별 중복 연락처 삭제 --> | |
| 868 | - <delete id="FaxAddrDAO.deleteFaxAddrDupliListByGrpnm" parameterClass="faxAddrVO"> | |
| 869 | - DELETE FROM MJ_FAX_ADDR WHERE ADDR_ID IN ( | |
| 870 | - SELECT | |
| 871 | - M.ADDR_ID | |
| 872 | - FROM ( | |
| 873 | - SELECT | |
| 874 | - A.ADDR_ID | |
| 875 | - ,COUNT(0) AS DUPLI_CNT | |
| 876 | - FROM MJ_FAX_ADDR A | |
| 877 | - LEFT OUTER JOIN MJ_FAX_ADDR_GRP B | |
| 878 | - ON A.ADDR_GRP_ID = B.ADDR_GRP_ID | |
| 879 | - WHERE A.MBER_ID = #mberId# | |
| 880 | - AND A.ADDR_GRP_ID = #addrGrpId# | |
| 881 | - AND A.BOOKMARK = #bookmark# | |
| 882 | - AND (A.RECV_STATUS = 'Y' OR A.RECV_STATUS = 'S' OR A.RECV_STATUS IS NULL) | |
| 883 | - AND A.DELETE_YN = 'N' | |
| 884 | - GROUP BY A.ADDR_GRP_ID, A.BOOKMARK, A.ADDR_PHONE_NO | |
| 885 | - ) M | |
| 886 | - WHERE M.DUPLI_CNT > 1 | |
| 887 | - ) | |
| 888 | - | |
| 889 | - </delete> | |
| 890 | - | |
| 891 | - <!-- 주소록 그룹별 중복 연락처 리스트 불러오기 --> | |
| 892 | - <select id="FaxAddrDAO.selectFaxAddrDupliListByGrpnm" parameterClass="faxAddrVO" resultClass="faxAddrVO"> | |
| 893 | - SELECT | |
| 894 | - M.ADDR_GRP_NM AS addrGrpNm | |
| 895 | - , COUNT(0) AS dupliCnt | |
| 896 | - FROM ( | |
| 897 | - SELECT | |
| 898 | - A.ADDR_ID | |
| 899 | - ,CASE | |
| 900 | - WHEN A.ADDR_GRP_ID = 0 AND A.BOOKMARK = 'N' | |
| 901 | - THEN '그룹미지정' | |
| 902 | - WHEN A.ADDR_GRP_ID = 0 AND A.BOOKMARK = 'Y' | |
| 903 | - THEN '자주보내는 번호' | |
| 904 | - ELSE B.ADDR_GRP_NM | |
| 905 | - END ADDR_GRP_NM | |
| 906 | - ,A.ADDR_PHONE_NO | |
| 907 | - ,COUNT(0) AS DUPLI_CNT | |
| 908 | - FROM MJ_FAX_ADDR A | |
| 909 | - LEFT OUTER JOIN MJ_FAX_ADDR_GRP B | |
| 910 | - ON A.ADDR_GRP_ID = B.ADDR_GRP_ID | |
| 911 | - WHERE A.MBER_ID = #mberId# | |
| 912 | - AND A.ADDR_GRP_ID = #addrGrpId# | |
| 913 | - AND A.BOOKMARK = #bookmark# | |
| 914 | - AND (A.RECV_STATUS = 'Y' OR A.RECV_STATUS = 'S' OR A.RECV_STATUS IS NULL) | |
| 915 | - AND A.DELETE_YN = 'N' | |
| 916 | - GROUP BY A.ADDR_GRP_ID, A.BOOKMARK, A.ADDR_PHONE_NO | |
| 917 | - ) M | |
| 918 | - WHERE M.DUPLI_CNT > 1 | |
| 919 | - GROUP BY M.ADDR_GRP_NM | |
| 920 | - </select> | |
| 921 | - | |
| 922 | - | |
| 923 | - <!-- 주소록 전체 중복 연락처 중 한개만 남기고 삭제 --> | |
| 924 | - <delete id="FaxAddrDAO.deleteFaxAddrDupliListByAll" parameterClass="faxAddrVO"> | |
| 925 | - DELETE FROM MJ_FAX_ADDR WHERE ADDR_ID IN ( | |
| 926 | - SELECT | |
| 927 | - M.ADDR_ID | |
| 928 | - FROM ( | |
| 929 | - SELECT | |
| 930 | - A.ADDR_ID | |
| 931 | - , A.ADDR_PHONE_NO | |
| 932 | - , COUNT(0) AS DUPLI_CNT | |
| 933 | - FROM MJ_FAX_ADDR A | |
| 934 | - LEFT OUTER JOIN MJ_FAX_ADDR_GRP B | |
| 935 | - ON A.ADDR_GRP_ID = B.ADDR_GRP_ID | |
| 936 | - WHERE A.MBER_ID = #mberId# | |
| 937 | - AND (A.RECV_STATUS = 'Y' OR A.RECV_STATUS = 'S' OR A.RECV_STATUS IS NULL) | |
| 938 | - AND A.DELETE_YN = 'N' | |
| 939 | - GROUP BY A.ADDR_PHONE_NO | |
| 940 | - ORDER BY A.ADDR_PHONE_NO ASC, B.ADDR_GRP_ID ASC | |
| 941 | - ) M | |
| 942 | - WHERE M.DUPLI_CNT > 1 | |
| 943 | - ) | |
| 944 | - | |
| 945 | - </delete> | |
| 946 | - | |
| 947 | - <!-- 주소록 전체 중복 연락처 수 --> | |
| 948 | - <select id="FaxAddrDAO.selectFaxAddrDupliListByAllCnt" parameterClass="faxAddrVO" resultClass="int"> | |
| 949 | - SELECT | |
| 950 | - COUNT(0) AS totCnt | |
| 951 | - FROM ( | |
| 952 | - SELECT | |
| 953 | - A.ADDR_ID | |
| 954 | - , A.ADDR_PHONE_NO | |
| 955 | - , COUNT(0) AS DUPLI_CNT | |
| 956 | - FROM MJ_FAX_ADDR A | |
| 957 | - LEFT OUTER JOIN MJ_FAX_ADDR_GRP B | |
| 958 | - ON A.ADDR_GRP_ID = B.ADDR_GRP_ID | |
| 959 | - WHERE A.MBER_ID = #mberId# | |
| 960 | - AND (A.RECV_STATUS = 'Y' OR A.RECV_STATUS = 'S' OR A.RECV_STATUS IS NULL) | |
| 961 | - AND A.DELETE_YN = 'N' | |
| 962 | - GROUP BY A.ADDR_PHONE_NO | |
| 963 | - ORDER BY A.ADDR_PHONE_NO ASC, B.ADDR_GRP_ID ASC | |
| 964 | - ) M | |
| 965 | - WHERE M.DUPLI_CNT > 1 | |
| 966 | - </select> | |
| 967 | - | |
| 968 | - <!-- 주소록 전체 중복 연락처 목록 --> | |
| 969 | - <select id="FaxAddrDAO.selectFaxAddrDupliListByAll" parameterClass="faxAddrVO" resultClass="faxAddrVO"> | |
| 970 | - SELECT | |
| 971 | - COUNT(1) OVER() AS totCnt | |
| 972 | - , A2.ADDR_ID AS addrId | |
| 973 | - , A2.ADDR_NM AS addrNm | |
| 974 | - , A2.ADDR_GRP_ID AS addrGrpId | |
| 975 | - ,CASE | |
| 976 | - WHEN A2.ADDR_GRP_ID = 0 AND A2.BOOKMARK = 'N' | |
| 977 | - THEN '그룹미지정' | |
| 978 | - WHEN A2.ADDR_GRP_ID = 0 AND A2.BOOKMARK = 'Y' | |
| 979 | - THEN '자주보내는 번호' | |
| 980 | - ELSE B2.ADDR_GRP_NM | |
| 981 | - END addrGrpNm | |
| 982 | - , A2.ADDR_PHONE_NO AS addrPhoneNo | |
| 983 | - FROM MJ_FAX_ADDR A2 | |
| 984 | - LEFT OUTER JOIN MJ_FAX_ADDR_GRP B2 | |
| 985 | - ON A2.ADDR_GRP_ID = B2.ADDR_GRP_ID | |
| 986 | - WHERE A2.MBER_ID = #mberId# | |
| 987 | - AND A2.ADDR_PHONE_NO IN | |
| 988 | - ( | |
| 989 | - SELECT | |
| 990 | - M.ADDR_PHONE_NO | |
| 991 | - FROM ( | |
| 992 | - SELECT | |
| 993 | - A.ADDR_ID | |
| 994 | - , A.ADDR_PHONE_NO | |
| 995 | - , COUNT(0) AS DUPLI_CNT | |
| 996 | - FROM MJ_FAX_ADDR A | |
| 997 | - LEFT OUTER JOIN MJ_FAX_ADDR_GRP B | |
| 998 | - ON A.ADDR_GRP_ID = B.ADDR_GRP_ID | |
| 999 | - WHERE A.MBER_ID = #mberId# | |
| 1000 | - AND (A.RECV_STATUS = 'Y' OR A.RECV_STATUS = 'S' OR A.RECV_STATUS IS NULL) | |
| 1001 | - AND A.DELETE_YN = 'N' | |
| 1002 | - GROUP BY A.ADDR_PHONE_NO | |
| 1003 | - ORDER BY A.ADDR_PHONE_NO ASC, B.ADDR_GRP_ID ASC | |
| 1004 | - ) M | |
| 1005 | - WHERE M.DUPLI_CNT > 1 | |
| 1006 | - ) | |
| 1007 | - ORDER BY A2.ADDR_PHONE_NO ASC, ADDR_GRP_NM ASC | |
| 1008 | - LIMIT #recordCountPerPage# OFFSET #firstIndex# | |
| 1009 | - </select> | |
| 1010 | - | |
| 1011 | - <!-- TEMP 주소록 중복 연락처 목록 --> | |
| 1012 | - <select id="FaxAddrDAO.selectTempFaxAddrDupliList" parameterClass="faxAddrVO" resultClass="faxAddrVO"> | |
| 1013 | - SELECT | |
| 1014 | - ADDR_NM AS addrNm | |
| 1015 | - , ADDR_PHONE_NO AS addrPhoneNo | |
| 1016 | - FROM TEMP_MJ_FAX_ADDR | |
| 1017 | - WHERE MBER_ID = #mberId# | |
| 1018 | - AND ADDR_GRP_ID = #addrGrpId# | |
| 1019 | - AND BOOKMARK = #bookmark# | |
| 1020 | - AND ADDR_PHONE_NO IN | |
| 1021 | - ( | |
| 1022 | - SELECT ADDR_PHONE_NO FROM MJ_FAX_ADDR | |
| 1023 | - WHERE MBER_ID = #mberId# | |
| 1024 | - AND ADDR_GRP_ID = #addrGrpId# | |
| 1025 | - AND BOOKMARK = #bookmark# | |
| 1026 | - ) | |
| 1027 | - ORDER BY ADDR_PHONE_NO ASC | |
| 1028 | - </select> | |
| 1029 | - | |
| 1030 | - <!-- TEMP 주소록 삭제 --> | |
| 1031 | - <delete id="FaxAddrDAO.deleteTempFaxAddr" parameterClass="faxAddrVO"> | |
| 1032 | - DELETE FROM TEMP_MJ_FAX_ADDR WHERE MBER_ID = #mberId# | |
| 1033 | - </delete> | |
| 1034 | - | |
| 1035 | - <!-- TEMP 주소록 대량등록 --> | |
| 1036 | - <insert id="FaxAddrDAO.insertTempFaxAddrList" parameterClass="java.util.List"> | |
| 1037 | - | |
| 1038 | - INSERT INTO TEMP_MJ_FAX_ADDR | |
| 1039 | - ( | |
| 1040 | - MBER_ID, | |
| 1041 | - ADDR_GRP_ID, | |
| 1042 | - ADDR_NM, | |
| 1043 | - ADDR_PHONE_NO, | |
| 1044 | - DELETE_YN, | |
| 1045 | - BOOKMARK, | |
| 1046 | - ADDR_COMMENT, | |
| 1047 | - FRST_REGISTER_ID | |
| 1048 | - )VALUES | |
| 1049 | - <iterate conjunction=","> | |
| 1050 | - ( | |
| 1051 | - #[].mberId#, | |
| 1052 | - #[].addrGrpId#, | |
| 1053 | - #[].addrNm#, | |
| 1054 | - #[].addrPhoneNo#, | |
| 1055 | - 'N', | |
| 1056 | - #[].bookmark#, | |
| 1057 | - #[].addrComment#, | |
| 1058 | - #[].frstRegisterId# | |
| 1059 | - ) | |
| 1060 | - </iterate> | |
| 1061 | - </insert> | |
| 1062 | - | |
| 1063 | - <!-- 주소록 대량등록 By Temp 주소록 --> | |
| 1064 | - <insert id="FaxAddrDAO.insertFaxAddrByTempAddr" parameterClass="faxAddrVO"> | |
| 1065 | - INSERT INTO MJ_FAX_ADDR ( | |
| 1066 | - ADDR_GRP_ID | |
| 1067 | - , MBER_ID | |
| 1068 | - , ADDR_NM | |
| 1069 | - , ADDR_PHONE_NO | |
| 1070 | - , ADDR_COMMENT | |
| 1071 | - , FRST_REGIST_PNTTM | |
| 1072 | - , FRST_REGISTER_ID | |
| 1073 | - , LAST_UPDT_PNTTM | |
| 1074 | - , LAST_UPDUSR_ID | |
| 1075 | - , DELETE_YN | |
| 1076 | - , BOOKMARK | |
| 1077 | - , RECV_STATUS | |
| 1078 | - ) | |
| 1079 | - SELECT | |
| 1080 | - ADDR_GRP_ID | |
| 1081 | - , MBER_ID | |
| 1082 | - , ADDR_NM | |
| 1083 | - , ADDR_PHONE_NO | |
| 1084 | - , ADDR_COMMENT | |
| 1085 | - , FRST_REGIST_PNTTM | |
| 1086 | - , FRST_REGISTER_ID | |
| 1087 | - , LAST_UPDT_PNTTM | |
| 1088 | - , LAST_UPDUSR_ID | |
| 1089 | - , DELETE_YN | |
| 1090 | - , BOOKMARK | |
| 1091 | - , RECV_STATUS | |
| 1092 | - FROM TEMP_MJ_FAX_ADDR | |
| 1093 | - WHERE MBER_ID = #mberId# | |
| 1094 | - AND ADDR_GRP_ID = #addrGrpId# | |
| 1095 | - AND BOOKMARK = #bookmark# | |
| 1096 | - AND ADDR_PHONE_NO NOT IN | |
| 1097 | - ( | |
| 1098 | - SELECT ADDR_PHONE_NO FROM MJ_FAX_ADDR | |
| 1099 | - WHERE MBER_ID = #mberId# | |
| 1100 | - AND ADDR_GRP_ID = #addrGrpId# | |
| 1101 | - AND BOOKMARK = #bookmark# | |
| 1102 | - ) | |
| 1103 | - </insert> | |
| 1104 | - | |
| 1105 | - | |
| 1106 | - <!-- 등록 주소록 그룹 선택시 리스트 불러오기 --> | |
| 1107 | - <select id="FaxAddrDAO.selectFaxAddrListAjax" parameterClass="faxAddrVO" resultClass="faxAddrVO"> | |
| 1108 | - | |
| 1109 | - SELECT A.ADDR_ID AS addrId, | |
| 1110 | - A.ADDR_GRP_ID AS addrGrpId, | |
| 1111 | - A.MBER_ID AS mberId, | |
| 1112 | - A.ADDR_NM AS addrNm, | |
| 1113 | - A.ADDR_PHONE_NO AS addrPhoneNo, | |
| 1114 | - A.DELETE_YN AS deleteYn, | |
| 1115 | - A.BOOKMARK AS bookmark, | |
| 1116 | - IFNULL(B.ADDR_GRP_NM,'그룹미지정') AS addrGrpNm | |
| 1117 | - FROM MJ_FAX_ADDR A | |
| 1118 | - LEFT OUTER JOIN | |
| 1119 | - MJ_FAX_ADDR_GRP B | |
| 1120 | - ON | |
| 1121 | - A.ADDR_GRP_ID = B.ADDR_GRP_ID | |
| 1122 | - WHERE A.MBER_ID = #mberId# | |
| 1123 | - AND (A.RECV_STATUS = 'Y' OR A.RECV_STATUS = 'S' OR A.RECV_STATUS IS NULL) | |
| 1124 | - AND A.DELETE_YN = 'N' | |
| 1125 | - <isNotEmpty property="type"> | |
| 1126 | - <isEqual property="type" compareValue="none"> | |
| 1127 | - AND A.ADDR_GRP_ID = '0' | |
| 1128 | - AND A.BOOKMARK = 'N' | |
| 1129 | - </isEqual> | |
| 1130 | - <isEqual property="type" compareValue="book"> | |
| 1131 | - AND A.BOOKMARK = 'Y' | |
| 1132 | - </isEqual> | |
| 1133 | - <isEqual property="type" compareValue="grp"> | |
| 1134 | - AND A.ADDR_GRP_ID = #searchAddrGrpId# | |
| 1135 | - </isEqual> | |
| 1136 | - </isNotEmpty> | |
| 1137 | - <isNotEmpty property="searchCondition"> | |
| 1138 | - <isEqual property="searchCondition" compareValue="0"> | |
| 1139 | - AND | |
| 1140 | - ( | |
| 1141 | - A.ADDR_NM LIKE CONCAT('%', #searchKeyword#, '%') | |
| 1142 | - OR A.ADDR_PHONE_NO LIKE CONCAT('%', #searchKeyword#, '%') | |
| 1143 | - OR B.ADDR_GRP_NM LIKE CONCAT('%', #searchKeyword#, '%') | |
| 1144 | - ) | |
| 1145 | - </isEqual> | |
| 1146 | - <isEqual property="searchCondition" compareValue="1"> | |
| 1147 | - AND B.ADDR_GRP_NM LIKE CONCAT('%', #searchKeyword#, '%') | |
| 1148 | - </isEqual> | |
| 1149 | - <isEqual property="searchCondition" compareValue="2"> | |
| 1150 | - AND A.ADDR_NM LIKE CONCAT('%', #searchKeyword#, '%') | |
| 1151 | - </isEqual> | |
| 1152 | - <isEqual property="searchCondition" compareValue="3"> | |
| 1153 | - AND A.ADDR_PHONE_NO LIKE CONCAT('%', #searchKeyword#, '%') | |
| 1154 | - </isEqual> | |
| 1155 | - </isNotEmpty> | |
| 1156 | - ORDER BY A.ADDR_NM ASC, A.LAST_UPDT_PNTTM DESC | |
| 1157 | - | |
| 1158 | - </select> | |
| 1159 | - | |
| 1160 | -</sqlMap> |
--- target/classes/egovframework/sqlmap/let/kakao/MjonKakaoATData_SQL_mysql.xml
| This diff is skipped because there are too many other diffs. |
--- target/classes/egovframework/sqlmap/let/kakao/MjonKakaoFTData_SQL_mysql.xml
| This diff is skipped because there are too many other diffs. |
--- target/classes/egovframework/sqlmap/let/letter/LetterMessages_SQL_Mysql.xml
| This diff is skipped because there are too many other diffs. |
--- target/classes/egovframework/sqlmap/let/mjo/addr/AddrGroup_SQL_Mysql.xml
| This diff is skipped because there are too many other diffs. |
--- target/classes/egovframework/sqlmap/let/mjo/addr/AddrTransHist_SQL_Mysql.xml
| This diff is skipped because there are too many other diffs. |
--- target/classes/egovframework/sqlmap/let/mjo/addr/Addr_SQL_Mysql.xml
| This diff is skipped because there are too many other diffs. |
--- target/classes/egovframework/sqlmap/let/mjo/addragency/AddrAgency_SQL_Mysql.xml
| This diff is skipped because there are too many other diffs. |
--- target/classes/egovframework/sqlmap/let/mjo/apikey/ApiCallInfoMng_SQL_Mysql.xml
| This diff is skipped because there are too many other diffs. |
--- target/classes/egovframework/sqlmap/let/mjo/apikey/ApiKeyMng_SQL_Mysql.xml
| This diff is skipped because there are too many other diffs. |
--- target/classes/egovframework/sqlmap/let/mjo/block/Block_SQL_Mysql.xml
| This diff is skipped because there are too many other diffs. |
--- target/classes/egovframework/sqlmap/let/mjo/conf/MjonConf_SQL_Mysql.xml
| This diff is skipped because there are too many other diffs. |
--- target/classes/egovframework/sqlmap/let/mjo/event/Event_SQL_Mysql.xml
| This diff is skipped because there are too many other diffs. |
--- target/classes/egovframework/sqlmap/let/mjo/kakao/KakaoSent_SQL_Mysql.xml
| This diff is skipped because there are too many other diffs. |
--- target/classes/egovframework/sqlmap/let/mjo/kakao/KakaoStatistics_SQL_Mysql.xml
| This diff is skipped because there are too many other diffs. |
--- target/classes/egovframework/sqlmap/let/mjo/kakao/Kakao_AT_SQL_Mysql.xml
| This diff is skipped because there are too many other diffs. |
--- target/classes/egovframework/sqlmap/let/mjo/kakao/Kakao_FT_SQL_Mysql.xml
| This diff is skipped because there are too many other diffs. |
--- target/classes/egovframework/sqlmap/let/mjo/kakao/Kakao_SQL_Mysql.xml
| This diff is skipped because there are too many other diffs. |
--- target/classes/egovframework/sqlmap/let/mjo/kakao/Kakao_profile_SQL_Mysql.xml
| This diff is skipped because there are too many other diffs. |
--- target/classes/egovframework/sqlmap/let/mjo/kakao/Kakao_sampleTemplate_SQL_Mysql.xml
| This diff is skipped because there are too many other diffs. |
--- target/classes/egovframework/sqlmap/let/mjo/kisa/Kisa_SQL_Mysql.xml
| This diff is skipped because there are too many other diffs. |
--- target/classes/egovframework/sqlmap/let/mjo/payva/VacsAhst_SQL_Mysql.xml
| This diff is skipped because there are too many other diffs. |
--- target/classes/egovframework/sqlmap/let/mjo/payva/VacsErrlog_SQL_Mysql.xml
| This diff is skipped because there are too many other diffs. |
--- target/classes/egovframework/sqlmap/let/mjo/payva/VacsTotl_SQL_Mysql.xml
| This diff is skipped because there are too many other diffs. |
--- target/classes/egovframework/sqlmap/let/mjo/payva/VacsVact_SQL_Mysql.xml
| This diff is skipped because there are too many other diffs. |
--- target/classes/egovframework/sqlmap/let/mjo/rejt/Reject_SQL_Mysql.xml
| This diff is skipped because there are too many other diffs. |
--- target/classes/egovframework/sqlmap/let/mjo/tax/Tax_SQL_Mysql.xml
| This diff is skipped because there are too many other diffs. |
--- target/classes/egovframework/sqlmap/let/msg/MjonMsgCampainData_SQL_mysql.xml
| This diff is skipped because there are too many other diffs. |
--- target/classes/egovframework/sqlmap/let/msg/MjonMsgCustom_SQL_mysql.xml
| This diff is skipped because there are too many other diffs. |
--- target/classes/egovframework/sqlmap/let/msg/MjonMsgData_SQL_mysql.xml
| This diff is skipped because there are too many other diffs. |
--- target/classes/egovframework/sqlmap/let/msg/MjonMsgRecvTest_SQL_mysql.xml
| This diff is skipped because there are too many other diffs. |
--- target/classes/egovframework/sqlmap/let/msg/MjonMsgResv_SQL_mysql.xml
| This diff is skipped because there are too many other diffs. |
--- target/classes/egovframework/sqlmap/let/msg/MjonMsgSentTest_SQL_mysql.xml
| This diff is skipped because there are too many other diffs. |
--- target/classes/egovframework/sqlmap/let/msg/MjonMsgSent_SQL_mysql.xml
| This diff is skipped because there are too many other diffs. |
--- target/classes/egovframework/sqlmap/let/orgChart/OrgChartManage_SQL_Mysql.xml
| This diff is skipped because there are too many other diffs. |
--- target/classes/egovframework/sqlmap/let/pay/MjonPayType_SQL_mysql.xml
| This diff is skipped because there are too many other diffs. |
--- target/classes/egovframework/sqlmap/let/pay/MjonPay_SQL_mysql.xml
| This diff is skipped because there are too many other diffs. |
--- target/classes/egovframework/sqlmap/let/pay/Refund_SQL_Mysql.xml
| This diff is skipped because there are too many other diffs. |
--- target/classes/egovframework/sqlmap/let/pst/rsh/Research_Action_SQL.xml
| This diff is skipped because there are too many other diffs. |
--- target/classes/egovframework/sqlmap/let/sec/gmt/EgovGroupManage_SQL_Mysql.xml
| This diff is skipped because there are too many other diffs. |
--- target/classes/egovframework/sqlmap/let/sec/ram/EgovAuthorManage_SQL_Mysql.xml
| This diff is skipped because there are too many other diffs. |
--- target/classes/egovframework/sqlmap/let/sec/ram/EgovAuthorRoleManage_SQL_Mysql.xml
| This diff is skipped because there are too many other diffs. |
--- target/classes/egovframework/sqlmap/let/sec/rgm/EgovAuthorGroup_SQL_Mysql.xml
| This diff is skipped because there are too many other diffs. |
--- target/classes/egovframework/sqlmap/let/sec/rmt/EgovRoleManage_SQL_Mysql.xml
| This diff is skipped because there are too many other diffs. |
--- target/classes/egovframework/sqlmap/let/spam/MjonSpamMsgData_SQL_mysql.xml
| This diff is skipped because there are too many other diffs. |
--- target/classes/egovframework/sqlmap/let/sts/cst/EgovConectStats_SQL_Altibase.xml
| This diff is skipped because there are too many other diffs. |
--- target/classes/egovframework/sqlmap/let/sts/cst/EgovConectStats_SQL_Cubrid.xml
| This diff is skipped because there are too many other diffs. |
--- target/classes/egovframework/sqlmap/let/sts/cst/EgovConectStats_SQL_Mysql.xml
| This diff is skipped because there are too many other diffs. |
--- target/classes/egovframework/sqlmap/let/sts/cst/EgovConectStats_SQL_Oracle.xml
| This diff is skipped because there are too many other diffs. |
--- target/classes/egovframework/sqlmap/let/sts/cst/EgovConectStats_SQL_Tibero.xml
| This diff is skipped because there are too many other diffs. |
--- target/classes/egovframework/sqlmap/let/sttst/MjonSttstData_SQL_mysql.xml
| This diff is skipped because there are too many other diffs. |
--- target/classes/egovframework/sqlmap/let/sym/ccm/cca/EgovCmmnCodeManage_SQL_Mysql.xml
| This diff is skipped because there are too many other diffs. |
--- target/classes/egovframework/sqlmap/let/sym/ccm/ccc/EgovCmmnClCodeManage_SQL_Mysql.xml
| This diff is skipped because there are too many other diffs. |
--- target/classes/egovframework/sqlmap/let/sym/ccm/cde/EgovCmmnDetailCodeManage_SQL_Mysql.xml
| This diff is skipped because there are too many other diffs. |
--- target/classes/egovframework/sqlmap/let/sym/ccm/zip/EgovZipManage_SQL_Mysql.xml
| This diff is skipped because there are too many other diffs. |
--- target/classes/egovframework/sqlmap/let/sym/log/clg/EgovLoginLog_SQL_Mysql.xml
| This diff is skipped because there are too many other diffs. |
--- target/classes/egovframework/sqlmap/let/sym/log/clg/EtcStat_SQL.xml
| This diff is skipped because there are too many other diffs. |
--- target/classes/egovframework/sqlmap/let/sym/log/lgm/EgovSysLog_SQL_Mysql.xml
| This diff is skipped because there are too many other diffs. |
--- target/classes/egovframework/sqlmap/let/sym/log/ulg/EgovUserLog_SQL_mysql.xml
| This diff is skipped because there are too many other diffs. |
--- target/classes/egovframework/sqlmap/let/sym/log/user/UserLoginLog_SQL_mysql.xml
| This diff is skipped because there are too many other diffs. |
--- target/classes/egovframework/sqlmap/let/sym/mnu/mcm/EgovMenuCreat_SQL_Mysql.xml
| This diff is skipped because there are too many other diffs. |
--- target/classes/egovframework/sqlmap/let/sym/mnu/mpm/EgovMainMenu_SQL_Mysql.xml
| This diff is skipped because there are too many other diffs. |
--- target/classes/egovframework/sqlmap/let/sym/mnu/mpm/EgovMenuManage_SQL_Mysql.xml
| This diff is skipped because there are too many other diffs. |
--- target/classes/egovframework/sqlmap/let/sym/prm/EgovProgrmManageDtl_SQL_Mysql.xml
| This diff is skipped because there are too many other diffs. |
--- target/classes/egovframework/sqlmap/let/sym/prm/EgovProgrmManage_SQL_Mysql.xml
| This diff is skipped because there are too many other diffs. |
--- target/classes/egovframework/sqlmap/let/sym/site/EgovSiteManage_SQL_Mysql.xml
| This diff is skipped because there are too many other diffs. |
--- target/classes/egovframework/sqlmap/let/sym/wordcloud/EgovWordCloudManage_SQL_Mysql.xml
| This diff is skipped because there are too many other diffs. |
--- target/classes/egovframework/sqlmap/let/symbol/MjonSymbol_SQL_mysql.xml
| This diff is skipped because there are too many other diffs. |
--- target/classes/egovframework/sqlmap/let/uat/uap/EgovLoginPolicy_SQL_Mysql.xml
| This diff is skipped because there are too many other diffs. |
--- target/classes/egovframework/sqlmap/let/uat/uia/EgovLoginUsr_SQL_Mysql.xml
| This diff is skipped because there are too many other diffs. |
--- target/classes/egovframework/sqlmap/let/uss/ion/cnf/HomePageConfigManage_SQL_Mysql.xml
| This diff is skipped because there are too many other diffs. |
--- target/classes/egovframework/sqlmap/let/uss/ion/cnt/CntManage_SQL_Mysql.xml
| This diff is skipped because there are too many other diffs. |
--- target/classes/egovframework/sqlmap/let/uss/ion/cyb/CyberAlertManage_SQL_Mysql.xml
| This diff is skipped because there are too many other diffs. |
--- target/classes/egovframework/sqlmap/let/uss/ion/fms/FmsFile_SQL_Mysql.xml
| This diff is skipped because there are too many other diffs. |
--- target/classes/egovframework/sqlmap/let/uss/ion/sat/SatManage_SQL_Mysql.xml
| This diff is skipped because there are too many other diffs. |
--- target/classes/egovframework/sqlmap/let/uss/ion/sign/SignManage_SQL_Mysql.xml
| This diff is skipped because there are too many other diffs. |
--- target/classes/egovframework/sqlmap/let/uss/ion/uas/EgovUserAbsnce_SQL_Mysql.xml
| This diff is skipped because there are too many other diffs. |
--- target/classes/egovframework/sqlmap/let/uss/itsm/SchdlrManage_SQL_Mysql.xml
| This diff is skipped because there are too many other diffs. |
--- target/classes/egovframework/sqlmap/let/uss/olp/qim/EgovQustnrItemManage_SQL_Mysql.xml
| This diff is skipped because there are too many other diffs. |
--- target/classes/egovframework/sqlmap/let/uss/olp/qmc/EgovQustnrManage_SQL_Mysql.xml
| This diff is skipped because there are too many other diffs. |
--- target/classes/egovframework/sqlmap/let/uss/olp/qqm/EgovQustnrQestnManage_SQL_Mysql.xml
| This diff is skipped because there are too many other diffs. |
--- target/classes/egovframework/sqlmap/let/uss/olp/qri/EgovQustnrRespondInfo_SQL_Mysql.xml
| This diff is skipped because there are too many other diffs. |
--- target/classes/egovframework/sqlmap/let/uss/olp/qrm/EgovQustnrRespondManage_SQL_Mysql.xml
| This diff is skipped because there are too many other diffs. |
--- target/classes/egovframework/sqlmap/let/uss/olp/qtm/EgovQustnrTmplatManage_SQL_Mysql.xml
| This diff is skipped because there are too many other diffs. |
--- target/classes/egovframework/sqlmap/let/uss/pwm/PopupManage_SQL_Mysql.xml
| This diff is skipped because there are too many other diffs. |
--- target/classes/egovframework/sqlmap/let/uss/umt/EgovMberCmpHst_SQL_Mysql.xml
| This diff is skipped because there are too many other diffs. |
--- target/classes/egovframework/sqlmap/let/uss/umt/EgovMberManage_SQL_Mysql.xml
| This diff is skipped because there are too many other diffs. |
--- target/classes/egovframework/sqlmap/let/uss/umt/EgovUserManage_SQL_Mysql.xml
| This diff is skipped because there are too many other diffs. |
--- target/classes/egovframework/sqlmap/let/uss/umt/MjonAdmProcHstry_SQL_Mysql.xml
| This diff is skipped because there are too many other diffs. |
--- target/classes/egovframework/validator/com/uss/ion/bnr/EgovBanner.xml
| This diff is skipped because there are too many other diffs. |
--- target/classes/egovframework/validator/let/cop/bbs/EgovBdMstrRegist.xml
| This diff is skipped because there are too many other diffs. |
--- target/classes/egovframework/validator/let/cop/bbs/EgovNoticeRegist.xml
| This diff is skipped because there are too many other diffs. |
--- target/classes/egovframework/validator/let/cop/cmt/EgovArticleCommentRegist.xml
| This diff is skipped because there are too many other diffs. |
--- target/classes/egovframework/validator/let/cop/com/EgovCopComManage.xml
| This diff is skipped because there are too many other diffs. |
--- target/classes/egovframework/validator/let/cop/resve/EgovResveRegist.xml
| This diff is skipped because there are too many other diffs. |
--- target/classes/egovframework/validator/let/cop/smt/sim/EgovIndvdlSchdulManage.xml
| This diff is skipped because there are too many other diffs. |
--- target/classes/egovframework/validator/let/sec/EgovSecurityManage.xml
| This diff is skipped because there are too many other diffs. |
--- target/classes/egovframework/validator/let/sym/ccm/cca/EgovCmmnCodeManage.xml
| This diff is skipped because there are too many other diffs. |
--- target/classes/egovframework/validator/let/sym/ccm/ccc/EgovCmmnClCodeManage.xml
| This diff is skipped because there are too many other diffs. |
--- target/classes/egovframework/validator/let/sym/ccm/cde/EgovCmmnDetailCodeManage.xml
| This diff is skipped because there are too many other diffs. |
--- target/classes/egovframework/validator/let/sym/ccm/zip/EgovZipManage.xml
| This diff is skipped because there are too many other diffs. |
--- target/classes/egovframework/validator/let/sym/mnu/mcm/EgovMenuCreat.xml
| This diff is skipped because there are too many other diffs. |
--- target/classes/egovframework/validator/let/sym/mnu/mcm/EgovMenuSiteMap.xml
| This diff is skipped because there are too many other diffs. |
--- target/classes/egovframework/validator/let/sym/mnu/mpm/EgovMenuManage.xml
| This diff is skipped because there are too many other diffs. |
--- target/classes/egovframework/validator/let/sym/prm/EgovProgrmManage.xml
| This diff is skipped because there are too many other diffs. |
--- target/classes/egovframework/validator/let/sym/prm/EgovProgrmManageDtl.xml
| This diff is skipped because there are too many other diffs. |
--- target/classes/egovframework/validator/let/uat/uia/EgovLoginPolicy.xml
| This diff is skipped because there are too many other diffs. |
--- target/classes/egovframework/validator/let/uss/ion/cnt/CntManage.xml
| This diff is skipped because there are too many other diffs. |
--- target/classes/egovframework/validator/let/uss/ion/cyb/CyberAlertView.xml
| This diff is skipped because there are too many other diffs. |
--- target/classes/egovframework/validator/let/uss/ion/fms/EgovFmsFile.xml
| This diff is skipped because there are too many other diffs. |
--- target/classes/egovframework/validator/let/uss/ion/pwm/PopupManage.xml
| This diff is skipped because there are too many other diffs. |
--- target/classes/egovframework/validator/let/uss/olh/hpc/EgovHpcmRegist.xml
| This diff is skipped because there are too many other diffs. |
--- target/classes/egovframework/validator/let/uss/olp/qim/EgovQustnrItemManage.xml
| This diff is skipped because there are too many other diffs. |
--- target/classes/egovframework/validator/let/uss/olp/qmc/EgovQustnrManage.xml
| This diff is skipped because there are too many other diffs. |
--- target/classes/egovframework/validator/let/uss/olp/qqm/EgovQustnrQestnManage.xml
| This diff is skipped because there are too many other diffs. |
--- target/classes/egovframework/validator/let/uss/olp/qri/EgovQustnrRespondInfo.xml
| This diff is skipped because there are too many other diffs. |
--- target/classes/egovframework/validator/let/uss/olp/qrm/EgovQustnrRespondManage.xml
| This diff is skipped because there are too many other diffs. |
--- target/classes/egovframework/validator/let/uss/olp/qtm/EgovQustnrTmplatManage.xml
| This diff is skipped because there are too many other diffs. |
--- target/classes/egovframework/validator/let/uss/umt/EgovPassword.xml
| This diff is skipped because there are too many other diffs. |
--- target/classes/egovframework/validator/let/uss/umt/EgovUserManage.xml
| This diff is skipped because there are too many other diffs. |
--- target/classes/egovframework/validator/let/web/addragency/UserAddrAgencyRegist.xml
| This diff is skipped because there are too many other diffs. |
--- target/classes/egovframework/validator/validator-rules-let.xml
| This diff is skipped because there are too many other diffs. |
--- target/classes/itn/com/api/web/ApiRestController.class
| Binary file is not shown |
--- target/classes/itn/com/cmm/AltibaseClobStringTypeHandler.class
| Binary file is not shown |
--- target/classes/itn/com/cmm/ComDefaultCodeVO.class
| Binary file is not shown |
--- target/classes/itn/com/cmm/ComDefaultVO.class
| Binary file is not shown |
--- target/classes/itn/com/cmm/EgovComCrossSiteHndlr.class
| Binary file is not shown |
--- target/classes/itn/com/cmm/EgovComExcepHndlr.class
| Binary file is not shown |
--- target/classes/itn/com/cmm/EgovComOthersExcepHndlr.class
| Binary file is not shown |
--- target/classes/itn/com/cmm/EgovComTraceHandler.class
| Binary file is not shown |
--- target/classes/itn/com/cmm/EgovMessageSource.class
| Binary file is not shown |
--- target/classes/itn/com/cmm/EgovMultiPartEmail.class
| Binary file is not shown |
--- target/classes/itn/com/cmm/EgovWebUtil.class
| Binary file is not shown |
--- target/classes/itn/com/cmm/ImagePaginationRenderer.class
| Binary file is not shown |
--- target/classes/itn/com/cmm/ImagePaginationRendererWeb.class
| Binary file is not shown |
--- target/classes/itn/com/cmm/JsonResult.class
| Binary file is not shown |
--- target/classes/itn/com/cmm/LoginVO.class
| Binary file is not shown |
--- target/classes/itn/com/cmm/ReadVO.class
| Binary file is not shown |
--- target/classes/itn/com/cmm/SessionVO.class
| Binary file is not shown |
--- target/classes/itn/com/cmm/UserVO.class
| Binary file is not shown |
--- target/classes/itn/com/cmm/aspect/LoggerAspect.class
| Binary file is not shown |
--- target/classes/itn/com/cmm/captcha/AudioCaptCha.class
| Binary file is not shown |
--- target/classes/itn/com/cmm/captcha/CaptCha.class
| Binary file is not shown |
--- target/classes/itn/com/cmm/captcha/CaptchaUtil.class
| Binary file is not shown |
--- target/classes/itn/com/cmm/captcha/SetKorVoiceProducer.class
| Binary file is not shown |
--- target/classes/itn/com/cmm/captcha/SetTextProducer.class
| Binary file is not shown |
--- target/classes/itn/com/cmm/filter/HTMLTagFilter.class
| Binary file is not shown |
--- target/classes/itn/com/cmm/filter/HTMLTagFilterRequestWrapper.class
| Binary file is not shown |
--- target/classes/itn/com/cmm/filter/XssFilter.class
| Binary file is not shown |
--- target/classes/itn/com/cmm/filter/XssFilterRequestWrapper.class
| Binary file is not shown |
--- target/classes/itn/com/cmm/interceptor/IPIgnoreInterceptorHandler.class
| Binary file is not shown |
--- target/classes/itn/com/cmm/interceptor/InterceptorHandler.class
| Binary file is not shown |
--- target/classes/itn/com/cmm/interceptor/ipCheck/HttpClientConfig.class
| Binary file is not shown |
--- target/classes/itn/com/cmm/interceptor/ipCheck/IPCheckInterceptor.class
| Binary file is not shown |
--- target/classes/itn/com/cmm/interceptor/ipCheck/WSOpenAPIService.class
| Binary file is not shown |
--- target/classes/itn/com/cmm/service/CmmnDetailCode.class
| Binary file is not shown |
--- target/classes/itn/com/cmm/service/EgovCmmUseService.class
| Binary file is not shown |
--- target/classes/itn/com/cmm/service/EgovFileMngService.class
| Binary file is not shown |
--- target/classes/itn/com/cmm/service/EgovFileMngUtil.class
| Binary file is not shown |
--- target/classes/itn/com/cmm/service/EgovProperties.class
| Binary file is not shown |
--- target/classes/itn/com/cmm/service/EgovUserDetailsService.class
| Binary file is not shown |
--- target/classes/itn/com/cmm/service/FileVO.class
| Binary file is not shown |
--- target/classes/itn/com/cmm/service/Globals.class
| Binary file is not shown |
--- target/classes/itn/com/cmm/service/ReadService.class
| Binary file is not shown |
--- target/classes/itn/com/cmm/service/impl/CmmUseDAO.class
| Binary file is not shown |
--- target/classes/itn/com/cmm/service/impl/EgovCmmUseServiceImpl.class
| Binary file is not shown |
--- target/classes/itn/com/cmm/service/impl/EgovComAbstractDAO.class
| Binary file is not shown |
--- target/classes/itn/com/cmm/service/impl/EgovFileMngServiceImpl.class
| Binary file is not shown |
--- target/classes/itn/com/cmm/service/impl/EgovTestUserDetailsServiceImpl.class
| Binary file is not shown |
--- target/classes/itn/com/cmm/service/impl/EgovUserDetailsSessionServiceImpl.class
| Binary file is not shown |
--- target/classes/itn/com/cmm/service/impl/FileManageDAO.class
| Binary file is not shown |
--- target/classes/itn/com/cmm/service/impl/ReadDAO.class
| Binary file is not shown |
--- target/classes/itn/com/cmm/service/impl/ReadServiceImpl.class
| Binary file is not shown |
--- target/classes/itn/com/cmm/taglibs/CodeTag.class
| Binary file is not shown |
--- target/classes/itn/com/cmm/taglibs/DoubleSubmitTag.class
| Binary file is not shown |
--- target/classes/itn/com/cmm/taglibs/HpFmtTag.class
| Binary file is not shown |
--- target/classes/itn/com/cmm/taglibs/RadioTag.class
| Binary file is not shown |
--- target/classes/itn/com/cmm/taglibs/SelectTag.class
| Binary file is not shown |
--- target/classes/itn/com/cmm/util/ContextUtil.class
| Binary file is not shown |
--- target/classes/itn/com/cmm/util/Criteria.class
| Binary file is not shown |
--- target/classes/itn/com/cmm/util/DateUtil.class
| Binary file is not shown |
--- target/classes/itn/com/cmm/util/EgovBasicLogger.class
| Binary file is not shown |
--- target/classes/itn/com/cmm/util/EgovDoubleSubmitHelper.class
| Binary file is not shown |
--- target/classes/itn/com/cmm/util/EgovResourceCloseHelper.class
| Binary file is not shown |
--- target/classes/itn/com/cmm/util/ExcelDownloadUtil.class
| Binary file is not shown |
--- target/classes/itn/com/cmm/util/ExcelUploadUtil.class
| Binary file is not shown |
--- target/classes/itn/com/cmm/util/FaxUtil.class
| Binary file is not shown |
--- target/classes/itn/com/cmm/util/FileUtil.class
| Binary file is not shown |
--- target/classes/itn/com/cmm/util/IpUtil.class
| Binary file is not shown |
--- target/classes/itn/com/cmm/util/MJUtil.class
| Binary file is not shown |
--- target/classes/itn/com/cmm/util/Order.class
| Binary file is not shown |
--- target/classes/itn/com/cmm/util/OsProcessCheckUtil.class
| Binary file is not shown |
--- target/classes/itn/com/cmm/util/PdfUtil.class
| Binary file is not shown |
--- target/classes/itn/com/cmm/util/RedirectUrlMaker.class
| Binary file is not shown |
--- target/classes/itn/com/cmm/util/StringUtil.class
| Binary file is not shown |
--- target/classes/itn/com/cmm/util/StringUtil2.class
| Binary file is not shown |
--- target/classes/itn/com/cmm/util/TokenUtil.class
| Binary file is not shown |
--- target/classes/itn/com/cmm/util/WebUtil.class
| Binary file is not shown |
--- target/classes/itn/com/cmm/util/XssFilterUtil.class
| Binary file is not shown |
--- target/classes/itn/com/cmm/web/EgovBindingInitializer.class
| Binary file is not shown |
--- target/classes/itn/com/cmm/web/EgovComUtlController.class
| Binary file is not shown |
--- target/classes/itn/com/cmm/web/EgovFileDownloadController.class
| Binary file is not shown |
--- target/classes/itn/com/cmm/web/EgovFileMngController.class
| Binary file is not shown |
--- target/classes/itn/com/cmm/web/EgovImageProcessController.class
| Binary file is not shown |
--- target/classes/itn/com/cmm/web/EgovMultipartResolver.class
| Binary file is not shown |
--- target/classes/itn/com/sym/log/ulg/service/EgovUserLogScheduling.class
| Binary file is not shown |
--- target/classes/itn/com/sym/log/ulg/service/EgovUserLogService.class
| Binary file is not shown |
--- target/classes/itn/com/sym/log/ulg/service/UserLog.class
| Binary file is not shown |
--- target/classes/itn/com/sym/log/ulg/service/impl/EgovUserLogServiceImpl.class
| Binary file is not shown |
--- target/classes/itn/com/sym/log/ulg/service/impl/UserLogDAO.class
| Binary file is not shown |
--- target/classes/itn/com/sym/log/ulg/web/EgovUserLogController.class
| Binary file is not shown |
--- target/classes/itn/com/usr/search/web/SearchTotalController.class
| Binary file is not shown |
--- target/classes/itn/com/uss/ion/bnr/service/Banner.class
| Binary file is not shown |
--- target/classes/itn/com/uss/ion/bnr/service/BannerVO.class
| Binary file is not shown |
--- target/classes/itn/com/uss/ion/bnr/service/EgovBannerService.class
| Binary file is not shown |
--- target/classes/itn/com/uss/ion/bnr/service/impl/BannerDAO.class
| Binary file is not shown |
--- target/classes/itn/com/uss/ion/bnr/service/impl/EgovBannerServiceImpl.class
| Binary file is not shown |
--- target/classes/itn/com/uss/ion/bnr/web/EgovBannerController.class
| Binary file is not shown |
--- target/classes/itn/com/uss/ion/cnf/service/CaptchaMngDAO.class
| Binary file is not shown |
--- target/classes/itn/com/uss/ion/cnf/service/CaptchaMngService.class
| Binary file is not shown |
--- target/classes/itn/com/uss/ion/cnf/service/CaptchaMngVO.class
| Binary file is not shown |
--- target/classes/itn/com/uss/ion/cnf/service/ImgExtMngService.class
| Binary file is not shown |
--- target/classes/itn/com/uss/ion/cnf/service/ImgExtMngVO.class
| Binary file is not shown |
--- target/classes/itn/com/uss/ion/cnf/service/MetaTagManageDAO.class
| Binary file is not shown |
--- target/classes/itn/com/uss/ion/cnf/service/MetaTagManageService.class
| Binary file is not shown |
--- target/classes/itn/com/uss/ion/cnf/service/MetaTagManageVO.class
| Binary file is not shown |
--- target/classes/itn/com/uss/ion/cnf/service/ProhibitMngDAO.class
| Binary file is not shown |
--- target/classes/itn/com/uss/ion/cnf/service/ProhibitMngService.class
| Binary file is not shown |
--- target/classes/itn/com/uss/ion/cnf/service/ProhibitVO.class
| Binary file is not shown |
--- target/classes/itn/com/uss/ion/cnf/service/ScriptMngDAO.class
| Binary file is not shown |
--- target/classes/itn/com/uss/ion/cnf/service/ScriptMngService.class
| Binary file is not shown |
--- target/classes/itn/com/uss/ion/cnf/service/ScriptMngVO.class
| Binary file is not shown |
--- target/classes/itn/com/uss/ion/cnf/service/SpamKeywordMngDAO.class
| Binary file is not shown |
--- target/classes/itn/com/uss/ion/cnf/service/SpamKeywordMngService.class
| Binary file is not shown |
--- target/classes/itn/com/uss/ion/cnf/service/SpamKeywordVO.class
| Binary file is not shown |
--- target/classes/itn/com/uss/ion/cnf/service/WordFilterDAO.class
| Binary file is not shown |
--- target/classes/itn/com/uss/ion/cnf/service/WordFilterService.class
| Binary file is not shown |
--- target/classes/itn/com/uss/ion/cnf/service/WordFilterVO.class
| Binary file is not shown |
--- target/classes/itn/com/uss/ion/cnf/service/impl/CaptchaMngServiceImpl.class
| Binary file is not shown |
--- target/classes/itn/com/uss/ion/cnf/service/impl/ImgExtMngServiceImpl.class
| Binary file is not shown |
--- target/classes/itn/com/uss/ion/cnf/service/impl/MetaTagManageServiceImpl.class
| Binary file is not shown |
--- target/classes/itn/com/uss/ion/cnf/service/impl/ProhibitMngServiceImpl.class
| Binary file is not shown |
--- target/classes/itn/com/uss/ion/cnf/service/impl/ScriptMngServiceImpl.class
| Binary file is not shown |
--- target/classes/itn/com/uss/ion/cnf/service/impl/SpamKeywordMngServiceImpl.class
| Binary file is not shown |
--- target/classes/itn/com/uss/ion/cnf/service/impl/WordFilterServiceImpl.class
| Binary file is not shown |
--- target/classes/itn/com/uss/ion/cnf/web/HomePageConfigController.class
| Binary file is not shown |
--- target/classes/itn/com/uss/ion/cyb/service/CyberAlertManageDAO.class
| Binary file is not shown |
--- target/classes/itn/com/uss/ion/cyb/service/CyberAlertManageService.class
| Binary file is not shown |
--- target/classes/itn/com/uss/ion/cyb/service/CyberAlertManageVO.class
| Binary file is not shown |
--- target/classes/itn/com/uss/ion/cyb/service/impl/CyberAlertManageServiceImpl.class
| Binary file is not shown |
--- target/classes/itn/com/uss/ion/cyb/web/CyberAlertManageController.class
| Binary file is not shown |
--- target/classes/itn/com/uss/ion/fms/service/FmsFileService.class
| Binary file is not shown |
--- target/classes/itn/com/uss/ion/fms/service/FmsFileVO.class
| Binary file is not shown |
--- target/classes/itn/com/uss/ion/fms/service/impl/FmsFileDAO.class
| Binary file is not shown |
--- target/classes/itn/com/uss/ion/fms/service/impl/FmsFileServiceImpl.class
| Binary file is not shown |
--- target/classes/itn/com/uss/ion/fms/web/FmsFileController.class
| Binary file is not shown |
--- target/classes/itn/com/uss/ion/pub/service/EgovPublishService.class
| Binary file is not shown |
--- target/classes/itn/com/uss/ion/pub/service/PublishVO.class
| Binary file is not shown |
--- target/classes/itn/com/uss/ion/pub/service/impl/EgovPublishServiceImpl.class
| Binary file is not shown |
--- target/classes/itn/com/uss/ion/pub/service/impl/PublishDAO.class
| Binary file is not shown |
--- target/classes/itn/com/uss/ion/pub/web/EgovPubController.class
| Binary file is not shown |
--- target/classes/itn/com/uss/ion/pwm/service/EgovPopupManageService.class
| Binary file is not shown |
--- target/classes/itn/com/uss/ion/pwm/service/MainzoneVO.class
| Binary file is not shown |
--- target/classes/itn/com/uss/ion/pwm/service/PopupManage.class
| Binary file is not shown |
--- target/classes/itn/com/uss/ion/pwm/service/PopupManageVO.class
| Binary file is not shown |
--- target/classes/itn/com/uss/ion/pwm/service/PopupzoneVO.class
| Binary file is not shown |
--- target/classes/itn/com/uss/ion/pwm/service/SocialVO.class
| Binary file is not shown |
--- target/classes/itn/com/uss/ion/pwm/service/SortVO.class
| Binary file is not shown |
--- target/classes/itn/com/uss/ion/pwm/service/impl/EgovPopupManageServiceImpl.class
| Binary file is not shown |
--- target/classes/itn/com/uss/ion/pwm/service/impl/PopupManageDAO.class
| Binary file is not shown |
--- target/classes/itn/com/uss/ion/pwm/service/impl/PopupzoneManageDAO.class
| Binary file is not shown |
--- target/classes/itn/com/uss/ion/pwm/web/EgovPopupManageController.class
| Binary file is not shown |
--- target/classes/itn/com/uss/olh/hpc/service/EgovHpcmService.class
| Binary file is not shown |
--- target/classes/itn/com/uss/olh/hpc/service/HackIpService.class
| Binary file is not shown |
--- target/classes/itn/com/uss/olh/hpc/service/HackIpVO.class
| Binary file is not shown |
--- target/classes/itn/com/uss/olh/hpc/service/HpcmDefaultVO.class
| Binary file is not shown |
--- target/classes/itn/com/uss/olh/hpc/service/HpcmVO.class
| Binary file is not shown |
--- target/classes/itn/com/uss/olh/hpc/service/impl/EgovHpcmDAO.class
| Binary file is not shown |
--- target/classes/itn/com/uss/olh/hpc/service/impl/EgovHpcmServiceImpl.class
| Binary file is not shown |
--- target/classes/itn/com/uss/olh/hpc/service/impl/HackIpDAO.class
| Binary file is not shown |
--- target/classes/itn/com/uss/olh/hpc/service/impl/HackIpServiceImpl.class
| Binary file is not shown |
--- target/classes/itn/com/uss/olh/hpc/web/EgovHpcmController.class
| Binary file is not shown |
--- target/classes/itn/com/utl/fcc/service/EgovDateFormat.class
| Binary file is not shown |
--- target/classes/itn/com/utl/fcc/service/EgovDateUtil.class
| Binary file is not shown |
--- target/classes/itn/com/utl/fcc/service/EgovFileUploadUtil.class
| Binary file is not shown |
--- target/classes/itn/com/utl/fcc/service/EgovFormBasedFileUtil.class
| Binary file is not shown |
--- target/classes/itn/com/utl/fcc/service/EgovFormBasedFileVo.class
| Binary file is not shown |
--- target/classes/itn/com/utl/fcc/service/EgovFormBasedUUID.class
| Binary file is not shown |
--- target/classes/itn/com/utl/fcc/service/EgovFormatCheckUtil.class
| Binary file is not shown |
--- target/classes/itn/com/utl/fcc/service/EgovNumberCheckUtil.class
| Binary file is not shown |
--- target/classes/itn/com/utl/fcc/service/EgovNumberFormat.class
| Binary file is not shown |
--- target/classes/itn/com/utl/fcc/service/EgovNumberUtil.class
| Binary file is not shown |
--- target/classes/itn/com/utl/fcc/service/EgovStringUtil.class
| Binary file is not shown |
--- target/classes/itn/com/utl/wed/filter/CkFilter.class
| Binary file is not shown |
--- target/classes/itn/com/utl/wed/filter/CkImageSaver.class
| Binary file is not shown |
--- target/classes/itn/com/utl/wed/filter/DefaultFileSaveManager.class
| Binary file is not shown |
--- target/classes/itn/com/utl/wed/filter/DirectoryPathManager$DIR_DATE_TYPE.class
| Binary file is not shown |
--- target/classes/itn/com/utl/wed/filter/DirectoryPathManager.class
| Binary file is not shown |
--- target/classes/itn/com/utl/wed/filter/FileSaveManager.class
| Binary file is not shown |
--- target/classes/itn/com/utl/wed/web/EgovWebEditorImageController.class
| Binary file is not shown |
--- target/classes/itn/let/cop/bbs/service/Board.class
| Binary file is not shown |
--- target/classes/itn/let/cop/bbs/service/BoardChgHst.class
| Binary file is not shown |
--- target/classes/itn/let/cop/bbs/service/BoardMaster.class
| Binary file is not shown |
--- target/classes/itn/let/cop/bbs/service/BoardMasterVO.class
| Binary file is not shown |
--- target/classes/itn/let/cop/bbs/service/BoardVO.class
| Binary file is not shown |
--- target/classes/itn/let/cop/bbs/service/EgovBBSAttributeManageService.class
| Binary file is not shown |
--- target/classes/itn/let/cop/bbs/service/EgovBBSChgHstAspect.class
| Binary file is not shown |
--- target/classes/itn/let/cop/bbs/service/EgovBBSLoneMasterService.class
| Binary file is not shown |
--- target/classes/itn/let/cop/bbs/service/EgovBBSManageService.class
| Binary file is not shown |
--- target/classes/itn/let/cop/bbs/service/SearchTotalVO.class
| Binary file is not shown |
--- target/classes/itn/let/cop/bbs/service/impl/BBSAddedOptionsDAO.class
| Binary file is not shown |
--- target/classes/itn/let/cop/bbs/service/impl/BBSAttributeManageDAO.class
| Binary file is not shown |
--- target/classes/itn/let/cop/bbs/service/impl/BBSLoneMasterDAO.class
| Binary file is not shown |
--- target/classes/itn/let/cop/bbs/service/impl/BBSManageDAO.class
| Binary file is not shown |
--- target/classes/itn/let/cop/bbs/service/impl/EgovBBSAttributeManageServiceImpl.class
| Binary file is not shown |
--- target/classes/itn/let/cop/bbs/service/impl/EgovBBSLoneMasterServiceImpl.class
| Binary file is not shown |
--- target/classes/itn/let/cop/bbs/service/impl/EgovBBSManageServiceImpl.class
| Binary file is not shown |
--- target/classes/itn/let/cop/bbs/web/EgovBBSAttributeManageController.class
| Binary file is not shown |
--- target/classes/itn/let/cop/bbs/web/EgovBBSLoneMasterController.class
| Binary file is not shown |
--- target/classes/itn/let/cop/bbs/web/EgovBBSManageController.class
| Binary file is not shown |
--- target/classes/itn/let/cop/cmt/service/Comment.class
| Binary file is not shown |
--- target/classes/itn/let/cop/cmt/service/CommentVO.class
| Binary file is not shown |
--- target/classes/itn/let/cop/cmt/service/EgovArticleCommentService.class
| Binary file is not shown |
--- target/classes/itn/let/cop/cmt/service/impl/EgovArticleCommentDAO.class
| Binary file is not shown |
--- target/classes/itn/let/cop/cmt/service/impl/EgovArticleCommentServiceImpl.class
| Binary file is not shown |
--- target/classes/itn/let/cop/cmt/web/EgovArticleCommentController.class
| Binary file is not shown |
--- target/classes/itn/let/cop/com/service/BoardUseInf.class
| Binary file is not shown |
--- target/classes/itn/let/cop/com/service/BoardUseInfVO.class
| Binary file is not shown |
--- target/classes/itn/let/cop/com/service/EgovBBSUseInfoManageService.class
| Binary file is not shown |
--- target/classes/itn/let/cop/com/service/EgovTemplateManageService.class
| Binary file is not shown |
--- target/classes/itn/let/cop/com/service/EgovUserInfManageService.class
| Binary file is not shown |
--- target/classes/itn/let/cop/com/service/TemplateInf.class
| Binary file is not shown |
--- target/classes/itn/let/cop/com/service/TemplateInfVO.class
| Binary file is not shown |
--- target/classes/itn/let/cop/com/service/UserInfVO.class
| Binary file is not shown |
--- target/classes/itn/let/cop/com/service/impl/BBSUseInfoManageDAO.class
| Binary file is not shown |
--- target/classes/itn/let/cop/com/service/impl/EgovBBSUseInfoManageServiceImpl.class
| Binary file is not shown |
--- target/classes/itn/let/cop/com/service/impl/EgovTemplateManageServiceImpl.class
| Binary file is not shown |
--- target/classes/itn/let/cop/com/service/impl/EgovUserInfManageDAO.class
| Binary file is not shown |
--- target/classes/itn/let/cop/com/service/impl/EgovUserInfManageServiceImpl.class
| Binary file is not shown |
--- target/classes/itn/let/cop/com/service/impl/TemplateManageDAO.class
| Binary file is not shown |
--- target/classes/itn/let/cop/com/web/EgovBBSUseInfoManageController.class
| Binary file is not shown |
--- target/classes/itn/let/cop/com/web/EgovTemplateManageController.class
| Binary file is not shown |
--- target/classes/itn/let/cop/org/service/EgovOrgChartManageService.class
| Binary file is not shown |
--- target/classes/itn/let/cop/org/service/EmpInfVO.class
| Binary file is not shown |
--- target/classes/itn/let/cop/org/service/PartInfVO.class
| Binary file is not shown |
--- target/classes/itn/let/cop/org/service/impl/EgovOrgChartManageServiceImpl.class
| Binary file is not shown |
--- target/classes/itn/let/cop/org/service/impl/OrgChartManageDAO.class
| Binary file is not shown |
--- target/classes/itn/let/cop/org/web/EgovOrgChartManageController.class
| Binary file is not shown |
--- target/classes/itn/let/cop/resve/service/Resve.class
| Binary file is not shown |
--- target/classes/itn/let/cop/resve/service/ResveManageService.class
| Binary file is not shown |
--- target/classes/itn/let/cop/resve/service/ResveVO.class
| Binary file is not shown |
--- target/classes/itn/let/cop/resve/service/impl/ResveManageDAO.class
| Binary file is not shown |
--- target/classes/itn/let/cop/resve/service/impl/ResveManageServiceImpl.class
| Binary file is not shown |
--- target/classes/itn/let/cop/resve/web/ResveManageController.class
| Binary file is not shown |
--- target/classes/itn/let/cop/smt/sim/service/EgovIndvdlSchdulManageService.class
| Binary file is not shown |
--- target/classes/itn/let/cop/smt/sim/service/IndvdlSchdulManageVO.class
| Binary file is not shown |
--- target/classes/itn/let/cop/smt/sim/service/impl/EgovIndvdlSchdulManageServiceImpl.class
| Binary file is not shown |
--- target/classes/itn/let/cop/smt/sim/service/impl/IndvdlSchdulManageDao.class
| Binary file is not shown |
--- target/classes/itn/let/cop/smt/sim/web/EgovIndvdlSchdulManageController.class
| Binary file is not shown |
--- target/classes/itn/let/crypto/web/EgovCryptoController.class
| Binary file is not shown |
--- target/classes/itn/let/fax/addr/service/FaxAddrGroupService.class
| Binary file is not shown |
--- target/classes/itn/let/fax/addr/service/FaxAddrGroupVO.class
| Binary file is not shown |
--- target/classes/itn/let/fax/addr/service/FaxAddrService.class
| Binary file is not shown |
--- target/classes/itn/let/fax/addr/service/FaxAddrTransHistService.class
| Binary file is not shown |
--- target/classes/itn/let/fax/addr/service/FaxAddrTransHistVO.class
| Binary file is not shown |
--- target/classes/itn/let/fax/addr/service/FaxAddrVO.class
| Binary file is not shown |
--- target/classes/itn/let/fax/addr/service/impl/FaxAddrDAO.class
| Binary file is not shown |
--- target/classes/itn/let/fax/addr/service/impl/FaxAddrGroupDAO.class
| Binary file is not shown |
--- target/classes/itn/let/fax/addr/service/impl/FaxAddrGroupServiceImpl.class
| Binary file is not shown |
--- target/classes/itn/let/fax/addr/service/impl/FaxAddrServiceImpl.class
| Binary file is not shown |
--- target/classes/itn/let/fax/addr/service/impl/FaxAddrTransHistDAO.class
| Binary file is not shown |
--- target/classes/itn/let/fax/addr/service/impl/FaxAddrTransHistServiceImpl.class
| Binary file is not shown |
--- target/classes/itn/let/fax/addr/web/FaxAddrController.class
| Binary file is not shown |
--- target/classes/itn/let/fax/addr/web/FaxAddrGroupController.class
| Binary file is not shown |
--- target/classes/itn/let/fax/addr/web/FaxAddrTransHistController.class
| Binary file is not shown |
--- target/classes/itn/let/fax/admin/service/FaxAdmService.class
| Binary file is not shown |
--- target/classes/itn/let/fax/admin/service/FaxStatVO.class
| Binary file is not shown |
--- target/classes/itn/let/fax/admin/service/impl/FaxAdmServiceImpl.class
| Binary file is not shown |
--- target/classes/itn/let/fax/admin/web/FaxAdmController.class
| Binary file is not shown |
--- target/classes/itn/let/fax/user/service/FaxConvertMngVO.class
| Binary file is not shown |
--- target/classes/itn/let/fax/user/service/FaxConvertVO.class
| Binary file is not shown |
--- target/classes/itn/let/fax/user/service/FaxGroupDataVO$Builder.class
| Binary file is not shown |
--- target/classes/itn/let/fax/user/service/FaxGroupDataVO.class
| Binary file is not shown |
--- target/classes/itn/let/fax/user/service/FaxReceiverVO.class
| Binary file is not shown |
--- target/classes/itn/let/fax/user/service/FaxService.class
| Binary file is not shown |
--- target/classes/itn/let/fax/user/service/FaxTranVO.class
| Binary file is not shown |
--- target/classes/itn/let/fax/user/service/impl/FaxDAO.class
| Binary file is not shown |
--- target/classes/itn/let/fax/user/service/impl/FaxServiceImpl.class
| Binary file is not shown |
--- target/classes/itn/let/fax/user/web/FaxController.class
| Binary file is not shown |
--- target/classes/itn/let/fax/user/web/FaxRestController.class
| Binary file is not shown |
--- target/classes/itn/let/hangulparser/HangulParser.class
| Binary file is not shown |
--- target/classes/itn/let/kakao/admin/kakaoAt/service/ChannelIDVO.class
| Binary file is not shown |
--- target/classes/itn/let/kakao/admin/kakaoAt/service/MjonKakaoATSentVO.class
| Binary file is not shown |
--- target/classes/itn/let/kakao/admin/kakaoAt/service/MjonKakaoATService.class
| Binary file is not shown |
--- target/classes/itn/let/kakao/admin/kakaoAt/service/MjonKakaoATVO.class
| Binary file is not shown |
--- target/classes/itn/let/kakao/admin/kakaoAt/service/MjonKakaoAtStatVO.class
| Binary file is not shown |
--- target/classes/itn/let/kakao/admin/kakaoAt/service/MjonKakaoSampleTemplateService.class
| Binary file is not shown |
--- target/classes/itn/let/kakao/admin/kakaoAt/service/MjonKakaoSampleTemplateVO.class
| Binary file is not shown |
--- target/classes/itn/let/kakao/admin/kakaoAt/service/MjonKakaoTemplateButtonVO.class
| Binary file is not shown |
--- target/classes/itn/let/kakao/admin/kakaoAt/service/MjonKakaoTemplateItemVO.class
| Binary file is not shown |
--- target/classes/itn/let/kakao/admin/kakaoAt/service/MjonKakaoTemplateQuickVO.class
| Binary file is not shown |
--- target/classes/itn/let/kakao/admin/kakaoAt/service/impl/MjonKakaoATDAO.class
| Binary file is not shown |
--- target/classes/itn/let/kakao/admin/kakaoAt/service/impl/MjonKakaoATServiceImpl.class
| Binary file is not shown |
--- target/classes/itn/let/kakao/admin/kakaoAt/service/impl/MjonKakaoSampleTemplateDAO.class
| Binary file is not shown |
--- target/classes/itn/let/kakao/admin/kakaoAt/service/impl/MjonKakaoSampleTemplateServiceImpl.class
| Binary file is not shown |
--- target/classes/itn/let/kakao/admin/kakaoAt/web/MjonKakaoATController.class
| Binary file is not shown |
--- target/classes/itn/let/kakao/admin/kakaoAt/web/MjonKakaoSendResultController.class
| Binary file is not shown |
--- target/classes/itn/let/kakao/admin/kakaoAt/web/MjonKakaoTemplateSampleController.class
| Binary file is not shown |
--- target/classes/itn/let/kakao/admin/kakaoFt/service/MjonKakaoFTService.class
| Binary file is not shown |
--- target/classes/itn/let/kakao/admin/kakaoFt/service/MjonKakaoFTVO.class
| Binary file is not shown |
--- target/classes/itn/let/kakao/admin/kakaoFt/service/impl/MjonKakaoFTDAO.class
| Binary file is not shown |
--- target/classes/itn/let/kakao/admin/kakaoFt/service/impl/MjonKakaoFTServiceImpl.class
| Binary file is not shown |
--- target/classes/itn/let/kakao/admin/kakaoFt/web/MjonKakaoFTController.class
| Binary file is not shown |
--- target/classes/itn/let/kakao/admin/statistics/service/KakaoStatisticsService.class
| Binary file is not shown |
--- target/classes/itn/let/kakao/admin/statistics/service/impl/KakaoStatisticsDAO.class
| Binary file is not shown |
--- target/classes/itn/let/kakao/admin/statistics/service/impl/KakaoStatisticsServiceImpl.class
| Binary file is not shown |
--- target/classes/itn/let/kakao/admin/statistics/web/KakaoStatisticsController.class
| Binary file is not shown |
--- target/classes/itn/let/kakao/kakaoComm/KakaoButtonVO.class
| Binary file is not shown |
--- target/classes/itn/let/kakao/kakaoComm/KakaoCommentVO.class
| Binary file is not shown |
--- target/classes/itn/let/kakao/kakaoComm/KakaoItemVO.class
| Binary file is not shown |
--- target/classes/itn/let/kakao/kakaoComm/KakaoReturnVO.class
| Binary file is not shown |
--- target/classes/itn/let/kakao/kakaoComm/KakaoSendUtil.class
| Binary file is not shown |
--- target/classes/itn/let/kakao/kakaoComm/KakaoServiceCommon.class
| Binary file is not shown |
--- target/classes/itn/let/kakao/kakaoComm/KakaoVO.class
| Binary file is not shown |
--- target/classes/itn/let/kakao/kakaoComm/kakaoApi/KakaoApiImageUpload.class
| Binary file is not shown |
--- target/classes/itn/let/kakao/kakaoComm/kakaoApi/KakaoApiJsonSave.class
| Binary file is not shown |
--- target/classes/itn/let/kakao/kakaoComm/kakaoApi/KakaoApiProfile.class
| Binary file is not shown |
--- target/classes/itn/let/kakao/kakaoComm/kakaoApi/KakaoApiProfileCategory.class
| Binary file is not shown |
--- target/classes/itn/let/kakao/kakaoComm/kakaoApi/KakaoApiTemplate.class
| Binary file is not shown |
--- target/classes/itn/let/kakao/kakaoComm/kakaoApi/KakaoApiTemplateCategory.class
| Binary file is not shown |
--- target/classes/itn/let/kakao/kakaoComm/kakaoApi/KakaoFTJsonSave.class
| Binary file is not shown |
--- target/classes/itn/let/kakao/kakaoComm/kakaoApi/service/KakaoApiService.class
| Binary file is not shown |
--- target/classes/itn/let/kakao/kakaoComm/kakaoApi/service/impl/KakaoApiDAO.class
| Binary file is not shown |
--- target/classes/itn/let/kakao/kakaoComm/kakaoApi/service/impl/KakaoApiServiceImpl.class
| Binary file is not shown |
--- target/classes/itn/let/kakao/user/kakaoAt/service/KakaoAlimTalkService.class
| Binary file is not shown |
--- target/classes/itn/let/kakao/user/kakaoAt/service/impl/KakaoAlimTalkDAO.class
| Binary file is not shown |
--- target/classes/itn/let/kakao/user/kakaoAt/service/impl/KakaoAlimTalkServiceImpl.class
| Binary file is not shown |
--- target/classes/itn/let/kakao/user/kakaoAt/web/KakaoAlimTalkController.class
| Binary file is not shown |
--- target/classes/itn/let/kakao/user/kakaoAt/web/KakaoAlimTalkSendController.class
| Binary file is not shown |
--- target/classes/itn/let/kakao/user/kakaoAt/web/KakaoAlimTalkTemplateController.class
| Binary file is not shown |
--- target/classes/itn/let/kakao/user/kakaoFt/service/KakaoFriendsTalkTemplateService.class
| Binary file is not shown |
--- target/classes/itn/let/kakao/user/kakaoFt/service/impl/KakaoFriendsTalkTemplateDAO.class
| Binary file is not shown |
--- target/classes/itn/let/kakao/user/kakaoFt/service/impl/KakaoFriendsTalkTemplateServiceImpl.class
| Binary file is not shown |
--- target/classes/itn/let/kakao/user/kakaoFt/web/KakaoFriendsTalkSendController.class
| Binary file is not shown |
--- target/classes/itn/let/kakao/user/kakaoFt/web/KakaoFriendsTalkTemplateController.class
| Binary file is not shown |
--- target/classes/itn/let/kakao/user/sent/service/KakaoSendVO.class
| Binary file is not shown |
--- target/classes/itn/let/kakao/user/sent/service/KakaoSentService.class
| Binary file is not shown |
--- target/classes/itn/let/kakao/user/sent/service/KakaoSentVO.class
| Binary file is not shown |
--- target/classes/itn/let/kakao/user/sent/service/impl/KakaoSentDAO.class
| Binary file is not shown |
--- target/classes/itn/let/kakao/user/sent/service/impl/KakaoSentServiceImpl.class
| Binary file is not shown |
--- target/classes/itn/let/kakao/user/sent/web/KakaoSentController.class
| Binary file is not shown |
--- target/classes/itn/let/kakao/user/stepInfo/web/KakaoStepInfoController.class
| Binary file is not shown |
--- target/classes/itn/let/komoran/KomoranUtils.class
| Binary file is not shown |
--- target/classes/itn/let/lett/service/CateConfVO.class
| Binary file is not shown |
--- target/classes/itn/let/lett/service/HashConfVO.class
| Binary file is not shown |
--- target/classes/itn/let/lett/service/LetterService.class
| Binary file is not shown |
--- target/classes/itn/let/lett/service/LetterVO.class
| Binary file is not shown |
--- target/classes/itn/let/lett/service/impl/LetterDAO.class
| Binary file is not shown |
--- target/classes/itn/let/lett/service/impl/LetterServiceImpl.class
| Binary file is not shown |
--- target/classes/itn/let/lett/web/LetterController.class
| Binary file is not shown |
--- target/classes/itn/let/mail/service/EmailItnVO.class
| Binary file is not shown |
--- target/classes/itn/let/mail/service/MailTemplateService.class
| Binary file is not shown |
--- target/classes/itn/let/mail/service/StatusResponse.class
| Binary file is not shown |
--- target/classes/itn/let/mail/service/impl/MailTemplateServiceImpl.class
| Binary file is not shown |
--- target/classes/itn/let/mail/web/MailTemplateController.class
| Binary file is not shown |
--- target/classes/itn/let/mail/web/MailTemplateRestController.class
| Binary file is not shown |
--- target/classes/itn/let/main/service/EgovMainContentsVO.class
| Binary file is not shown |
--- target/classes/itn/let/main/web/EgovMainController.class
| Binary file is not shown |
--- target/classes/itn/let/main/web/FacebookAPI.class
| Binary file is not shown |
--- target/classes/itn/let/mjo/addr/service/AddrGroupService.class
| Binary file is not shown |
--- target/classes/itn/let/mjo/addr/service/AddrGroupVO.class
| Binary file is not shown |
--- target/classes/itn/let/mjo/addr/service/AddrService.class
| Binary file is not shown |
--- target/classes/itn/let/mjo/addr/service/AddrTransHistService.class
| Binary file is not shown |
--- target/classes/itn/let/mjo/addr/service/AddrTransHistVO.class
| Binary file is not shown |
--- target/classes/itn/let/mjo/addr/service/AddrVO.class
| Binary file is not shown |
--- target/classes/itn/let/mjo/addr/service/impl/AddrDAO.class
| Binary file is not shown |
--- target/classes/itn/let/mjo/addr/service/impl/AddrGroupDAO.class
| Binary file is not shown |
--- target/classes/itn/let/mjo/addr/service/impl/AddrGroupServiceImpl.class
| Binary file is not shown |
--- target/classes/itn/let/mjo/addr/service/impl/AddrServiceImpl.class
| Binary file is not shown |
--- target/classes/itn/let/mjo/addr/service/impl/AddrTransHistDAO.class
| Binary file is not shown |
--- target/classes/itn/let/mjo/addr/service/impl/AddrTransHistServiceImpl.class
| Binary file is not shown |
--- target/classes/itn/let/mjo/addr/web/AddrController.class
| Binary file is not shown |
--- target/classes/itn/let/mjo/addr/web/AddrGroupController.class
| Binary file is not shown |
--- target/classes/itn/let/mjo/addr/web/AddrTransHistController.class
| Binary file is not shown |
--- target/classes/itn/let/mjo/addragency/service/AddrAgencyService.class
| Binary file is not shown |
--- target/classes/itn/let/mjo/addragency/service/AddrAgencyVO.class
| Binary file is not shown |
--- target/classes/itn/let/mjo/addragency/service/impl/AddrAgencyDAO.class
| Binary file is not shown |
--- target/classes/itn/let/mjo/addragency/service/impl/AddrAgencyServiceImpl.class
| Binary file is not shown |
--- target/classes/itn/let/mjo/addragency/web/AddrAgencyController.class
| Binary file is not shown |
--- target/classes/itn/let/mjo/apikey/service/ApiCallInfoMngService.class
| Binary file is not shown |
--- target/classes/itn/let/mjo/apikey/service/ApiKeyMngService.class
| Binary file is not shown |
--- target/classes/itn/let/mjo/apikey/service/ApiKeyVO.class
| Binary file is not shown |
--- target/classes/itn/let/mjo/apikey/service/impl/ApiCallInfoMngDAO.class
| Binary file is not shown |
--- target/classes/itn/let/mjo/apikey/service/impl/ApiCallInfoMngServiceImpl.class
| Binary file is not shown |
--- target/classes/itn/let/mjo/apikey/service/impl/ApiKeyMngDAO.class
| Binary file is not shown |
--- target/classes/itn/let/mjo/apikey/service/impl/ApiKeyMngServiceImpl.class
| Binary file is not shown |
--- target/classes/itn/let/mjo/apikey/web/ApiKeyMngController.class
| Binary file is not shown |
--- target/classes/itn/let/mjo/block/service/MjonBlockService.class
| Binary file is not shown |
--- target/classes/itn/let/mjo/block/service/MjonBlockVO.class
| Binary file is not shown |
--- target/classes/itn/let/mjo/block/service/impl/MjonBlockDAO.class
| Binary file is not shown |
--- target/classes/itn/let/mjo/block/service/impl/MjonBlockServiceImpl.class
| Binary file is not shown |
--- target/classes/itn/let/mjo/block/web/AddrBlockController.class
| Binary file is not shown |
--- target/classes/itn/let/mjo/block/web/MjonBlockController.class
| Binary file is not shown |
--- target/classes/itn/let/mjo/cert/service/CertService.class
| Binary file is not shown |
--- target/classes/itn/let/mjo/cert/service/CertVO.class
| Binary file is not shown |
--- target/classes/itn/let/mjo/cert/service/impl/CertDAO.class
| Binary file is not shown |
--- target/classes/itn/let/mjo/cert/service/impl/CertServiceImpl.class
| Binary file is not shown |
--- target/classes/itn/let/mjo/cert/web/CertController.class
| Binary file is not shown |
--- target/classes/itn/let/mjo/conf/service/MjonConfService.class
| Binary file is not shown |
--- target/classes/itn/let/mjo/conf/service/MjonConfVO.class
| Binary file is not shown |
--- target/classes/itn/let/mjo/conf/service/impl/MjonConfDAO.class
| Binary file is not shown |
--- target/classes/itn/let/mjo/conf/service/impl/MjonConfServiceImpl.class
| Binary file is not shown |
--- target/classes/itn/let/mjo/conf/web/MjonConfController.class
| Binary file is not shown |
--- target/classes/itn/let/mjo/event/service/MjonEventCheckVO.class
| Binary file is not shown |
--- target/classes/itn/let/mjo/event/service/MjonEventService.class
| Binary file is not shown |
--- target/classes/itn/let/mjo/event/service/MjonEventVO.class
| Binary file is not shown |
--- target/classes/itn/let/mjo/event/service/impl/MjonEventDAO.class
| Binary file is not shown |
--- target/classes/itn/let/mjo/event/service/impl/MjonEventServiceImpl.class
| Binary file is not shown |
--- target/classes/itn/let/mjo/event/web/MjonEventController.class
| Binary file is not shown |
--- target/classes/itn/let/mjo/event/web/MjonEventPayV2Controller.class
| Binary file is not shown |
--- target/classes/itn/let/mjo/kisa/service/KisaService.class
| Binary file is not shown |
--- target/classes/itn/let/mjo/kisa/service/KisaVO.class
| Binary file is not shown |
--- target/classes/itn/let/mjo/kisa/service/impl/KisaDAO.class
| Binary file is not shown |
--- target/classes/itn/let/mjo/kisa/service/impl/KisaServiceImpl.class
| Binary file is not shown |
--- target/classes/itn/let/mjo/kisa/web/KisaController.class
| Binary file is not shown |
--- target/classes/itn/let/mjo/mjocommon/MjonCommon.class
| Binary file is not shown |
--- target/classes/itn/let/mjo/mjocommon/MjonForienIpChk.class
| Binary file is not shown |
--- target/classes/itn/let/mjo/msg/service/MjPhoneMemberVO.class
| Binary file is not shown |
--- target/classes/itn/let/mjo/msg/service/MjonMapAddressVO.class
| Binary file is not shown |
--- target/classes/itn/let/mjo/msg/service/MjonMsgResultCodeVO.class
| Binary file is not shown |
--- target/classes/itn/let/mjo/msg/service/MjonMsgService.class
| Binary file is not shown |
--- target/classes/itn/let/mjo/msg/service/MjonMsgStatVO.class
| Binary file is not shown |
--- target/classes/itn/let/mjo/msg/service/MjonMsgVO.class
| Binary file is not shown |
--- target/classes/itn/let/mjo/msg/service/MjonSwearWordVO.class
| Binary file is not shown |
--- target/classes/itn/let/mjo/msg/service/impl/MjonMsgDAO.class
| Binary file is not shown |
--- target/classes/itn/let/mjo/msg/service/impl/MjonMsgServiceImpl.class
| Binary file is not shown |
--- target/classes/itn/let/mjo/msg/web/MjonMsgController.class
| Binary file is not shown |
--- target/classes/itn/let/mjo/msgCustom/service/MjonMsgCustomService.class
| Binary file is not shown |
--- target/classes/itn/let/mjo/msgCustom/service/MjonMsgCustomVO.class
| Binary file is not shown |
--- target/classes/itn/let/mjo/msgCustom/service/impl/MjonMsgCustomDAO.class
| Binary file is not shown |
--- target/classes/itn/let/mjo/msgCustom/service/impl/MjonMsgCustomServiceImpl.class
| Binary file is not shown |
--- target/classes/itn/let/mjo/msgCustom/web/MjonMsgCustomController.class
| Binary file is not shown |
--- target/classes/itn/let/mjo/msgCustom/web/MjonMsgCustomWebController.class
| Binary file is not shown |
--- target/classes/itn/let/mjo/msgagent/service/MjonMsgAgentStsService.class
| Binary file is not shown |
--- target/classes/itn/let/mjo/msgagent/service/MjonMsgAgentStsVO.class
| Binary file is not shown |
--- target/classes/itn/let/mjo/msgagent/service/impl/MjonMsgAgentStsDAO.class
| Binary file is not shown |
--- target/classes/itn/let/mjo/msgagent/service/impl/MjonMsgAgentStsServiceImpl.class
| Binary file is not shown |
--- target/classes/itn/let/mjo/msgagent/web/MjonMsgAgentStsController.class
| Binary file is not shown |
--- target/classes/itn/let/mjo/msgcampain/service/MjonCandidateService.class
| Binary file is not shown |
--- target/classes/itn/let/mjo/msgcampain/service/MjonCandidateVO.class
| Binary file is not shown |
--- target/classes/itn/let/mjo/msgcampain/service/impl/MjonCandidateDAO.class
| Binary file is not shown |
--- target/classes/itn/let/mjo/msgcampain/service/impl/MjonCandidateServiceImpl.class
| Binary file is not shown |
--- target/classes/itn/let/mjo/msgcampain/web/MjonMsgCampainDataController.class
| Binary file is not shown |
--- target/classes/itn/let/mjo/msgcampain/web/MjonVOParamXssValues.class
| Binary file is not shown |
--- target/classes/itn/let/mjo/msgdata/service/JsonResult.class
| Binary file is not shown |
--- target/classes/itn/let/mjo/msgdata/service/MjonMsgDataService.class
| Binary file is not shown |
--- target/classes/itn/let/mjo/msgdata/service/MjonMsgDataVO.class
| Binary file is not shown |
--- target/classes/itn/let/mjo/msgdata/service/MjonMsgReturnVO.class
| Binary file is not shown |
--- target/classes/itn/let/mjo/msgdata/service/PhoneVO.class
| Binary file is not shown |
--- target/classes/itn/let/mjo/msgdata/service/impl/MjonMsgDataDAO.class
| Binary file is not shown |
--- target/classes/itn/let/mjo/msgdata/service/impl/MjonMsgDataServiceImpl.class
| Binary file is not shown |
--- target/classes/itn/let/mjo/msgdata/web/MjonMsgDataController.class
| Binary file is not shown |
--- target/classes/itn/let/mjo/msgsent/service/MjonMsgRecvTestService.class
| Binary file is not shown |
--- target/classes/itn/let/mjo/msgsent/service/MjonMsgRecvTestVO.class
| Binary file is not shown |
--- target/classes/itn/let/mjo/msgsent/service/MjonMsgSentService.class
| Binary file is not shown |
--- target/classes/itn/let/mjo/msgsent/service/MjonMsgSentTestService.class
| Binary file is not shown |
--- target/classes/itn/let/mjo/msgsent/service/MjonMsgSentTestVO.class
| Binary file is not shown |
--- target/classes/itn/let/mjo/msgsent/service/MjonMsgSentVO.class
| Binary file is not shown |
--- target/classes/itn/let/mjo/msgsent/service/impl/MjonMsgRecvTestDAO.class
| Binary file is not shown |
--- target/classes/itn/let/mjo/msgsent/service/impl/MjonMsgRecvTestServiceImpl.class
| Binary file is not shown |
--- target/classes/itn/let/mjo/msgsent/service/impl/MjonMsgSentDAO.class
| Binary file is not shown |
--- target/classes/itn/let/mjo/msgsent/service/impl/MjonMsgSentServiceImpl.class
| Binary file is not shown |
--- target/classes/itn/let/mjo/msgsent/service/impl/MjonMsgSentTestDAO.class
| Binary file is not shown |
--- target/classes/itn/let/mjo/msgsent/service/impl/MjonMsgSentTestServiceImpl.class
| Binary file is not shown |
--- target/classes/itn/let/mjo/msgsent/web/MjonMsgSentController.class
| Binary file is not shown |
--- target/classes/itn/let/mjo/pay/service/KmcVO.class
| Binary file is not shown |
--- target/classes/itn/let/mjo/pay/service/MjonPayService.class
| Binary file is not shown |
--- target/classes/itn/let/mjo/pay/service/MjonPayTypeService.class
| Binary file is not shown |
--- target/classes/itn/let/mjo/pay/service/MjonPayTypeVO.class
| Binary file is not shown |
--- target/classes/itn/let/mjo/pay/service/MjonPayVO.class
| Binary file is not shown |
--- target/classes/itn/let/mjo/pay/service/MjonPgVO.class
| Binary file is not shown |
--- target/classes/itn/let/mjo/pay/service/MjonVaMsgLogVO.class
| Binary file is not shown |
--- target/classes/itn/let/mjo/pay/service/RefundService.class
| Binary file is not shown |
--- target/classes/itn/let/mjo/pay/service/RefundVO.class
| Binary file is not shown |
--- target/classes/itn/let/mjo/pay/service/StVcVO.class
| Binary file is not shown |
--- target/classes/itn/let/mjo/pay/service/impl/MjonPayDAO.class
| Binary file is not shown |
--- target/classes/itn/let/mjo/pay/service/impl/MjonPayServiceImpl$DataEncrypt.class
| Binary file is not shown |
--- target/classes/itn/let/mjo/pay/service/impl/MjonPayServiceImpl.class
| Binary file is not shown |
--- target/classes/itn/let/mjo/pay/service/impl/MjonPayTypeDAO.class
| Binary file is not shown |
--- target/classes/itn/let/mjo/pay/service/impl/MjonPayTypeServiceImpl.class
| Binary file is not shown |
--- target/classes/itn/let/mjo/pay/service/impl/RefundDAO.class
| Binary file is not shown |
--- target/classes/itn/let/mjo/pay/service/impl/RefundServiceImpl.class
| Binary file is not shown |
--- target/classes/itn/let/mjo/pay/web/MjonKGMPayController.class
| Binary file is not shown |
--- target/classes/itn/let/mjo/pay/web/MjonPayController.class
| Binary file is not shown |
--- target/classes/itn/let/mjo/pay/web/MjonPayTypeController.class
| Binary file is not shown |
--- target/classes/itn/let/mjo/pay/web/MjonPayV2Controller.class
| Binary file is not shown |
--- target/classes/itn/let/mjo/pay/web/MjonSBVAPayController.class
| Binary file is not shown |
--- target/classes/itn/let/mjo/pay/web/RefundController.class
| Binary file is not shown |
--- target/classes/itn/let/mjo/paykgm/service/KgmPgVO.class
| Binary file is not shown |
--- target/classes/itn/let/mjo/payva/service/VacsAhstService.class
| Binary file is not shown |
--- target/classes/itn/let/mjo/payva/service/VacsAhstVO.class
| Binary file is not shown |
--- target/classes/itn/let/mjo/payva/service/VacsErrlogService.class
| Binary file is not shown |
--- target/classes/itn/let/mjo/payva/service/VacsErrlogVO.class
| Binary file is not shown |
--- target/classes/itn/let/mjo/payva/service/VacsTotlService.class
| Binary file is not shown |
--- target/classes/itn/let/mjo/payva/service/VacsTotlVO.class
| Binary file is not shown |
--- target/classes/itn/let/mjo/payva/service/VacsVactService.class
| Binary file is not shown |
--- target/classes/itn/let/mjo/payva/service/VacsVactVO.class
| Binary file is not shown |
--- target/classes/itn/let/mjo/payva/service/impl/VacsAhstDAO.class
| Binary file is not shown |
--- target/classes/itn/let/mjo/payva/service/impl/VacsAhstServiceImpl.class
| Binary file is not shown |
--- target/classes/itn/let/mjo/payva/service/impl/VacsErrlogDAO.class
| Binary file is not shown |
--- target/classes/itn/let/mjo/payva/service/impl/VacsErrlogServiceImpl.class
| Binary file is not shown |
--- target/classes/itn/let/mjo/payva/service/impl/VacsTotlDAO.class
| Binary file is not shown |
--- target/classes/itn/let/mjo/payva/service/impl/VacsTotlServiceImpl.class
| Binary file is not shown |
--- target/classes/itn/let/mjo/payva/service/impl/VacsVactDAO.class
| Binary file is not shown |
--- target/classes/itn/let/mjo/payva/service/impl/VacsVactServiceImpl.class
| Binary file is not shown |
--- target/classes/itn/let/mjo/payva/web/VacsController.class
| Binary file is not shown |
--- target/classes/itn/let/mjo/rejt/service/MjonRejectService.class
| Binary file is not shown |
--- target/classes/itn/let/mjo/rejt/service/MjonRejectVO.class
| Binary file is not shown |
--- target/classes/itn/let/mjo/rejt/service/impl/MjonRejectDAO.class
| Binary file is not shown |
--- target/classes/itn/let/mjo/rejt/service/impl/MjonRejectServiceImpl.class
| Binary file is not shown |
--- target/classes/itn/let/mjo/rejt/web/MjonRejectController.class
| Binary file is not shown |
--- target/classes/itn/let/mjo/reservmsg/service/MjonReservMsgService.class
| Binary file is not shown |
--- target/classes/itn/let/mjo/reservmsg/service/MjonResvMsgVO.class
| Binary file is not shown |
--- target/classes/itn/let/mjo/reservmsg/service/impl/MjonReservMsgDAO.class
| Binary file is not shown |
--- target/classes/itn/let/mjo/reservmsg/service/impl/MjonReservMsgServiceImpl.class
| Binary file is not shown |
--- target/classes/itn/let/mjo/reservmsg/web/MjonReservMsgController.class
| Binary file is not shown |
--- target/classes/itn/let/mjo/scheduler/service/MjonMsgDataBackupService.class
| Binary file is not shown |
--- target/classes/itn/let/mjo/scheduler/service/TableBackupMsgScheduling.class
| Binary file is not shown |
--- target/classes/itn/let/mjo/scheduler/service/impl/MjonMsgDataBackupDAO.class
| Binary file is not shown |
--- target/classes/itn/let/mjo/scheduler/service/impl/MjonMsgDataBackupServiceImpl.class
| Binary file is not shown |
--- target/classes/itn/let/mjo/spammsg/service/MjonSpamMsgService.class
| Binary file is not shown |
--- target/classes/itn/let/mjo/spammsg/service/MjonSpamMsgVO.class
| Binary file is not shown |
--- target/classes/itn/let/mjo/spammsg/service/impl/MjonSpamMsgDAO.class
| Binary file is not shown |
--- target/classes/itn/let/mjo/spammsg/service/impl/MjonSpamMsgServiceImpl.class
| Binary file is not shown |
--- target/classes/itn/let/mjo/spammsg/web/ComGetSpamStringParser.class
| Binary file is not shown |
--- target/classes/itn/let/mjo/spammsg/web/MjonSpamMsgController.class
| Binary file is not shown |
--- target/classes/itn/let/mjo/sttst/service/MjonSttstService.class
| Binary file is not shown |
--- target/classes/itn/let/mjo/sttst/service/SttstMsgScheduling.class
| Binary file is not shown |
--- target/classes/itn/let/mjo/sttst/service/impl/MjonSttstDAO.class
| Binary file is not shown |
--- target/classes/itn/let/mjo/sttst/service/impl/MjonSttstServiceImpl.class
| Binary file is not shown |
--- target/classes/itn/let/mjo/symbol/service/MjonSymbolService.class
| Binary file is not shown |
--- target/classes/itn/let/mjo/symbol/service/MjonSymbolVO.class
| Binary file is not shown |
--- target/classes/itn/let/mjo/symbol/service/impl/MjonSymbolDAO.class
| Binary file is not shown |
--- target/classes/itn/let/mjo/symbol/service/impl/MjonSymbolServiceImpl.class
| Binary file is not shown |
--- target/classes/itn/let/mjo/symbol/web/MjonSymbolController.class
| Binary file is not shown |
--- target/classes/itn/let/mjo/tax/service/TaxService.class
| Binary file is not shown |
--- target/classes/itn/let/mjo/tax/service/TaxVO.class
| Binary file is not shown |
--- target/classes/itn/let/mjo/tax/service/impl/TaxDAO.class
| Binary file is not shown |
--- target/classes/itn/let/mjo/tax/service/impl/TaxServiceImpl.class
| Binary file is not shown |
--- target/classes/itn/let/mjo/tax/web/TaxController.class
| Binary file is not shown |
--- target/classes/itn/let/mjo/temp/service/TempVO.class
| Binary file is not shown |
--- target/classes/itn/let/mjo/test/web/TestController.class
| Binary file is not shown |
--- target/classes/itn/let/mjo/test/web/TestCrawlerController.class
| Binary file is not shown |
--- target/classes/itn/let/mjo/test/web/TestKakaoController.class
| Binary file is not shown |
--- target/classes/itn/let/module/base/PriceAndPoint.class
| Binary file is not shown |
--- target/classes/itn/let/org/service/LocVO.class
| Binary file is not shown |
--- target/classes/itn/let/org/service/OrgCharVO.class
| Binary file is not shown |
--- target/classes/itn/let/org/service/OrgChartManageService.class
| Binary file is not shown |
--- target/classes/itn/let/org/service/impl/ItsmOrgChartManageDAO.class
| Binary file is not shown |
--- target/classes/itn/let/org/service/impl/OrgChartManageServiceImpl.class
| Binary file is not shown |
--- target/classes/itn/let/org/web/OrgChartManageController.class
| Binary file is not shown |
--- target/classes/itn/let/schdlr/service/SchdlrManageService.class
| Binary file is not shown |
--- target/classes/itn/let/schdlr/service/SchdlrVO.class
| Binary file is not shown |
--- target/classes/itn/let/schdlr/service/SchedulerUtil.class
| Binary file is not shown |
--- target/classes/itn/let/schdlr/service/impl/SchdlrManageDAO.class
| Binary file is not shown |
--- target/classes/itn/let/schdlr/service/impl/SchdlrManageServiceImpl.class
| Binary file is not shown |
--- target/classes/itn/let/schdlr/service/web/AnotaionSchedule.class
| Binary file is not shown |
--- target/classes/itn/let/schdlr/service/web/SchMailSendScheduling.class
| Binary file is not shown |
--- target/classes/itn/let/schdlr/service/web/SchdlrManageController.class
| Binary file is not shown |
--- target/classes/itn/let/sec/gmt/service/EgovGroupManageService.class
| Binary file is not shown |
--- target/classes/itn/let/sec/gmt/service/GroupManage.class
| Binary file is not shown |
--- target/classes/itn/let/sec/gmt/service/GroupManageVO.class
| Binary file is not shown |
--- target/classes/itn/let/sec/gmt/service/impl/EgovGroupManageServiceImpl.class
| Binary file is not shown |
--- target/classes/itn/let/sec/gmt/service/impl/GroupManageDAO.class
| Binary file is not shown |
--- target/classes/itn/let/sec/gmt/web/EgovGroupManageController.class
| Binary file is not shown |
--- target/classes/itn/let/sec/ram/service/AuthorManage.class
| Binary file is not shown |
--- target/classes/itn/let/sec/ram/service/AuthorManageVO.class
| Binary file is not shown |
--- target/classes/itn/let/sec/ram/service/AuthorRoleManage.class
| Binary file is not shown |
--- target/classes/itn/let/sec/ram/service/AuthorRoleManageVO.class
| Binary file is not shown |
--- target/classes/itn/let/sec/ram/service/EgovAuthorManageService.class
| Binary file is not shown |
--- target/classes/itn/let/sec/ram/service/EgovAuthorRoleManageService.class
| Binary file is not shown |
--- target/classes/itn/let/sec/ram/service/impl/AuthorManageDAO.class
| Binary file is not shown |
--- target/classes/itn/let/sec/ram/service/impl/AuthorRoleManageDAO.class
| Binary file is not shown |
--- target/classes/itn/let/sec/ram/service/impl/EgovAuthorManageServiceImpl.class
| Binary file is not shown |
--- target/classes/itn/let/sec/ram/service/impl/EgovAuthorRoleManageServiceImpl.class
| Binary file is not shown |
--- target/classes/itn/let/sec/ram/web/EgovAuthorManageController.class
| Binary file is not shown |
--- target/classes/itn/let/sec/ram/web/EgovAuthorRoleController.class
| Binary file is not shown |
--- target/classes/itn/let/sec/rgm/service/AuthorGroup.class
| Binary file is not shown |
--- target/classes/itn/let/sec/rgm/service/AuthorGroupVO.class
| Binary file is not shown |
--- target/classes/itn/let/sec/rgm/service/EgovAuthorGroupService.class
| Binary file is not shown |
--- target/classes/itn/let/sec/rgm/service/impl/AuthorGroupDAO.class
| Binary file is not shown |
--- target/classes/itn/let/sec/rgm/service/impl/EgovAuthorGroupServiceImpl.class
| Binary file is not shown |
--- target/classes/itn/let/sec/rgm/web/EgovAuthorGroupController.class
| Binary file is not shown |
--- target/classes/itn/let/sec/rmt/service/EgovRoleManageService.class
| Binary file is not shown |
--- target/classes/itn/let/sec/rmt/service/RoleManage.class
| Binary file is not shown |
--- target/classes/itn/let/sec/rmt/service/RoleManageVO.class
| Binary file is not shown |
--- target/classes/itn/let/sec/rmt/service/impl/EgovRoleManageServiceImpl.class
| Binary file is not shown |
--- target/classes/itn/let/sec/rmt/service/impl/RoleManageDAO.class
| Binary file is not shown |
--- target/classes/itn/let/sec/rmt/web/EgovRoleManageController.class
| Binary file is not shown |
--- target/classes/itn/let/solr/search/impl/SearchServiceImpl.class
| Binary file is not shown |
--- target/classes/itn/let/solr/search/service/SearchService$SOLR_CORE.class
| Binary file is not shown |
--- target/classes/itn/let/solr/search/service/SearchService.class
| Binary file is not shown |
--- target/classes/itn/let/solr/search/web/SearchContorller.class
| Binary file is not shown |
--- target/classes/itn/let/solr/sys/impl/ResearchDAO.class
| Binary file is not shown |
--- target/classes/itn/let/solr/sys/impl/ResearchServiceImpl.class
| Binary file is not shown |
--- target/classes/itn/let/solr/sys/service/ResearchService.class
| Binary file is not shown |
--- target/classes/itn/let/solr/sys/service/ResearchVO.class
| Binary file is not shown |
--- target/classes/itn/let/solr/sys/web/ResearchController.class
| Binary file is not shown |
--- target/classes/itn/let/sts/com/StatsVO.class
| Binary file is not shown |
--- target/classes/itn/let/sts/cst/service/EgovConectStatsService.class
| Binary file is not shown |
--- target/classes/itn/let/sts/cst/service/impl/ConectStatsDAO.class
| Binary file is not shown |
--- target/classes/itn/let/sts/cst/service/impl/EgovConectStatsServiceImpl.class
| Binary file is not shown |
--- target/classes/itn/let/sts/cst/web/EgovConectStatsController.class
| Binary file is not shown |
--- target/classes/itn/let/sym/cal/service/EgovCalRestdeManageService.class
| Binary file is not shown |
--- target/classes/itn/let/sym/cal/service/Restde.class
| Binary file is not shown |
--- target/classes/itn/let/sym/cal/service/RestdeVO.class
| Binary file is not shown |
--- target/classes/itn/let/sym/cal/service/impl/EgovCalRestdeManageServiceImpl.class
| Binary file is not shown |
--- target/classes/itn/let/sym/cal/service/impl/RestdeManageDAO.class
| Binary file is not shown |
--- target/classes/itn/let/sym/cal/web/EgovCalRestdeManageController.class
| Binary file is not shown |
--- target/classes/itn/let/sym/ccm/cca/service/CmmnCode.class
| Binary file is not shown |
--- target/classes/itn/let/sym/ccm/cca/service/CmmnCodeVO.class
| Binary file is not shown |
--- target/classes/itn/let/sym/ccm/cca/service/EgovCcmCmmnCodeManageService.class
| Binary file is not shown |
--- target/classes/itn/let/sym/ccm/cca/service/impl/CmmnCodeManageDAO.class
| Binary file is not shown |
--- target/classes/itn/let/sym/ccm/cca/service/impl/EgovCcmCmmnCodeManageServiceImpl.class
| Binary file is not shown |
--- target/classes/itn/let/sym/ccm/cca/web/EgovCcmCmmnCodeManageController.class
| Binary file is not shown |
--- target/classes/itn/let/sym/ccm/ccc/service/CmmnClCode.class
| Binary file is not shown |
--- target/classes/itn/let/sym/ccm/ccc/service/CmmnClCodeVO.class
| Binary file is not shown |
--- target/classes/itn/let/sym/ccm/ccc/service/EgovCcmCmmnClCodeManageService.class
| Binary file is not shown |
--- target/classes/itn/let/sym/ccm/ccc/service/impl/CmmnClCodeManageDAO.class
| Binary file is not shown |
--- target/classes/itn/let/sym/ccm/ccc/service/impl/EgovCcmCmmnClCodeManageServiceImpl.class
| Binary file is not shown |
--- target/classes/itn/let/sym/ccm/ccc/web/EgovCcmCmmnClCodeManageController.class
| Binary file is not shown |
--- target/classes/itn/let/sym/ccm/cde/service/CateCode.class
| Binary file is not shown |
--- target/classes/itn/let/sym/ccm/cde/service/CmmnDetailCodeVO.class
| Binary file is not shown |
--- target/classes/itn/let/sym/ccm/cde/service/EgovCcmCmmnDetailCodeManageService.class
| Binary file is not shown |
--- target/classes/itn/let/sym/ccm/cde/service/impl/CmmnDetailCodeManageDAO.class
| Binary file is not shown |
--- target/classes/itn/let/sym/ccm/cde/service/impl/EgovCcmCmmnDetailCodeManageServiceImpl.class
| Binary file is not shown |
--- target/classes/itn/let/sym/ccm/cde/web/EgovCcmCmmnDetailCodeManageController.class
| Binary file is not shown |
--- target/classes/itn/let/sym/ccm/zip/service/EgovCcmZipManageService.class
| Binary file is not shown |
--- target/classes/itn/let/sym/ccm/zip/service/Zip.class
| Binary file is not shown |
--- target/classes/itn/let/sym/ccm/zip/service/ZipVO.class
| Binary file is not shown |
--- target/classes/itn/let/sym/ccm/zip/service/impl/EgovCcmExcelZipMapping.class
| Binary file is not shown |
--- target/classes/itn/let/sym/ccm/zip/service/impl/EgovCcmZipManageServiceImpl.class
| Binary file is not shown |
--- target/classes/itn/let/sym/ccm/zip/service/impl/ZipManageDAO.class
| Binary file is not shown |
--- target/classes/itn/let/sym/ccm/zip/web/EgovCcmZipManageController.class
| Binary file is not shown |
--- target/classes/itn/let/sym/log/clg/service/EgovLoginLogAspect.class
| Binary file is not shown |
--- target/classes/itn/let/sym/log/clg/service/EgovLoginLogService.class
| Binary file is not shown |
--- target/classes/itn/let/sym/log/clg/service/EtcStatService.class
| Binary file is not shown |
--- target/classes/itn/let/sym/log/clg/service/EtcStatVO.class
| Binary file is not shown |
--- target/classes/itn/let/sym/log/clg/service/LoginLog.class
| Binary file is not shown |
--- target/classes/itn/let/sym/log/clg/service/MsgLog.class
| Binary file is not shown |
--- target/classes/itn/let/sym/log/clg/service/PopSrhVO.class
| Binary file is not shown |
--- target/classes/itn/let/sym/log/clg/service/impl/EgovLoginLogServiceImpl.class
| Binary file is not shown |
--- target/classes/itn/let/sym/log/clg/service/impl/EtcStatDAO.class
| Binary file is not shown |
--- target/classes/itn/let/sym/log/clg/service/impl/EtcStatServiceImpl.class
| Binary file is not shown |
--- target/classes/itn/let/sym/log/clg/service/impl/LoginLogDAO.class
| Binary file is not shown |
--- target/classes/itn/let/sym/log/clg/web/EgovLoginLogController.class
| Binary file is not shown |
--- target/classes/itn/let/sym/log/clg/web/EtcStatController.class
| Binary file is not shown |
--- target/classes/itn/let/sym/log/lgm/service/EgovSysLogAspect.class
| Binary file is not shown |
--- target/classes/itn/let/sym/log/lgm/service/EgovSysLogScheduling.class
| Binary file is not shown |
--- target/classes/itn/let/sym/log/lgm/service/EgovSysLogService.class
| Binary file is not shown |
--- target/classes/itn/let/sym/log/lgm/service/SysLog.class
| Binary file is not shown |
--- target/classes/itn/let/sym/log/lgm/service/impl/EgovSysLogServiceImpl.class
| Binary file is not shown |
--- target/classes/itn/let/sym/log/lgm/service/impl/SysLogDAO.class
| Binary file is not shown |
--- target/classes/itn/let/sym/log/lgm/web/EgovSysLogController.class
| Binary file is not shown |
--- target/classes/itn/let/sym/log/user/service/UserLogService.class
| Binary file is not shown |
--- target/classes/itn/let/sym/log/user/service/UserLogVO.class
| Binary file is not shown |
--- target/classes/itn/let/sym/log/user/service/impl/UserLogServiceImpl.class
| Binary file is not shown |
--- target/classes/itn/let/sym/log/user/web/UserLogController.class
| Binary file is not shown |
--- target/classes/itn/let/sym/mnu/mcm/service/EgovMenuCreateManageService.class
| Binary file is not shown |
--- target/classes/itn/let/sym/mnu/mcm/service/MenuCreat.class
| Binary file is not shown |
--- target/classes/itn/let/sym/mnu/mcm/service/MenuCreatVO.class
| Binary file is not shown |
--- target/classes/itn/let/sym/mnu/mcm/service/impl/EgovMenuCreateManageServiceImpl.class
| Binary file is not shown |
--- target/classes/itn/let/sym/mnu/mcm/service/impl/MenuCreateManageDAO.class
| Binary file is not shown |
--- target/classes/itn/let/sym/mnu/mcm/web/EgovMenuCreateManageController.class
| Binary file is not shown |
--- target/classes/itn/let/sym/mnu/mpm/service/EgovMenuManageService.class
| Binary file is not shown |
--- target/classes/itn/let/sym/mnu/mpm/service/MenuManage.class
| Binary file is not shown |
--- target/classes/itn/let/sym/mnu/mpm/service/MenuManageJTreeVO.class
| Binary file is not shown |
--- target/classes/itn/let/sym/mnu/mpm/service/MenuManageVO.class
| Binary file is not shown |
--- target/classes/itn/let/sym/mnu/mpm/service/impl/EgovMenuManageServiceImpl.class
| Binary file is not shown |
--- target/classes/itn/let/sym/mnu/mpm/service/impl/MenuManageDAO.class
| Binary file is not shown |
--- target/classes/itn/let/sym/mnu/mpm/web/EgovMenuManageController.class
| Binary file is not shown |
--- target/classes/itn/let/sym/prm/service/EgovProgrmManageService.class
| Binary file is not shown |
--- target/classes/itn/let/sym/prm/service/ProgrmManage.class
| Binary file is not shown |
--- target/classes/itn/let/sym/prm/service/ProgrmManageDtlVO.class
| Binary file is not shown |
--- target/classes/itn/let/sym/prm/service/ProgrmManageDtls.class
| Binary file is not shown |
--- target/classes/itn/let/sym/prm/service/ProgrmManageVO.class
| Binary file is not shown |
--- target/classes/itn/let/sym/prm/service/impl/EgovProgrmManageServiceImpl.class
| Binary file is not shown |
--- target/classes/itn/let/sym/prm/service/impl/ProgrmManageDAO.class
| Binary file is not shown |
--- target/classes/itn/let/sym/prm/web/EgovProgrmManageController.class
| Binary file is not shown |
--- target/classes/itn/let/sym/site/service/BiddingVO.class
| Binary file is not shown |
--- target/classes/itn/let/sym/site/service/EgovSiteIpService.class
| Binary file is not shown |
--- target/classes/itn/let/sym/site/service/EgovSiteManagerService.class
| Binary file is not shown |
--- target/classes/itn/let/sym/site/service/JoinSettingVO.class
| Binary file is not shown |
--- target/classes/itn/let/sym/site/service/MetaTagVO.class
| Binary file is not shown |
--- target/classes/itn/let/sym/site/service/SiteIpManagerVO.class
| Binary file is not shown |
--- target/classes/itn/let/sym/site/service/SiteManagerVO.class
| Binary file is not shown |
--- target/classes/itn/let/sym/site/service/TermsVO.class
| Binary file is not shown |
--- target/classes/itn/let/sym/site/service/impl/EgovSiteIpServiceImpl.class
| Binary file is not shown |
--- target/classes/itn/let/sym/site/service/impl/EgovSiteManagerServiceImpl.class
| Binary file is not shown |
--- target/classes/itn/let/sym/site/service/impl/SiteManagerDAO.class
| Binary file is not shown |
--- target/classes/itn/let/sym/site/web/EgovSiteManagerController.class
| Binary file is not shown |
--- target/classes/itn/let/sym/site/web/ListComparator.class
| Binary file is not shown |
--- target/classes/itn/let/sym/wordcloud/service/EgovWordCloudService.class
| Binary file is not shown |
--- target/classes/itn/let/sym/wordcloud/service/EgovWordCloudVO.class
| Binary file is not shown |
--- target/classes/itn/let/sym/wordcloud/service/impl/EgovWordCloudDAO.class
| Binary file is not shown |
--- target/classes/itn/let/sym/wordcloud/service/impl/EgovWordCloudServiceImpl.class
| Binary file is not shown |
--- target/classes/itn/let/sym/wordcloud/web/EgovWordCloudController.class
| Binary file is not shown |
--- target/classes/itn/let/uat/uap/filter/EgovLoginPolicyFilter.class
| Binary file is not shown |
--- target/classes/itn/let/uat/uap/service/EgovLoginPolicyService.class
| Binary file is not shown |
--- target/classes/itn/let/uat/uap/service/LoginPolicy.class
| Binary file is not shown |
--- target/classes/itn/let/uat/uap/service/LoginPolicyVO.class
| Binary file is not shown |
--- target/classes/itn/let/uat/uap/service/impl/EgovLoginPolicyServiceImpl.class
| Binary file is not shown |
--- target/classes/itn/let/uat/uap/service/impl/LoginPolicyDAO.class
| Binary file is not shown |
--- target/classes/itn/let/uat/uap/web/EgovLoginPolicyController.class
| Binary file is not shown |
--- target/classes/itn/let/uat/uia/service/AuthCertVO.class
| Binary file is not shown |
--- target/classes/itn/let/uat/uia/service/EgovLoginService.class
| Binary file is not shown |
--- target/classes/itn/let/uat/uia/service/impl/EgovLoginServiceImpl.class
| Binary file is not shown |
--- target/classes/itn/let/uat/uia/service/impl/EgovMberManageServiceImpl.class
| Binary file is not shown |
--- target/classes/itn/let/uat/uia/service/impl/EgovSessionMapping.class
| Binary file is not shown |
--- target/classes/itn/let/uat/uia/service/impl/LoginDAO.class
| Binary file is not shown |
--- target/classes/itn/let/uat/uia/service/impl/MberManageDAO.class
| Binary file is not shown |
--- target/classes/itn/let/uat/uia/web/ClientIP.class
| Binary file is not shown |
--- target/classes/itn/let/uat/uia/web/EgovLoginController.class
| Binary file is not shown |
--- target/classes/itn/let/uat/uia/web/EgovMypageController.class
| Binary file is not shown |
--- target/classes/itn/let/uat/uia/web/EgovMypageRESTAPIController.class
| Binary file is not shown |
--- target/classes/itn/let/uat/uia/web/EmailVO.class
| Binary file is not shown |
--- target/classes/itn/let/uat/uia/web/KmcCertChecker.class
| Binary file is not shown |
--- target/classes/itn/let/uat/uia/web/RequestWrapperForSecurity.class
| Binary file is not shown |
--- target/classes/itn/let/uat/uia/web/SMTPAuthenticator.class
| Binary file is not shown |
--- target/classes/itn/let/uat/uia/web/SendLogVO.class
| Binary file is not shown |
--- target/classes/itn/let/uat/uia/web/SendMail.class
| Binary file is not shown |
--- target/classes/itn/let/uat/uia/web/UserCheckController.class
| Binary file is not shown |
--- target/classes/itn/let/uss/ion/cnt/impl/CntManageDAO.class
| Binary file is not shown |
--- target/classes/itn/let/uss/ion/cnt/impl/EgovCntManageServiceImpl.class
| Binary file is not shown |
--- target/classes/itn/let/uss/ion/cnt/service/CntManageVO.class
| Binary file is not shown |
--- target/classes/itn/let/uss/ion/cnt/service/EgovCntManageService.class
| Binary file is not shown |
--- target/classes/itn/let/uss/ion/cnt/web/EgovCntController.class
| Binary file is not shown |
--- target/classes/itn/let/uss/ion/sat/impl/EgovSatManageServiceImpl.class
| Binary file is not shown |
--- target/classes/itn/let/uss/ion/sat/impl/SatManageDAO.class
| Binary file is not shown |
--- target/classes/itn/let/uss/ion/sat/service/EgovSatManageService.class
| Binary file is not shown |
--- target/classes/itn/let/uss/ion/sat/web/EgovSatController.class
| Binary file is not shown |
--- target/classes/itn/let/uss/ion/sign/service/ApprovalVO.class
| Binary file is not shown |
--- target/classes/itn/let/uss/ion/sign/service/SignManageService.class
| Binary file is not shown |
--- target/classes/itn/let/uss/ion/sign/service/SignVO.class
| Binary file is not shown |
--- target/classes/itn/let/uss/ion/sign/service/impl/SignManageDAO.class
| Binary file is not shown |
--- target/classes/itn/let/uss/ion/sign/service/impl/SignManageServiceImpl.class
| Binary file is not shown |
--- target/classes/itn/let/uss/ion/sign/web/SignManageController.class
| Binary file is not shown |
--- target/classes/itn/let/uss/ion/uas/service/EgovUserAbsnceService.class
| Binary file is not shown |
--- target/classes/itn/let/uss/ion/uas/service/UserAbsnce.class
| Binary file is not shown |
--- target/classes/itn/let/uss/ion/uas/service/UserAbsnceVO.class
| Binary file is not shown |
--- target/classes/itn/let/uss/ion/uas/service/impl/EgovUserAbsnceServiceImpl.class
| Binary file is not shown |
--- target/classes/itn/let/uss/ion/uas/service/impl/UserAbsnceDAO.class
| Binary file is not shown |
--- target/classes/itn/let/uss/ion/uas/web/EgovUserAbsnceController.class
| Binary file is not shown |
--- target/classes/itn/let/uss/olp/qim/service/EgovQustnrItemManageService.class
| Binary file is not shown |
--- target/classes/itn/let/uss/olp/qim/service/QustnrItemManageVO.class
| Binary file is not shown |
--- target/classes/itn/let/uss/olp/qim/service/impl/EgovQustnrItemManageServiceImpl.class
| Binary file is not shown |
--- target/classes/itn/let/uss/olp/qim/service/impl/QustnrItemManageDao.class
| Binary file is not shown |
--- target/classes/itn/let/uss/olp/qim/web/EgovQustnrItemManageController.class
| Binary file is not shown |
--- target/classes/itn/let/uss/olp/qmc/service/EgovQustnrManageService.class
| Binary file is not shown |
--- target/classes/itn/let/uss/olp/qmc/service/QustnrManageVO.class
| Binary file is not shown |
--- target/classes/itn/let/uss/olp/qmc/service/impl/EgovQustnrManageServiceImpl.class
| Binary file is not shown |
--- target/classes/itn/let/uss/olp/qmc/service/impl/QustnrManageDao.class
| Binary file is not shown |
--- target/classes/itn/let/uss/olp/qmc/web/EgovQustnrManageController.class
| Binary file is not shown |
--- target/classes/itn/let/uss/olp/qqm/service/EgovQustnrQestnManageService.class
| Binary file is not shown |
--- target/classes/itn/let/uss/olp/qqm/service/QustnrQestnManageVO.class
| Binary file is not shown |
--- target/classes/itn/let/uss/olp/qqm/service/impl/EgovQustnrQestnManageServiceImpl.class
| Binary file is not shown |
--- target/classes/itn/let/uss/olp/qqm/service/impl/QustnrQestnManageDao.class
| Binary file is not shown |
--- target/classes/itn/let/uss/olp/qqm/web/EgovQustnrQestnManageController.class
| Binary file is not shown |
--- target/classes/itn/let/uss/olp/qri/service/EgovQustnrRespondInfoService.class
| Binary file is not shown |
--- target/classes/itn/let/uss/olp/qri/service/QustnrRespondInfoVO.class
| Binary file is not shown |
--- target/classes/itn/let/uss/olp/qri/service/impl/EgovQustnrRespondInfoServiceImpl.class
| Binary file is not shown |
--- target/classes/itn/let/uss/olp/qri/service/impl/QustnrRespondInfoDao.class
| Binary file is not shown |
--- target/classes/itn/let/uss/olp/qri/web/EgovQustnrRespondInfoController.class
| Binary file is not shown |
--- target/classes/itn/let/uss/olp/qrm/service/EgovQustnrRespondManageService.class
| Binary file is not shown |
--- target/classes/itn/let/uss/olp/qrm/service/QustnrRespondManageVO.class
| Binary file is not shown |
--- target/classes/itn/let/uss/olp/qrm/service/impl/EgovQustnrRespondManageServiceImpl.class
| Binary file is not shown |
--- target/classes/itn/let/uss/olp/qrm/service/impl/QustnrRespondManageDao.class
| Binary file is not shown |
--- target/classes/itn/let/uss/olp/qrm/web/EgovQustnrRespondManageController.class
| Binary file is not shown |
--- target/classes/itn/let/uss/olp/qtm/service/EgovQustnrTmplatManageService.class
| Binary file is not shown |
--- target/classes/itn/let/uss/olp/qtm/service/QustnrTmplatManageVO.class
| Binary file is not shown |
--- target/classes/itn/let/uss/olp/qtm/service/impl/EgovQustnrTmplatManageServiceImpl.class
| Binary file is not shown |
--- target/classes/itn/let/uss/olp/qtm/service/impl/QustnrTmplatManageDao.class
| Binary file is not shown |
--- target/classes/itn/let/uss/olp/qtm/web/EgovQustnrTmplatManageController.class
| Binary file is not shown |
--- target/classes/itn/let/uss/umt/service/AdmProcHstryVO.class
| Binary file is not shown |
--- target/classes/itn/let/uss/umt/service/EgovMberCmpHstService.class
| Binary file is not shown |
--- target/classes/itn/let/uss/umt/service/EgovMberManageService.class
| Binary file is not shown |
--- target/classes/itn/let/uss/umt/service/EgovUserManageService.class
| Binary file is not shown |
--- target/classes/itn/let/uss/umt/service/MberCmpHstVO.class
| Binary file is not shown |
--- target/classes/itn/let/uss/umt/service/MberManageConfigVO.class
| Binary file is not shown |
--- target/classes/itn/let/uss/umt/service/MberManageVO.class
| Binary file is not shown |
--- target/classes/itn/let/uss/umt/service/UserDefaultVO.class
| Binary file is not shown |
--- target/classes/itn/let/uss/umt/service/UserGuestVO.class
| Binary file is not shown |
--- target/classes/itn/let/uss/umt/service/UserManageVO.class
| Binary file is not shown |
--- target/classes/itn/let/uss/umt/service/impl/AdmProcHstryDAO.class
| Binary file is not shown |
--- target/classes/itn/let/uss/umt/service/impl/EgovMberCmpHstServiceImpl.class
| Binary file is not shown |
--- target/classes/itn/let/uss/umt/service/impl/EgovUserManageServiceImpl.class
| Binary file is not shown |
--- target/classes/itn/let/uss/umt/service/impl/MberCmpHstDAO.class
| Binary file is not shown |
--- target/classes/itn/let/uss/umt/service/impl/UserManageDAO.class
| Binary file is not shown |
--- target/classes/itn/let/uss/umt/web/EgovMberCmpHstController.class
| Binary file is not shown |
--- target/classes/itn/let/uss/umt/web/EgovUserManageController.class
| Binary file is not shown |
--- target/classes/itn/let/utl/fcc/service/EgovCryptoUtil.class
| Binary file is not shown |
--- target/classes/itn/let/utl/fcc/service/EgovDateUtil.class
| Binary file is not shown |
--- target/classes/itn/let/utl/fcc/service/EgovNumberUtil.class
| Binary file is not shown |
--- target/classes/itn/let/utl/fcc/service/EgovStringUtil.class
| Binary file is not shown |
--- target/classes/itn/let/utl/log4j/Log4JdbcCustomFormatter.class
| Binary file is not shown |
--- target/classes/itn/let/utl/sim/service/EgovClntInfo.class
| Binary file is not shown |
--- target/classes/itn/let/utl/sim/service/EgovFileScrty.class
| Binary file is not shown |
--- target/classes/itn/let/utl/user/service/CheckBoardUtil.class
| Binary file is not shown |
--- target/classes/itn/let/utl/user/service/CheckFileUtil.class
| Binary file is not shown |
--- target/classes/itn/let/utl/user/service/CheckLoginUtil.class
| Binary file is not shown |
--- target/classes/itn/let/utl/user/service/CheckNoServiceCommon.class
| Binary file is not shown |
--- target/classes/itn/let/utl/user/service/MjonNoticeSendUtil.class
| Binary file is not shown |
--- target/classes/itn/let/utl/user/service/MjonSmsCertSendUtil.class
| Binary file is not shown |
--- target/classes/itn/let/utl/user/service/SecuKeyUtil.class
| Binary file is not shown |
--- target/classes/itn/web/ContentController.class
| Binary file is not shown |
--- target/classes/itn/web/MainController$1.class
| Binary file is not shown |
--- target/classes/itn/web/MainController.class
| Binary file is not shown |
--- target/classes/log4j2.xml
| This diff is skipped because there are too many other diffs. |
--- target/classes/rebel.xml
| This diff is skipped because there are too many other diffs. |
--- target/m2e-wtp/web-resources/META-INF/MANIFEST.MF
| This diff is skipped because there are too many other diffs. |
--- target/m2e-wtp/web-resources/META-INF/maven/mjon/mjon/pom.properties
| This diff is skipped because there are too many other diffs. |
--- target/m2e-wtp/web-resources/META-INF/maven/mjon/mjon/pom.xml
| This diff is skipped because there are too many other diffs. |
Add a comment
Delete comment
Once you delete this comment, you won't be able to recover it. Are you sure you want to delete this comment?