Browse Source

Merge branch 'dev_1118' of http://121.42.41.42:7070/r/esua-epdc-cloud into dev_1118

dev
王金鹏 6 years ago
parent
commit
aab39ac9c7
  1. 64
      esua-epdc/epdc-module/epdc-demo/epdc-demo-server/pom.xml
  2. 2
      esua-epdc/epdc-module/epdc-events/epdc-events-server/src/main/resources/mapper/issue/IssueDao.xml
  3. 2
      esua-epdc/epdc-module/epdc-events/epdc-events-server/src/main/resources/mapper/item/ItemDao.xml

64
esua-epdc/epdc-module/epdc-demo/epdc-demo-server/pom.xml

@ -84,38 +84,38 @@
<skipTests>true</skipTests> <skipTests>true</skipTests>
</configuration> </configuration>
</plugin> </plugin>
<plugin> <!-- <plugin>-->
<groupId>org.apache.maven.plugins</groupId> <!-- <groupId>org.apache.maven.plugins</groupId>-->
<artifactId>maven-deploy-plugin</artifactId> <!-- <artifactId>maven-deploy-plugin</artifactId>-->
<configuration> <!-- <configuration>-->
<skip>true</skip> <!-- <skip>true</skip>-->
</configuration> <!-- </configuration>-->
</plugin> <!-- </plugin>-->
<plugin> <!-- <plugin>-->
<groupId>com.spotify</groupId> <!-- <groupId>com.spotify</groupId>-->
<artifactId>dockerfile-maven-plugin</artifactId> <!-- <artifactId>dockerfile-maven-plugin</artifactId>-->
<version>${dockerfile-maven-plugin.version}</version> <!-- <version>${dockerfile-maven-plugin.version}</version>-->
<executions> <!-- <executions>-->
<execution> <!-- <execution>-->
<id>default</id> <!-- <id>default</id>-->
<goals> <!-- <goals>-->
<!--如果package时不想用docker打包,就注释掉这个goal--> <!-- &lt;!&ndash;如果package时不想用docker打包,就注释掉这个goal&ndash;&gt;-->
<goal>build</goal> <!-- <goal>build</goal>-->
<goal>push</goal> <!-- <goal>push</goal>-->
</goals> <!-- </goals>-->
</execution> <!-- </execution>-->
</executions> <!-- </executions>-->
<configuration> <!-- <configuration>-->
<username>admin</username> <!-- <username>admin</username>-->
<password>elink888</password> <!-- <password>elink888</password>-->
<repository>47.104.85.99:9002/repository/docker-private/</repository> <!-- <repository>47.104.85.99:9002/repository/docker-private/</repository>-->
<tag>latest</tag> <!-- <tag>latest</tag>-->
<buildArgs> <!-- <buildArgs>-->
<!--提供参数向Dockerfile传递--> <!-- &lt;!&ndash;提供参数向Dockerfile传递&ndash;&gt;-->
<JAR_FILE>target/${project.build.finalName}.jar</JAR_FILE> <!-- <JAR_FILE>target/${project.build.finalName}.jar</JAR_FILE>-->
</buildArgs> <!-- </buildArgs>-->
</configuration> <!-- </configuration>-->
</plugin> <!-- </plugin>-->
</plugins> </plugins>
</build> </build>

2
esua-epdc/epdc-module/epdc-events/epdc-events-server/src/main/resources/mapper/issue/IssueDao.xml

@ -293,7 +293,7 @@
SELECT SELECT
CREATED_TIME AS createdTime, CREATED_TIME AS createdTime,
advice, advice,
case STATE WHEN 0 THEN '【审核】' WHEN 1 THEN '【反馈】' WHEN '2' THEN '【关闭】' ELSE '' END AS stateName case STATE WHEN 0 THEN '【审核】' WHEN 1 THEN '【反馈】' WHEN '2' THEN '【关闭】' WHEN 3 THEN '【转议题】' ELSE '' END AS stateName
FROM FROM
epdc_issue_handle epdc_issue_handle
WHERE WHERE

2
esua-epdc/epdc-module/epdc-events/epdc-events-server/src/main/resources/mapper/item/ItemDao.xml

@ -507,7 +507,7 @@
CREATED_TIME AS createdTime, CREATED_TIME AS createdTime,
advice, advice,
HANDLER_DEPT AS handlerDept, HANDLER_DEPT AS handlerDept,
CASE STATE WHEN 0 THEN '【审核通过】' WHEN 1 THEN '【反馈】' WHEN 2 THEN '【已关闭】' ELSE '' END AS progressName, CASE STATE WHEN 0 THEN '【审核通过】' WHEN 1 THEN '【反馈】' WHEN 2 THEN '【已关闭】' WHEN 3 THEN '【转议题】' ELSE '' END AS progressName,
null AS DEPT_NAME null AS DEPT_NAME
FROM FROM
epdc_issue_handle epdc_issue_handle

Loading…
Cancel
Save