Commit bc95e0139a9d21cd4bc0dc17b255103a0267c646
1 parent
8da7cb8b
Exists in
master
update SS
Showing
12 changed files
with
38 additions
and
12 deletions
Show diff stats
.classpath
... | ... | @@ -19,7 +19,6 @@ |
19 | 19 | </attributes> |
20 | 20 | </classpathentry> |
21 | 21 | <classpathentry kind="lib" path="lib/mssql-jdbc-6.2.2.jre8.jar"/> |
22 | - <classpathentry kind="lib" path="/Finger/lib/gson-2.2.2.jar"/> | |
23 | - <classpathentry kind="con" path="org.eclipse.jdt.launching.JRE_CONTAINER/org.eclipse.jdt.internal.debug.ui.launcher.StandardVMType/jre1.8.0_191"/> | |
22 | + <classpathentry kind="con" path="org.eclipse.jdt.launching.JRE_CONTAINER/org.eclipse.jdt.internal.debug.ui.launcher.StandardVMType/JavaSE-1.7"/> | |
24 | 23 | <classpathentry kind="output" path="target/classes"/> |
25 | 24 | </classpath> | ... | ... |
... | ... | @@ -0,0 +1 @@ |
1 | +/target/ | ... | ... |
.settings/org.eclipse.jdt.core.prefs
1 | 1 | eclipse.preferences.version=1 |
2 | 2 | org.eclipse.jdt.core.compiler.codegen.inlineJsrBytecode=enabled |
3 | 3 | org.eclipse.jdt.core.compiler.codegen.methodParameters=do not generate |
4 | -org.eclipse.jdt.core.compiler.codegen.targetPlatform=1.5 | |
4 | +org.eclipse.jdt.core.compiler.codegen.targetPlatform=1.7 | |
5 | 5 | org.eclipse.jdt.core.compiler.codegen.unusedLocal=preserve |
6 | -org.eclipse.jdt.core.compiler.compliance=1.5 | |
6 | +org.eclipse.jdt.core.compiler.compliance=1.7 | |
7 | 7 | org.eclipse.jdt.core.compiler.debug.lineNumber=generate |
8 | 8 | org.eclipse.jdt.core.compiler.debug.localVariable=generate |
9 | 9 | org.eclipse.jdt.core.compiler.debug.sourceFile=generate |
10 | 10 | org.eclipse.jdt.core.compiler.problem.assertIdentifier=error |
11 | +org.eclipse.jdt.core.compiler.problem.enablePreviewFeatures=disabled | |
11 | 12 | org.eclipse.jdt.core.compiler.problem.enumIdentifier=error |
12 | 13 | org.eclipse.jdt.core.compiler.problem.forbiddenReference=warning |
14 | +org.eclipse.jdt.core.compiler.problem.reportPreviewFeatures=ignore | |
13 | 15 | org.eclipse.jdt.core.compiler.release=disabled |
14 | -org.eclipse.jdt.core.compiler.source=1.5 | |
16 | +org.eclipse.jdt.core.compiler.source=1.7 | ... | ... |
No preview for this file type
No preview for this file type
pom.xml
... | ... | @@ -21,5 +21,17 @@ |
21 | 21 | <version>3.8.1</version> |
22 | 22 | <scope>test</scope> |
23 | 23 | </dependency> |
24 | + <dependency> | |
25 | + <groupId>jakarta.xml.bind</groupId> | |
26 | + <artifactId>jakarta.xml.bind-api</artifactId> | |
27 | + <version>2.3.2</version> | |
28 | +</dependency> | |
29 | + | |
30 | +<!-- Runtime, com.sun.xml.bind module --> | |
31 | +<dependency> | |
32 | + <groupId>org.glassfish.jaxb</groupId> | |
33 | + <artifactId>jaxb-runtime</artifactId> | |
34 | + <version>2.3.2</version> | |
35 | +</dependency> | |
24 | 36 | </dependencies> |
25 | 37 | </project> | ... | ... |
src/main/java/sc/diaryFinger/App.java
... | ... | @@ -115,7 +115,7 @@ public class App |
115 | 115 | // sql += "where "+checkDay+" = DAY(CHECKTIME) "; |
116 | 116 | // sql += "AND "+checkMonth+" = MONTH(CHECKTIME) "; |
117 | 117 | // sql += "AND "+checkYear+" = YEAR(CHECKTIME) "; |
118 | - sql += "AND (u.SSN LIKE 'TSD%' or u.SSN LIKE 'SC%' ) "; | |
118 | + sql += "AND (u.SSN LIKE 'TSD%' or u.SSN LIKE 'SC%' or u.SSN LIKE 'SS%' ) "; | |
119 | 119 | sql += "order by CHECKTIME asc "; |
120 | 120 | |
121 | 121 | System.out.println(sql); | ... | ... |
target/classes/META-INF/MANIFEST.MF
target/classes/META-INF/maven/sc/diaryFinger/pom.properties
1 | 1 | #Generated by Maven Integration for Eclipse |
2 | -#Fri Mar 20 10:28:56 ICT 2020 | |
3 | -version=0.0.1-SNAPSHOT | |
4 | -groupId=sc | |
2 | +#Mon Dec 21 17:35:23 ICT 2020 | |
3 | +m2e.projectLocation=C\:\\Users\\Atom\\Documents\\diaryfinger | |
5 | 4 | m2e.projectName=diaryFinger |
6 | -m2e.projectLocation=C\:\\Users\\Sc\\eclipse-workspace\\diaryFinger | |
5 | +groupId=sc | |
7 | 6 | artifactId=diaryFinger |
7 | +version=0.0.1-SNAPSHOT | ... | ... |
target/classes/META-INF/maven/sc/diaryFinger/pom.xml
... | ... | @@ -21,5 +21,17 @@ |
21 | 21 | <version>3.8.1</version> |
22 | 22 | <scope>test</scope> |
23 | 23 | </dependency> |
24 | + <dependency> | |
25 | + <groupId>jakarta.xml.bind</groupId> | |
26 | + <artifactId>jakarta.xml.bind-api</artifactId> | |
27 | + <version>2.3.2</version> | |
28 | +</dependency> | |
29 | + | |
30 | +<!-- Runtime, com.sun.xml.bind module --> | |
31 | +<dependency> | |
32 | + <groupId>org.glassfish.jaxb</groupId> | |
33 | + <artifactId>jaxb-runtime</artifactId> | |
34 | + <version>2.3.2</version> | |
35 | +</dependency> | |
24 | 36 | </dependencies> |
25 | 37 | </project> | ... | ... |
target/classes/sc/diaryFinger/App.class
No preview for this file type
target/test-classes/sc/diaryFinger/AppTest.class
No preview for this file type