Commit c4db8d4bc969d0499827dd962d03b2966e411527
1 parent
d3a8bd5a6d
Exists in
master
and in
6 other branches
改变接口展现形式返回新的数据结构
Showing 9 changed files with 202 additions and 0 deletions
- platform-operate-api/.classpath
- platform-operate-api/.gitignore
- platform-operate-api/.project
- platform-operate-api/.settings/org.eclipse.core.resources.prefs
- platform-operate-api/.settings/org.eclipse.jdt.core.prefs
- platform-operate-api/.settings/org.eclipse.wst.common.component
- platform-operate-api/.settings/org.eclipse.wst.common.project.facet.core.xml
- platform-operate-api/src/main/java/com/lyms/hospitalapi/pojo/CheckByDate.java
- platform-operate-api/src/main/java/com/lyms/hospitalapi/pojo/CheckType.java
platform-operate-api/.classpath
View file @
c4db8d4
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="optional" value="true"/> | |
17 | + <attribute name="maven.pomderived" value="true"/> | |
18 | + </attributes> | |
19 | + </classpathentry> | |
20 | + <classpathentry kind="con" path="org.eclipse.jdt.launching.JRE_CONTAINER/org.eclipse.jdt.internal.debug.ui.launcher.StandardVMType/JavaSE-1.7"> | |
21 | + <attributes> | |
22 | + <attribute name="maven.pomderived" value="true"/> | |
23 | + </attributes> | |
24 | + </classpathentry> | |
25 | + <classpathentry kind="con" path="org.eclipse.m2e.MAVEN2_CLASSPATH_CONTAINER"> | |
26 | + <attributes> | |
27 | + <attribute name="maven.pomderived" value="true"/> | |
28 | + </attributes> | |
29 | + </classpathentry> | |
30 | + <classpathentry kind="con" path="org.eclipse.jst.j2ee.internal.web.container"/> | |
31 | + <classpathentry kind="con" path="org.eclipse.jst.j2ee.internal.module.container"/> | |
32 | + <classpathentry kind="output" path="target/classes"/> | |
33 | +</classpath> |
platform-operate-api/.gitignore
View file @
c4db8d4
1 | +/target |
platform-operate-api/.project
View file @
c4db8d4
1 | +<?xml version="1.0" encoding="UTF-8"?> | |
2 | +<projectDescription> | |
3 | + <name>platform-operate-api</name> | |
4 | + <comment></comment> | |
5 | + <projects> | |
6 | + </projects> | |
7 | + <buildSpec> | |
8 | + <buildCommand> | |
9 | + <name>org.eclipse.wst.jsdt.core.javascriptValidator</name> | |
10 | + <arguments> | |
11 | + </arguments> | |
12 | + </buildCommand> | |
13 | + <buildCommand> | |
14 | + <name>org.eclipse.jdt.core.javabuilder</name> | |
15 | + <arguments> | |
16 | + </arguments> | |
17 | + </buildCommand> | |
18 | + <buildCommand> | |
19 | + <name>org.eclipse.wst.common.project.facet.core.builder</name> | |
20 | + <arguments> | |
21 | + </arguments> | |
22 | + </buildCommand> | |
23 | + <buildCommand> | |
24 | + <name>com.genuitec.eclipse.springframework.springbuilder</name> | |
25 | + <arguments> | |
26 | + </arguments> | |
27 | + </buildCommand> | |
28 | + <buildCommand> | |
29 | + <name>org.eclipse.wst.validation.validationbuilder</name> | |
30 | + <arguments> | |
31 | + </arguments> | |
32 | + </buildCommand> | |
33 | + <buildCommand> | |
34 | + <name>com.genuitec.eclipse.j2eedt.core.DeploymentDescriptorValidator</name> | |
35 | + <arguments> | |
36 | + </arguments> | |
37 | + </buildCommand> | |
38 | + <buildCommand> | |
39 | + <name>com.genuitec.eclipse.ast.deploy.core.DeploymentBuilder</name> | |
40 | + <arguments> | |
41 | + </arguments> | |
42 | + </buildCommand> | |
43 | + <buildCommand> | |
44 | + <name>org.eclipse.m2e.core.maven2Builder</name> | |
45 | + <arguments> | |
46 | + </arguments> | |
47 | + </buildCommand> | |
48 | + </buildSpec> | |
49 | + <natures> | |
50 | + <nature>org.eclipse.jem.workbench.JavaEMFNature</nature> | |
51 | + <nature>org.eclipse.wst.common.modulecore.ModuleCoreNature</nature> | |
52 | + <nature>com.genuitec.eclipse.springframework.springnature</nature> | |
53 | + <nature>org.eclipse.jdt.core.javanature</nature> | |
54 | + <nature>org.eclipse.m2e.core.maven2Nature</nature> | |
55 | + <nature>org.eclipse.wst.common.project.facet.core.nature</nature> | |
56 | + <nature>org.eclipse.wst.jsdt.core.jsNature</nature> | |
57 | + </natures> | |
58 | +</projectDescription> |
platform-operate-api/.settings/org.eclipse.core.resources.prefs
View file @
c4db8d4
platform-operate-api/.settings/org.eclipse.jdt.core.prefs
View file @
c4db8d4
1 | +eclipse.preferences.version=1 | |
2 | +org.eclipse.jdt.core.compiler.codegen.inlineJsrBytecode=enabled | |
3 | +org.eclipse.jdt.core.compiler.codegen.targetPlatform=1.7 | |
4 | +org.eclipse.jdt.core.compiler.compliance=1.7 | |
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.source=1.7 |
platform-operate-api/.settings/org.eclipse.wst.common.component
View file @
c4db8d4
1 | +<?xml version="1.0" encoding="UTF-8"?><project-modules id="moduleCoreId" project-version="1.5.0"> | |
2 | + <wb-module deploy-name="platform-operate-api"> | |
3 | + <wb-resource deploy-path="/" source-path="/src/main/webapp" tag="defaultRootSource"/> | |
4 | + <wb-resource deploy-path="/WEB-INF/classes" source-path="/src/main/java"/> | |
5 | + <wb-resource deploy-path="/WEB-INF/classes" source-path="/src/main/resources"/> | |
6 | + <dependent-module archiveName="platform-common-1.0.1.jar" deploy-path="/WEB-INF/lib" handle="module:/resource/platform-common/platform-common"> | |
7 | + <dependency-type>uses</dependency-type> | |
8 | + </dependent-module> | |
9 | + <dependent-module archiveName="platform-dal-1.0.1.jar" deploy-path="/WEB-INF/lib" handle="module:/resource/platform-dal/platform-dal"> | |
10 | + <dependency-type>uses</dependency-type> | |
11 | + </dependent-module> | |
12 | + <dependent-module archiveName="platform-biz-service-1.0.1.jar" deploy-path="/WEB-INF/lib" handle="module:/resource/platform-biz-service/platform-biz-service"> | |
13 | + <dependency-type>uses</dependency-type> | |
14 | + </dependent-module> | |
15 | + <dependent-module archiveName="platform-biz-patient-service-1.0.1.jar" deploy-path="/WEB-INF/lib" handle="module:/resource/platform-biz-patient-service/platform-biz-patient-service"> | |
16 | + <dependency-type>uses</dependency-type> | |
17 | + </dependent-module> | |
18 | + <dependent-module archiveName="platform-reportData-1.0.1.jar" deploy-path="/WEB-INF/lib" handle="module:/resource/platform-reportData/platform-reportData"> | |
19 | + <dependency-type>uses</dependency-type> | |
20 | + </dependent-module> | |
21 | + <property name="context-root" value="platform-operate-api"/> | |
22 | + <property name="java-output-path" value="/platform-operate-api/target/classes"/> | |
23 | + </wb-module> | |
24 | +</project-modules> |
platform-operate-api/.settings/org.eclipse.wst.common.project.facet.core.xml
View file @
c4db8d4
1 | +<?xml version="1.0" encoding="UTF-8"?> | |
2 | +<faceted-project> | |
3 | + <fixed facet="wst.jsdt.web"/> | |
4 | + <installed facet="java" version="1.7"/> | |
5 | + <installed facet="jst.web" version="2.5"/> | |
6 | + <installed facet="maven" version="1.0"/> | |
7 | + <installed facet="wst.jsdt.web" version="1.0"/> | |
8 | +</faceted-project> |
platform-operate-api/src/main/java/com/lyms/hospitalapi/pojo/CheckByDate.java
View file @
c4db8d4
1 | +package com.lyms.hospitalapi.pojo; | |
2 | + | |
3 | +import java.util.List; | |
4 | + | |
5 | +/** | |
6 | + * gxk | |
7 | + * @author Administrator | |
8 | + * 根据日期(检查项目)分类最终返回的对象 | |
9 | + */ | |
10 | + | |
11 | +public class CheckByDate { | |
12 | + | |
13 | + private String time; | |
14 | + private List<CheckType> types; | |
15 | + | |
16 | + | |
17 | + | |
18 | + public String getTime() { | |
19 | + return time; | |
20 | + } | |
21 | + public void setTime(String time) { | |
22 | + this.time = time; | |
23 | + } | |
24 | + public List<CheckType> getTypes() { | |
25 | + return types; | |
26 | + } | |
27 | + public void setTypes(List<CheckType> types) { | |
28 | + this.types = types; | |
29 | + } | |
30 | + | |
31 | + | |
32 | + | |
33 | +} |
platform-operate-api/src/main/java/com/lyms/hospitalapi/pojo/CheckType.java
View file @
c4db8d4
1 | +package com.lyms.hospitalapi.pojo; | |
2 | + | |
3 | +import java.util.List; | |
4 | + | |
5 | +/** | |
6 | + * gxk | |
7 | + * @author Administrator | |
8 | + * 根据日期(检查项目)分类的中间对象(第二层对象) | |
9 | + */ | |
10 | + | |
11 | +public class CheckType { | |
12 | + | |
13 | + private String type; | |
14 | + private List<CheckResponse> typeName; | |
15 | + | |
16 | + | |
17 | + public List<CheckResponse> getTypeName() { | |
18 | + return typeName; | |
19 | + } | |
20 | + | |
21 | + public void setTypeName(List<CheckResponse> typeName) { | |
22 | + this.typeName = typeName; | |
23 | + } | |
24 | + | |
25 | + public String getType() { | |
26 | + return type; | |
27 | + } | |
28 | + | |
29 | + public void setType(String type) { | |
30 | + this.type = type; | |
31 | + } | |
32 | + | |
33 | +} |