Skip to content

Commit 4595ace

Browse files
committed
ssm_source_first_commit
1 parent be7d732 commit 4595ace

File tree

576 files changed

+76692
-0
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

576 files changed

+76692
-0
lines changed

manong.iml

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,9 @@
1+
<?xml version="1.0" encoding="UTF-8"?>
2+
<module type="WEB_MODULE" version="4">
3+
<component name="NewModuleRootManager" inherit-compiler-output="true">
4+
<exclude-output />
5+
<content url="file://$MODULE_DIR$" />
6+
<orderEntry type="inheritedJdk" />
7+
<orderEntry type="sourceFolder" forTests="false" />
8+
</component>
9+
</module>

manong_common/manong_common.iml

Lines changed: 15 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,15 @@
1+
<?xml version="1.0" encoding="UTF-8"?>
2+
<module org.jetbrains.idea.maven.project.MavenProjectsManager.isMavenModule="true" type="JAVA_MODULE" version="4">
3+
<component name="NewModuleRootManager" LANGUAGE_LEVEL="JDK_1_8" inherit-compiler-output="false">
4+
<output url="file://$MODULE_DIR$/target/classes" />
5+
<output-test url="file://$MODULE_DIR$/target/test-classes" />
6+
<content url="file://$MODULE_DIR$">
7+
<sourceFolder url="file://$MODULE_DIR$/src/main/java" isTestSource="false" />
8+
<sourceFolder url="file://$MODULE_DIR$/src/main/resources" type="java-resource" />
9+
<sourceFolder url="file://$MODULE_DIR$/src/test/java" isTestSource="true" />
10+
<excludeFolder url="file://$MODULE_DIR$/target" />
11+
</content>
12+
<orderEntry type="inheritedJdk" />
13+
<orderEntry type="sourceFolder" forTests="false" />
14+
</component>
15+
</module>

manong_common/pom.xml

Lines changed: 16 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,16 @@
1+
<?xml version="1.0" encoding="UTF-8"?>
2+
<project xmlns="http://maven.apache.org/POM/4.0.0"
3+
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
4+
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
5+
<parent>
6+
<artifactId>manong_parent</artifactId>
7+
<groupId>com.kendinghui</groupId>
8+
<version>1.0-SNAPSHOT</version>
9+
<relativePath>../manong_parent/pom.xml</relativePath>
10+
</parent>
11+
<modelVersion>4.0.0</modelVersion>
12+
13+
<artifactId>manong_common</artifactId>
14+
15+
16+
</project>
Lines changed: 44 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,44 @@
1+
package pojo;
2+
3+
/**
4+
* Created by wistbean on 2018/10/2.
5+
*/
6+
public class EasyUITree {
7+
8+
private int id;
9+
private String text;
10+
private String state;
11+
private String attributes;
12+
13+
public String getAttributes() {
14+
return attributes;
15+
}
16+
17+
public void setAttributes(String attributes) {
18+
this.attributes = attributes;
19+
}
20+
21+
public int getId() {
22+
return id;
23+
}
24+
25+
public void setId(int id) {
26+
this.id = id;
27+
}
28+
29+
public String getText() {
30+
return text;
31+
}
32+
33+
public void setText(String text) {
34+
this.text = text;
35+
}
36+
37+
public String getState() {
38+
return state;
39+
}
40+
41+
public void setState(String state) {
42+
this.state = state;
43+
}
44+
}
Lines changed: 47 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,47 @@
1+
package pojo;
2+
3+
import java.util.ArrayList;
4+
import java.util.List;
5+
6+
/**
7+
* Created by wistbean on 2018/10/15.
8+
*/
9+
public class ResponseJsonResult {
10+
11+
private int status = 200;
12+
private String msg;
13+
private Object obj;
14+
private List<?> list = new ArrayList<Object>();
15+
16+
public int getStatus() {
17+
return status;
18+
}
19+
20+
public void setStatus(int status) {
21+
this.status = status;
22+
}
23+
24+
public String getMsg() {
25+
return msg;
26+
}
27+
28+
public void setMsg(String msg) {
29+
this.msg = msg;
30+
}
31+
32+
public Object getObj() {
33+
return obj;
34+
}
35+
36+
public void setObj(Object obj) {
37+
this.obj = obj;
38+
}
39+
40+
public List<?> getList() {
41+
return list;
42+
}
43+
44+
public void setList(List<?> list) {
45+
this.list = list;
46+
}
47+
}
1.07 KB
Binary file not shown.
1.4 KB
Binary file not shown.
2.88 KB
Binary file not shown.
Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
#Generated by Maven
2+
#Mon Oct 15 18:16:26 CST 2018
3+
version=1.0-SNAPSHOT
4+
groupId=com.kendinghui
5+
artifactId=manong_common
Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,2 @@
1+
pojo\EasyUITree.class
2+
pojo\ResponseJsonResult.class

0 commit comments

Comments
 (0)