作者 朱兆平

init

正在显示 29 个修改的文件 包含 3281 行增加0 行删除
HELP.md
target/
!.mvn/wrapper/maven-wrapper.jar
!**/src/main/**
!**/src/test/**
### STS ###
.apt_generated
.classpath
.factorypath
.project
.settings
.springBeans
.sts4-cache
### IntelliJ IDEA ###
.idea
*.iws
*.iml
*.ipr
### NetBeans ###
/nbproject/private/
/nbbuild/
/dist/
/nbdist/
/.nb-gradle/
build/
### VS Code ###
.vscode/
... ...
# 后勤管理平台-客服工单服务
... ...
<?xml version="1.0" encoding="UTF-8"?>
<!--参考文档链接:https://blog.csdn.net/qq_34912478/article/details/80877132-->
<!-- 日志级别从低到高分为TRACE < DEBUG < INFO < WARN < ERROR < FATAL,如果设置为WARN,则低于WARN的信息都不会输出 -->
<!-- scan:当此属性设置为true时,配置文件如果发生改变,将会被重新加载,默认值为true -->
<!-- scanPeriod:设置监测配置文件是否有修改的时间间隔,如果没有给出时间单位,默认单位是毫秒。当scan为true时,此属性生效。默认的时间间隔为1分钟。 -->
<!-- debug:当此属性设置为true时,将打印出logback内部日志信息,实时查看logback运行状态。默认值为false。 -->
<configuration scan="true" scanPeriod="10 seconds">
<!--<include resource="org/springframework/boot/logging/logback/base.xml" />-->
<contextName>logback</contextName>
<!-- name的值是变量的名称,value的值时变量定义的值。通过定义的值会被插入到logger上下文中。定义变量后,可以使“${}”来使用变量。 -->
<property name="log.path" value="./logs" />
<!-- 彩色日志 -->
<!-- 彩色日志依赖的渲染类 -->
<conversionRule conversionWord="clr" converterClass="org.springframework.boot.logging.logback.ColorConverter" />
<conversionRule conversionWord="wex" converterClass="org.springframework.boot.logging.logback.WhitespaceThrowableProxyConverter" />
<conversionRule conversionWord="wEx" converterClass="org.springframework.boot.logging.logback.ExtendedWhitespaceThrowableProxyConverter" />
<!-- 彩色日志格式 -->
<property name="CONSOLE_LOG_PATTERN" value="${CONSOLE_LOG_PATTERN:-%clr(%d{yyyy-MM-dd HH:mm:ss.SSS}){faint} %clr(${LOG_LEVEL_PATTERN:-%5p}) %clr(${PID:- }){magenta} %clr(---){faint} %clr([%15.15t]){faint} %clr(%-40.40logger{39}){cyan} %clr(:){faint} %m%n${LOG_EXCEPTION_CONVERSION_WORD:-%wEx}}"/>
<!--输出到控制台-->
<appender name="CONSOLE" class="ch.qos.logback.core.ConsoleAppender">
<!--此日志appender是为开发使用,只配置最底级别,控制台输出的日志级别是大于或等于此级别的日志信息-->
<filter class="ch.qos.logback.classic.filter.ThresholdFilter">
<level>trace</level>
</filter>
<encoder>
<Pattern>${CONSOLE_LOG_PATTERN}</Pattern>
<!-- 设置字符集 windows系统这里设置成GBK-->
<charset>UTF-8</charset>
</encoder>
</appender>
<!--输出到文件-->
<!-- 时间滚动输出 level为 DEBUG 日志 -->
<appender name="DEBUG_FILE" class="ch.qos.logback.core.rolling.RollingFileAppender">
<!-- 正在记录的日志文件的路径及文件名 -->
<file>${log.path}/log_debug.log</file>
<!--日志文件输出格式-->
<encoder>
<pattern>%d{yyyy-MM-dd HH:mm:ss.SSS} [%thread] %-5level %logger{50} - %msg%n</pattern>
<charset>UTF-8</charset> <!-- 设置字符集 -->
</encoder>
<!-- 日志记录器的滚动策略,按日期,按大小记录 -->
<rollingPolicy class="ch.qos.logback.core.rolling.TimeBasedRollingPolicy">
<!-- 日志归档 -->
<fileNamePattern>${log.path}/debug/log-debug-%d{yyyy-MM-dd}.%i.log</fileNamePattern>
<timeBasedFileNamingAndTriggeringPolicy class="ch.qos.logback.core.rolling.SizeAndTimeBasedFNATP">
<maxFileSize>100MB</maxFileSize>
</timeBasedFileNamingAndTriggeringPolicy>
<!--日志文件保留天数-->
<maxHistory>15</maxHistory>
</rollingPolicy>
<!-- 此日志文件只记录debug级别的 -->
<filter class="ch.qos.logback.classic.filter.LevelFilter">
<level>debug</level>
<onMatch>ACCEPT</onMatch>
<onMismatch>DENY</onMismatch>
</filter>
</appender>
<!-- 时间滚动输出 level为 INFO 日志 -->
<appender name="INFO_FILE" class="ch.qos.logback.core.rolling.RollingFileAppender">
<!-- 正在记录的日志文件的路径及文件名 -->
<file>${log.path}/log_info.log</file>
<!--日志文件输出格式-->
<encoder>
<pattern>%d{yyyy-MM-dd HH:mm:ss.SSS} [%thread] %-5level %logger{50} - %msg%n</pattern>
<charset>UTF-8</charset>
</encoder>
<!-- 日志记录器的滚动策略,按日期,按大小记录 -->
<rollingPolicy class="ch.qos.logback.core.rolling.TimeBasedRollingPolicy">
<!-- 每天日志归档路径以及格式 -->
<fileNamePattern>${log.path}/info/log-info-%d{yyyy-MM-dd}.%i.log</fileNamePattern>
<timeBasedFileNamingAndTriggeringPolicy class="ch.qos.logback.core.rolling.SizeAndTimeBasedFNATP">
<maxFileSize>100MB</maxFileSize>
</timeBasedFileNamingAndTriggeringPolicy>
<!--日志文件保留天数-->
<maxHistory>15</maxHistory>
</rollingPolicy>
<!-- 此日志文件只记录info级别的 -->
<filter class="ch.qos.logback.classic.filter.LevelFilter">
<level>info</level>
<onMatch>ACCEPT</onMatch>
<onMismatch>DENY</onMismatch>
</filter>
</appender>
<!-- 时间滚动输出 level为 WARN 日志 -->
<appender name="WARN_FILE" class="ch.qos.logback.core.rolling.RollingFileAppender">
<!-- 正在记录的日志文件的路径及文件名 -->
<file>${log.path}/log_warn.log</file>
<!--日志文件输出格式-->
<encoder>
<pattern>%d{yyyy-MM-dd HH:mm:ss.SSS} [%thread] %-5level %logger{50} - %msg%n</pattern>
<charset>UTF-8</charset> <!-- 此处设置字符集 -->
</encoder>
<!-- 日志记录器的滚动策略,按日期,按大小记录 -->
<rollingPolicy class="ch.qos.logback.core.rolling.TimeBasedRollingPolicy">
<fileNamePattern>${log.path}/warn/log-warn-%d{yyyy-MM-dd}.%i.log</fileNamePattern>
<timeBasedFileNamingAndTriggeringPolicy class="ch.qos.logback.core.rolling.SizeAndTimeBasedFNATP">
<maxFileSize>100MB</maxFileSize>
</timeBasedFileNamingAndTriggeringPolicy>
<!--日志文件保留天数-->
<maxHistory>15</maxHistory>
</rollingPolicy>
<!-- 此日志文件只记录warn级别的 -->
<filter class="ch.qos.logback.classic.filter.LevelFilter">
<level>warn</level>
<onMatch>ACCEPT</onMatch>
<onMismatch>DENY</onMismatch>
</filter>
</appender>
<!-- 时间滚动输出 level为 ERROR 日志 -->
<appender name="ERROR_FILE" class="ch.qos.logback.core.rolling.RollingFileAppender">
<!-- 正在记录的日志文件的路径及文件名 -->
<file>${log.path}/log_error.log</file>
<!--日志文件输出格式-->
<encoder>
<pattern>%d{yyyy-MM-dd HH:mm:ss.SSS} [%thread] %-5level %logger{50} - %msg%n</pattern>
<charset>UTF-8</charset> <!-- 此处设置字符集 -->
</encoder>
<!-- 日志记录器的滚动策略,按日期,按大小记录 -->
<rollingPolicy class="ch.qos.logback.core.rolling.TimeBasedRollingPolicy">
<fileNamePattern>${log.path}/error/log-error-%d{yyyy-MM-dd}.%i.log</fileNamePattern>
<timeBasedFileNamingAndTriggeringPolicy class="ch.qos.logback.core.rolling.SizeAndTimeBasedFNATP">
<maxFileSize>100MB</maxFileSize>
</timeBasedFileNamingAndTriggeringPolicy>
<!--日志文件保留天数-->
<maxHistory>15</maxHistory>
</rollingPolicy>
<!-- 此日志文件只记录ERROR级别的 -->
<filter class="ch.qos.logback.classic.filter.LevelFilter">
<level>ERROR</level>
<onMatch>ACCEPT</onMatch>
<onMismatch>DENY</onMismatch>
</filter>
</appender>
<!-- 时间滚动输出 level为 trace 日志 -->
<appender name="TRACE_FILE" class="ch.qos.logback.core.rolling.RollingFileAppender">
<!-- 正在记录的日志文件的路径及文件名 -->
<file>${log.path}/log_trace.log</file>
<!--日志文件输出格式-->
<encoder>
<pattern>%d{yyyy-MM-dd HH:mm:ss.SSS} [%thread] %-5level %logger{50} - %msg%n</pattern>
<charset>UTF-8</charset> <!-- 此处设置字符集 -->
</encoder>
<!-- 日志记录器的滚动策略,按日期,按大小记录 -->
<rollingPolicy class="ch.qos.logback.core.rolling.TimeBasedRollingPolicy">
<fileNamePattern>${log.path}/trace/log-trace-%d{yyyy-MM-dd}.%i.log</fileNamePattern>
<timeBasedFileNamingAndTriggeringPolicy class="ch.qos.logback.core.rolling.SizeAndTimeBasedFNATP">
<maxFileSize>100MB</maxFileSize>
</timeBasedFileNamingAndTriggeringPolicy>
<!--日志文件保留天数-->
<maxHistory>15</maxHistory>
</rollingPolicy>
<!-- 此日志文件只记录trace级别的 -->
<filter class="ch.qos.logback.classic.filter.LevelFilter">
<level>TRACE</level>
<onMatch>ACCEPT</onMatch>
<onMismatch>DENY</onMismatch>
</filter>
</appender>
<!--
<logger>用来设置某一个包或者具体的某一个类的日志打印级别、
以及指定<appender>。<logger>仅有一个name属性,
一个可选的level和一个可选的addtivity属性。
name:用来指定受此logger约束的某一个包或者具体的某一个类。
level:用来设置打印级别,大小写无关:TRACE, DEBUG, INFO, WARN, ERROR, ALL 和 OFF,
还有一个特俗值INHERITED或者同义词NULL,代表强制执行上级的级别。
如果未设置此属性,那么当前logger将会继承上级的级别。
addtivity:是否向上级logger传递打印信息。默认是true。
-->
<!--<logger name="org.springframework.web" level="info"/>-->
<!--<logger name="org.springframework.scheduling.annotation.ScheduledAnnotationBeanPostProcessor" level="INFO"/>-->
<!--
使用mybatis的时候,sql语句是debug下才会打印,而这里我们只配置了info,所以想要查看sql语句的话,有以下两种操作:
第一种把<root level="info">改成<root level="DEBUG">这样就会打印sql,不过这样日志那边会出现很多其他消息
第二种就是单独给dao下目录配置debug模式,代码如下,这样配置sql语句会打印,其他还是正常info级别:
-->
<!--
root节点是必选节点,用来指定最基础的日志输出级别,只有一个level属性
level:用来设置打印级别,大小写无关:TRACE, DEBUG, INFO, WARN, ERROR, ALL 和 OFF,
不能设置为INHERITED或者同义词NULL。默认是DEBUG
可以包含零个或多个元素,标识这个appender将会添加到这个logger。
-->
<!--<logger name="com.tianbo.analysis" level="trace">-->
<!--<appender-ref ref="CONSOLE" />-->
<!--<appender-ref ref="TRACE_FILE" />-->
<!--<appender-ref ref="DEBUG_FILE" />-->
<!--<appender-ref ref="INFO_FILE" />-->
<!--<appender-ref ref="WARN_FILE" />-->
<!--<appender-ref ref="ERROR_FILE" />-->
<!--</logger>-->
<!--开发环境:打印控制台-->
<springProfile name="dev">
<logger name="org.springframework" level="info"/>
<logger name="org.apache.tomcat" level="info" />
<logger name="com.sunyo.customer.order.activity.dao" level="DEBUG" />
<root level="info">
<appender-ref ref="CONSOLE" />
<appender-ref ref="TRACE_FILE" />
<appender-ref ref="DEBUG_FILE" />
<appender-ref ref="INFO_FILE" />
<appender-ref ref="WARN_FILE" />
<appender-ref ref="ERROR_FILE" />
</root>
</springProfile>
<!--生产环境:输出到文件-->
<springProfile name="pro">
<logger name="org.springframework.boot" level="INFO"/>
<logger name="com.sunyo.customer.order.activity.dao" level="DEBUG" />
<root level="info">
<appender-ref ref="CONSOLE" />
<appender-ref ref="DEBUG_FILE" />
<appender-ref ref="INFO_FILE" />
<appender-ref ref="ERROR_FILE" />
<appender-ref ref="WARN_FILE" />
<appender-ref ref="TRACE_FILE" />
</root>
</springProfile>
</configuration>
\ No newline at end of file
... ...
<?xml version="1.0" encoding="UTF-8"?>
<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 https://maven.apache.org/xsd/maven-4.0.0.xsd">
<modelVersion>4.0.0</modelVersion>
<parent>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-parent</artifactId>
<version>2.2.0.BUILD-SNAPSHOT</version>
<relativePath/> <!-- lookup parent from repository -->
</parent>
<groupId>com.sunyo.customer</groupId>
<artifactId>order</artifactId>
<version>0.0.1-SNAPSHOT</version>
<name>order</name>
<description>工单系统</description>
<properties>
<java.version>1.8</java.version>
<druid.version>1.1.9</druid.version>
<spring-cloud.version>Greenwich.BUILD-SNAPSHOT</spring-cloud.version>
<lombok_sersion>1.18.6</lombok_sersion>
<fastjson_version>1.2.28</fastjson_version>
<swagger2_version>2.9.2</swagger2_version>
</properties>
<dependencies>
<dependency>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-thymeleaf</artifactId>
</dependency>
<dependency>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-web</artifactId>
</dependency>
<dependency>
<groupId>org.mybatis.spring.boot</groupId>
<artifactId>mybatis-spring-boot-starter</artifactId>
<version>2.1.1</version>
</dependency>
<!--clound-->
<dependency>
<groupId>org.springframework.cloud</groupId>
<artifactId>spring-cloud-starter-netflix-eureka-client</artifactId>
</dependency>
<!--数据库-->
<dependency>
<groupId>com.alibaba</groupId>
<artifactId>druid</artifactId>
<version>${druid.version}</version>
</dependency>
<dependency>
<groupId>com.alibaba</groupId>
<artifactId>fastjson</artifactId>
<version>${fastjson_version}</version>
</dependency>
<dependency>
<groupId>mysql</groupId>
<artifactId>mysql-connector-java</artifactId>
<scope>runtime</scope>
</dependency>
<dependency>
<groupId>org.mybatis</groupId>
<artifactId>mybatis</artifactId>
<version>3.4.6</version>
</dependency>
<!--分页插件-->
<dependency>
<groupId>com.github.pagehelper</groupId>
<artifactId>pagehelper-spring-boot-starter</artifactId>
<version>1.2.5</version>
</dependency>
<dependency>
<groupId>org.projectlombok</groupId>
<artifactId>lombok</artifactId>
<optional>true</optional>
</dependency>
<dependency>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-test</artifactId>
<scope>test</scope>
</dependency>
<dependency>
<groupId>com.tianbo</groupId>
<artifactId>util</artifactId>
<version>1.0-SNAPSHOT</version>
</dependency>
<!--<dependency>-->
<!--<groupId>com.fasterxml.jackson.core</groupId>-->
<!--<artifactId>jackson-core</artifactId>-->
<!--<version>2.9.5</version>-->
<!--</dependency>-->
<dependency>
<groupId>org.activiti</groupId>
<artifactId>activiti-spring-boot-starter-basic</artifactId>
<version>6.0.0</version>
</dependency>
<!--集成swagger2,下面两个spring的配置解决springboot包 与swagger2的包冲突问题,生产部署的时候记得要去掉此swagger2的配置,开发环境开启-->
<!-- https://mvnrepository.com/artifact/io.springfox/springfox-swagger-ui -->
<dependency>
<groupId>org.springframework.plugin</groupId>
<artifactId>spring-plugin-core</artifactId>
<version>1.2.0.RELEASE</version><!--$NO-MVN-MAN-VER$-->
</dependency>
<dependency>
<groupId>org.springframework.plugin</groupId>
<artifactId>spring-plugin-metadata</artifactId>
<version>1.2.0.RELEASE</version><!--$NO-MVN-MAN-VER$-->
</dependency>
<dependency>
<groupId>io.springfox</groupId>
<artifactId>springfox-swagger-ui</artifactId>
<version>${swagger2_version}</version>
<exclusions>
<exclusion>
<groupId>org.springframework.plugin</groupId>
<artifactId>spring-plugin-core</artifactId>
</exclusion>
<exclusion>
<groupId>org.springframework.plugin</groupId>
<artifactId>spring-plugin-metadata</artifactId>
</exclusion>
</exclusions>
</dependency>
<!-- https://mvnrepository.com/artifact/io.springfox/springfox-swagger2 -->
<dependency>
<groupId>io.springfox</groupId>
<artifactId>springfox-swagger2</artifactId>
<version>${swagger2_version}</version>
<!--2.9.2集成的是M1的这两个包,跟现在用的Greenwich.BUILD-SNAPSHOT的版本的SPRING boot2的版本包有冲突。去掉-->
<exclusions>
<exclusion>
<groupId>org.springframework.plugin</groupId>
<artifactId>spring-plugin-core</artifactId>
</exclusion>
<exclusion>
<groupId>org.springframework.plugin</groupId>
<artifactId>spring-plugin-metadata</artifactId>
</exclusion>
</exclusions>
</dependency>
<!--集成swagger2-->
</dependencies>
<dependencyManagement>
<dependencies>
<dependency>
<groupId>org.springframework.cloud</groupId>
<artifactId>spring-cloud-dependencies</artifactId>
<version>${spring-cloud.version}</version>
<type>pom</type>
<scope>import</scope>
</dependency>
</dependencies>
</dependencyManagement>
<build>
<plugins>
<plugin>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-maven-plugin</artifactId>
</plugin>
<!-- mybatis generator 自动生成代码插件 -->
<plugin>
<groupId>org.mybatis.generator</groupId>
<artifactId>mybatis-generator-maven-plugin</artifactId>
<version>1.3.2</version>
<configuration>
<configurationFile>${basedir}/src/main/resources/generator/generatorConfig.xml</configurationFile>
<overwrite>true</overwrite>
<verbose>true</verbose>
</configuration>
</plugin>
<!--Generate java code by xsd file-->
<plugin>
<groupId>org.jvnet.jaxb2.maven2</groupId>
<artifactId>maven-jaxb2-plugin</artifactId>
<version>0.14.0</version>
<configuration>
<schemaDirectory>src/main/resources/xsd</schemaDirectory>
<generateDirectory>src/main/java</generateDirectory>
<packageLevelAnnotations>false</packageLevelAnnotations>
<noFileHeader>true</noFileHeader>
<episode>false</episode>
<locale>en</locale>
</configuration>
<executions>
<execution>
<id>xsd1-generate</id>
<goals>
<goal>generate</goal>
</goals>
<configuration>
<schemaIncludes>
<include>DecMessage_ImportSave1.xsd</include>
</schemaIncludes>
<generatePackage>com.sunyo.customer.order.xsd1</generatePackage>
</configuration>
</execution>
</executions>
</plugin>
</plugins>
</build>
</project>
... ...
package com.sunyo.customer.order;
import org.activiti.spring.boot.SecurityAutoConfiguration;
import org.mybatis.spring.annotation.MapperScan;
import org.springframework.boot.SpringApplication;
import org.springframework.boot.autoconfigure.SpringBootApplication;
@SpringBootApplication(exclude = SecurityAutoConfiguration.class)
@MapperScan("com.sunyo.customer.order.activity.dao")
public class OrderApplication {
public static void main(String[] args) {
SpringApplication.run(OrderApplication.class, args);
}
}
... ...
package com.sunyo.customer.order;
import org.springframework.context.annotation.Bean;
import org.springframework.context.annotation.Configuration;
import springfox.documentation.builders.ApiInfoBuilder;
import springfox.documentation.builders.PathSelectors;
import springfox.documentation.builders.RequestHandlerSelectors;
import springfox.documentation.service.ApiInfo;
import springfox.documentation.service.Contact;
import springfox.documentation.spi.DocumentationType;
import springfox.documentation.spring.web.plugins.Docket;
import springfox.documentation.swagger2.annotations.EnableSwagger2;
@Configuration
@EnableSwagger2
public class Swagger2 {
//swagger2的配置文件,这里可以配置swagger2的一些基本的内容,比如扫描的包等等
@Bean
public Docket createRestApi() {
return new Docket(DocumentationType.SWAGGER_2)
.apiInfo(apiInfo())
.select()
//为当前包路径
.apis(RequestHandlerSelectors.basePackage("com.tianbo.warehouse.controller"))
.paths(PathSelectors.any())
.build();
}
//构建 api文档的详细信息函数,注意这里的注解引用的是哪个
private ApiInfo apiInfo() {
return new ApiInfoBuilder()
//页面标题
.title("Spring Boot 测试使用 Swagger2 构建RESTful API")
//创建人
.contact(new Contact("MarryFeng", "http://www.baidu.com", ""))
//版本号
.version("1.0")
//描述
.description("API 描述")
.build();
}
}
... ...
package com.sunyo.customer.order.activity.controller;
import org.springframework.web.bind.annotation.RequestMapping;
import org.springframework.web.bind.annotation.RequestMethod;
import org.springframework.web.bind.annotation.RestController;
@RestController
@RequestMapping("/activity")
public interface ActivityConsumerController {
/**
* 流程demo
* @return
*/
@RequestMapping(value="/startActivityDemo",method= RequestMethod.GET)
public boolean startActivityDemo();
}
... ...
package com.sunyo.customer.order.activity.controller;
import com.github.pagehelper.Page;
import com.github.pagehelper.PageHelper;
import com.github.pagehelper.PageInfo;
import com.sunyo.customer.order.activity.controller.response.ResultJson;
import com.sunyo.customer.order.activity.dao.JOBMapper;
import com.sunyo.customer.order.activity.dao.ProcessFormMapper;
import com.sunyo.customer.order.activity.model.JOB;
import com.sunyo.customer.order.activity.model.ProcessForm;
import org.springframework.beans.factory.annotation.Autowired;
import org.springframework.web.bind.annotation.*;
import java.util.List;
@RestController
@RequestMapping("/job")
public class JobController {
@Autowired
private JOBMapper jobMapper;
/**
* 流程demo
* @return
*/
@RequestMapping(value="/list",method= RequestMethod.GET)
public ResultJson<PageInfo> startActivityDemo(@RequestParam(value = "pageNum",required = false,defaultValue = "1")
int pageNum,
@RequestParam(value = "pageSize",required = false,defaultValue = "5")
int pageSize,
@RequestParam(value = "userid",required = false)
String userid,
@RequestParam(value = "processid",required = false)
String processid){
Page<JOB> page = PageHelper.startPage(pageNum,pageSize);
List<JOB> list= jobMapper.selectAllWithUser(userid,processid);
PageInfo<JOB> result = new PageInfo<JOB>(list);
return new ResultJson("200","success",result);
}
@PostMapping(value="/add")
public ResultJson add(JOB job){
int i =jobMapper.insertSelective(job);
return i==1 ? new ResultJson("200","添加工单成功") :new ResultJson("500","insert faild");
}
@PutMapping(value="start")
public ResultJson start(@RequestBody JOB job){
job.setComent("由"+job.getUser().getRealname()+"开始任务");
job.setAuditresuld(new Integer(1).byteValue());
int i =jobMapper.updateByPrimaryKeySelective(job);
return i==1 ? new ResultJson("200","添加工单成功") :new ResultJson("500","insert faild");
}
}
... ...
package com.sunyo.customer.order.activity.controller;
import com.github.pagehelper.Page;
import com.github.pagehelper.PageHelper;
import com.github.pagehelper.PageInfo;
import com.sunyo.customer.order.activity.controller.response.ResultJson;
import com.sunyo.customer.order.activity.dao.JOBMapper;
import com.sunyo.customer.order.activity.dao.ProcessFormMapper;
import com.sunyo.customer.order.activity.model.JOB;
import com.sunyo.customer.order.activity.model.ProcessForm;
import org.activiti.engine.*;
import org.activiti.engine.repository.DeploymentBuilder;
import org.activiti.engine.repository.ProcessDefinition;
import org.activiti.engine.runtime.ProcessInstance;
import org.activiti.engine.task.Task;
import org.springframework.beans.factory.annotation.Autowired;
import org.springframework.web.bind.annotation.*;
import java.util.HashMap;
import java.util.List;
import java.util.Map;
import java.util.UUID;
@RestController
@RequestMapping("/process")
public class ProcessController {
@Autowired
private ProcessFormMapper processFormMapper;
@Autowired
private JOBMapper jobMapper;
@Autowired
private RuntimeService runtimeService;
@Autowired
private TaskService taskService;
@Autowired
private IdentityService identityService;
@Autowired
private RepositoryService repositoryService;
@Autowired
private ProcessEngine processEngine;
@Autowired
private HistoryService historyService;
/**
* 流程demo
* @return
*/
@RequestMapping(value="/list",method= RequestMethod.GET)
public ResultJson<PageInfo> startActivityDemo(@RequestParam(value = "pageNum",required = false,defaultValue = "1")
int pageNum,
@RequestParam(value = "pageSize",required = false,defaultValue = "5")
int pageSize){
Page<ProcessForm> page = PageHelper.startPage(pageNum,pageSize);
List<ProcessForm> list= processFormMapper.selectAllWithUser();
PageInfo<ProcessForm> result = new PageInfo<ProcessForm>(list);
return new ResultJson("200","success",result);
}
@PostMapping(value="/add")
public ResultJson add(ProcessForm processForm){
String uuid = UUID.randomUUID().toString();
processForm.setFormid(uuid);
int i =processFormMapper.insertSelective(processForm);
if (processForm.getJobuserid()!=0){
JOB job = new JOB();
job.setAuditid(UUID.randomUUID().toString());
job.setTaskid(uuid);
job.setUserid(processForm.getJobuserid());
job.setAuditresuld(new Byte("0"));
jobMapper.insertSelective(job);
}
return i==1 ? new ResultJson("200","添加工单成功") :new ResultJson("500","insert faild");
}
@GetMapping(value = "activity")
public void activity(){
DeploymentBuilder builder = repositoryService.createDeployment();
builder.addClasspathResource("processes/customProcess.bpmn20.xml").name("customProcess");
builder.deploy();
List<ProcessDefinition> p = repositoryService.createProcessDefinitionQuery().list();
// 启动流程实例,字符串"vacation"是BPMN模型文件里process元素的id
ProcessInstance processInstance = runtimeService.startProcessInstanceByKey("customProcess");
//流程实例启动后,流程会跳转到请假申请节点
Task vacationApply = taskService.createTaskQuery().processInstanceId(processInstance.getId()).singleResult();
//设置请假申请任务的执行人
taskService.setAssignee(vacationApply.getId(), "zhangsan");
//设置流程参数:请假天数和表单ID
//流程引擎会根据请假天数days>3判断流程走向
//formId是用来将流程数据和表单数据关联起来
Map<String, Object> args = new HashMap<>();
args.put("days", "2");
args.put("formId", "4d8746da-f0c2-418d-86b4-e3646dcef6c9");
//完成请假申请任务
taskService.complete(vacationApply.getId(), args);
}
}
... ...
package com.sunyo.customer.order.activity.controller.response;
import com.alibaba.fastjson.JSON;
import org.springframework.core.MethodParameter;
import org.springframework.http.MediaType;
import org.springframework.http.converter.HttpMessageConverter;
import org.springframework.http.server.ServerHttpRequest;
import org.springframework.http.server.ServerHttpResponse;
import org.springframework.web.servlet.mvc.method.annotation.ResponseBodyAdvice;
/**
* 统一拦截response接口返回数据
*/
//@ControllerAdvice
public class RestControllerResponseAdvice implements ResponseBodyAdvice<Object> {
/**
* //判断支持的类型,因为我们定义的BaseResponseVo 里面的data可能是任何类型,这里就不判断统一放过
* 如果你想对执行的返回体进行操作,可将上方的Object换成你自己的类型
* @param returnType
* @param converterType
* @return
*/
@Override
public boolean supports(MethodParameter returnType, Class<? extends HttpMessageConverter<?>> converterType){
return true;
}
@Override
public Object beforeBodyWrite(Object body, MethodParameter returnType, MediaType selectedContentType, Class<? extends HttpMessageConverter<?>> selectedConverterType, ServerHttpRequest request, ServerHttpResponse response){
// 对body进行封装处理
if (body instanceof String) {
String msg = (String) body;
ResultJson resultJson = new ResultJson("-1", msg);
// 因为在controller层中返回的是String类型,这边如果换成ResultJson的话,会导致StringMessageConverter方法类型转换异常,所以这边将对象转成字符串
return JSON.toJSONString(resultJson);
} else if (body instanceof Object) {
Object data = (Object) body;
ResultJson resultJson = new ResultJson(data);
return resultJson;
}
return body;
}
}
... ...
package com.sunyo.customer.order.activity.controller.response;
import lombok.Data;
import java.io.Serializable;
@Data
public class ResultJson<T> implements Serializable{
private static final long serialVersionUID = 1L;
// 状态码 正确为200
private String code = "200";
// 描述
private String msg = "";
private String error;
// 返回对象
private T data;
//返回的JWT
private String jwtToken;
public ResultJson() {
}
public ResultJson(String code) {
this.code = code;
}
public ResultJson(String code, String msg) {
this.code = code;
this.msg = msg;
}
public ResultJson(T data) {
this.data = data;
}
public ResultJson(String code, String msg, T data) {
this.code = code;
this.msg = msg;
this.data = data;
}
}
... ...
package com.sunyo.customer.order.activity.dao;
import com.sunyo.customer.order.activity.model.JOB;
import org.apache.ibatis.annotations.Param;
import java.util.List;
public interface JOBMapper {
int deleteByPrimaryKey(String auditid);
int insert(JOB record);
int insertSelective(JOB record);
JOB selectByPrimaryKey(String auditid);
List<JOB> selectAllWithUser(@Param("userid")String auditid,@Param("processid") String processid);
int updateByPrimaryKeySelective(JOB record);
int updateByPrimaryKey(JOB record);
//开始任务
int startJob(JOB record);
}
\ No newline at end of file
... ...
package com.sunyo.customer.order.activity.dao;
import com.sunyo.customer.order.activity.model.ProcessForm;
import java.util.List;
public interface ProcessFormMapper {
int deleteByPrimaryKey(ProcessForm key);
int insert(ProcessForm record);
int insertSelective(ProcessForm record);
ProcessForm selectByPrimaryKey(ProcessForm key);
List<ProcessForm> selectAllWithUser();
int updateByPrimaryKeySelective(ProcessForm record);
int updateByPrimaryKey(ProcessForm record);
}
\ No newline at end of file
... ...
package com.sunyo.customer.order.activity.dao;
import com.sunyo.customer.order.activity.model.USER;
public interface USERMapper {
int deleteByPrimaryKey(Integer userId);
int insert(USER record);
int insertSelective(USER record);
USER selectByPrimaryKey(Integer userId);
int updateByPrimaryKeySelective(USER record);
int updateByPrimaryKey(USER record);
}
\ No newline at end of file
... ...
package com.sunyo.customer.order.activity.model;
import com.fasterxml.jackson.annotation.JsonFormat;
import lombok.Data;
import org.springframework.format.annotation.DateTimeFormat;
import java.util.Date;
@Data
public class JOB {
private String auditid;
private String processinstanceid;
private String processid;
private String taskid;
private Integer userid;
private Byte auditresuld;
private String coment;
@DateTimeFormat(pattern = "yyyy-MM-dd hh:mm:ss")
@JsonFormat(pattern = "yyyy-MM-dd hh:mm:ss", timezone = "GMT+8")
private Date audittime;
private USER user;
private ProcessForm process;
//任务执行者ID
private Integer joduserd;
public String getAuditid() {
return auditid;
}
public void setAuditid(String auditid) {
this.auditid = auditid == null ? null : auditid.trim();
}
public String getProcessinstanceid() {
return processinstanceid;
}
public void setProcessinstanceid(String processinstanceid) {
this.processinstanceid = processinstanceid == null ? null : processinstanceid.trim();
}
public String getTaskid() {
return taskid;
}
public void setTaskid(String taskid) {
this.taskid = taskid == null ? null : taskid.trim();
}
public Integer getUserid() {
return userid;
}
public void setUserid(Integer userid) {
this.userid = userid;
}
public Byte getAuditresuld() {
return auditresuld;
}
public void setAuditresuld(Byte auditresuld) {
this.auditresuld = auditresuld;
}
public String getComent() {
return coment;
}
public void setComent(String coment) {
this.coment = coment == null ? null : coment.trim();
}
public Date getAudittime() {
return audittime;
}
public void setAudittime(Date audittime) {
this.audittime = audittime;
}
}
\ No newline at end of file
... ...
package com.sunyo.customer.order.activity.model;
import com.fasterxml.jackson.annotation.JsonFormat;
import lombok.Data;
import org.springframework.format.annotation.DateTimeFormat;
import java.util.Date;
@Data
public class ProcessForm{
private Integer userid;
private String processname;
@DateTimeFormat(pattern = "yyyy-MM-dd")
@JsonFormat(pattern = "yyyy-MM-dd", timezone = "GMT+8")
private Date begindate;
@DateTimeFormat(pattern = "yyyy-MM-dd")
@JsonFormat(pattern = "yyyy-MM-dd", timezone = "GMT+8")
private Date enddate;
private Byte vacationtype;
private String reason;
private Byte processstatus;
private Date createtime;
private Date updatetime;
private String formid;
private String processinstanceid;
private USER user;
private Integer jobuserid;
public String getFormid() {
return formid;
}
public void setFormid(String formid) {
this.formid = formid == null ? null : formid.trim();
}
public String getProcessinstanceid() {
return processinstanceid;
}
public void setProcessinstanceid(String processinstanceid) {
this.processinstanceid = processinstanceid == null ? null : processinstanceid.trim();
}
public Integer getUserid() {
return userid;
}
public void setUserid(Integer userid) {
this.userid = userid;
}
public String getProcessname() {
return processname;
}
public void setProcessname(String processname) {
this.processname = processname == null ? null : processname.trim();
}
public Date getBegindate() {
return begindate;
}
public void setBegindate(Date begindate) {
this.begindate = begindate;
}
public Date getEnddate() {
return enddate;
}
public void setEnddate(Date enddate) {
this.enddate = enddate;
}
public Byte getVacationtype() {
return vacationtype;
}
public void setVacationtype(Byte vacationtype) {
this.vacationtype = vacationtype;
}
public String getReason() {
return reason;
}
public void setReason(String reason) {
this.reason = reason == null ? null : reason.trim();
}
public Byte getProcessstatus() {
return processstatus;
}
public void setProcessstatus(Byte processstatus) {
this.processstatus = processstatus;
}
public Date getCreatetime() {
return createtime;
}
public void setCreatetime(Date createtime) {
this.createtime = createtime;
}
public Date getUpdatetime() {
return updatetime;
}
public void setUpdatetime(Date updatetime) {
this.updatetime = updatetime;
}
}
\ No newline at end of file
... ...
package com.sunyo.customer.order.activity.model;
import java.util.Date;
public class USER {
private Integer userId;
private String username;
private String password;
private Date birthday;
private String sex;
private String address;
private Boolean state;
private String mobilephone;
private Date creattime;
private Date updatetime;
private String userface;
private String realname;
private String email;
private Integer age;
public Integer getUserId() {
return userId;
}
public void setUserId(Integer userId) {
this.userId = userId;
}
public String getUsername() {
return username;
}
public void setUsername(String username) {
this.username = username == null ? null : username.trim();
}
public String getPassword() {
return password;
}
public void setPassword(String password) {
this.password = password == null ? null : password.trim();
}
public Date getBirthday() {
return birthday;
}
public void setBirthday(Date birthday) {
this.birthday = birthday;
}
public String getSex() {
return sex;
}
public void setSex(String sex) {
this.sex = sex == null ? null : sex.trim();
}
public String getAddress() {
return address;
}
public void setAddress(String address) {
this.address = address == null ? null : address.trim();
}
public Boolean getState() {
return state;
}
public void setState(Boolean state) {
this.state = state;
}
public String getMobilephone() {
return mobilephone;
}
public void setMobilephone(String mobilephone) {
this.mobilephone = mobilephone == null ? null : mobilephone.trim();
}
public Date getCreattime() {
return creattime;
}
public void setCreattime(Date creattime) {
this.creattime = creattime;
}
public Date getUpdatetime() {
return updatetime;
}
public void setUpdatetime(Date updatetime) {
this.updatetime = updatetime;
}
public String getUserface() {
return userface;
}
public void setUserface(String userface) {
this.userface = userface == null ? null : userface.trim();
}
public String getRealname() {
return realname;
}
public void setRealname(String realname) {
this.realname = realname == null ? null : realname.trim();
}
public String getEmail() {
return email;
}
public void setEmail(String email) {
this.email = email == null ? null : email.trim();
}
public Integer getAge() {
return age;
}
public void setAge(Integer age) {
this.age = age;
}
}
\ No newline at end of file
... ...
package com.sunyo.customer.order.activity.service;
import com.sunyo.customer.order.activity.controller.ActivityConsumerController;
import com.sunyo.customer.order.activity.util.ActivitiUtil;
import lombok.extern.slf4j.Slf4j;
import org.activiti.bpmn.model.BpmnModel;
import org.activiti.engine.RuntimeService;
import org.activiti.engine.TaskService;
import org.activiti.engine.impl.persistence.entity.ExecutionEntity;
import org.activiti.engine.impl.persistence.entity.TaskEntity;
import org.activiti.engine.runtime.ProcessInstance;
import org.activiti.engine.task.Task;
import org.springframework.beans.factory.annotation.Autowired;
import org.springframework.stereotype.Service;
import java.util.HashMap;
import java.util.List;
import java.util.Map;
@Slf4j
@Service("activityService")
public class ActivityConsumerService implements ActivityConsumerController {
@Autowired
private RuntimeService runtimeService;
@Autowired
private TaskService taskService;
@Override
public boolean startActivityDemo(){
log.info("任务启动");
Map<String,Object> map = new HashMap<>();
map.put("buildJob","zhangsan");
map.put("excuteJob","lisi");
map.put("assignJob","wangwu");
ExecutionEntity pi1 = (ExecutionEntity)runtimeService.startProcessInstanceByKey("customProcess",map);
String processId = pi1.getId();
List<TaskEntity> taskEntityList = pi1.getTasks();
String taskId = taskService.createTaskQuery().processInstanceId("guestService").singleResult().getId();
taskService.complete(taskId,map);
Task task = taskService.createTaskQuery().processInstanceId(processId).singleResult();
String taskId2 = taskId;
map.put("pass",false);
taskService.complete(taskId2,map);
log.info("任务结束");
return false;
}
}
... ...
package com.sunyo.customer.order.activity.util;
import org.activiti.bpmn.model.*;
import org.activiti.bpmn.model.Process;
import org.activiti.engine.*;
import org.activiti.engine.history.HistoricProcessInstance;
import org.activiti.engine.history.HistoricTaskInstance;
import org.activiti.engine.repository.Deployment;
import org.activiti.engine.repository.ProcessDefinition;
import org.activiti.engine.runtime.Execution;
import org.activiti.engine.runtime.ProcessInstance;
import org.activiti.engine.task.Task;
import java.util.ArrayList;
import java.util.Date;
import java.util.List;
/**
* Activiti工具类
*/
public class ActivitiUtil {
private static ProcessEngine getProcessEngine() {
return ProcessEngines.getDefaultProcessEngine();
}
private static RepositoryService getRepositoryService() {
return getProcessEngine().getRepositoryService();
}
private static TaskService getTaskService() {
return getProcessEngine().getTaskService();
}
private static RuntimeService getRuntimeService() {
return getProcessEngine().getRuntimeService();
}
private static HistoryService getHistoryService() {
return getProcessEngine().getHistoryService();
}
private static IdentityService getIdentityService() {
return getProcessEngine().getIdentityService();
}
/**
* 创建任务节点
* 多人审批
*/
public static UserTask createUsersTask(String id, String name, List<String> assignee){
UserTask userTask = new UserTask();
userTask.setName(name);
userTask.setId(id);
userTask.setCandidateUsers(assignee);
return userTask;
}
/**
* 创建任务节点
* 单人审批
*/
public static UserTask createUserTask(String id, String name, String assignee) {
UserTask userTask = new UserTask();
userTask.setName(name);
userTask.setId(id);
userTask.setAssignee(assignee);
return userTask;
}
/**
* 连线
* @param from
* @param to
* @return
*/
public static SequenceFlow createSequenceFlow(String from, String to) {
SequenceFlow flow = new SequenceFlow();
flow.setSourceRef(from);
flow.setTargetRef(to);
return flow;
}
/**
* 开始节点
* @return
*/
public static StartEvent createStartEvent() {
StartEvent startEvent = new StartEvent();
startEvent.setId("startEvent");
startEvent.setName("start");
return startEvent;
}
/**
* 结束节点
* @return
*/
public static EndEvent createEndEvent() {
EndEvent endEvent = new EndEvent();
endEvent.setId("endEvent");
endEvent.setName("end");
return endEvent;
}
/**
* 申请人已申请任务(完成状态)[学习使用]
* @return
*/
public Object queryApply(String user){
String processDefinitionKey= "guestService";
List<HistoricProcessInstance> hisProInstance = getHistoryService().createHistoricProcessInstanceQuery()
.processDefinitionKey(processDefinitionKey).startedBy(user).finished()
.orderByProcessInstanceEndTime().desc().list();
for (HistoricProcessInstance hisInstance : hisProInstance) {
System.out.println("发起人 :"+hisInstance.getStartUserId());
System.out.println("发起时间 :"+hisInstance.getStartTime());
}
return "已申请任务";
}
/**
* 审批人已办理任务(完成状态)[学习使用]
* @return
*/
public Object queryFinished(String user){
String processDefinitionKey= "guestService";
List<HistoricProcessInstance> hisProInstance = getHistoryService().createHistoricProcessInstanceQuery()
.processDefinitionKey(processDefinitionKey).involvedUser(user).finished()
.orderByProcessInstanceEndTime().desc().list();
for (HistoricProcessInstance hisInstance : hisProInstance) {
List<HistoricTaskInstance> hisTaskInstanceList = getHistoryService().createHistoricTaskInstanceQuery()
.processInstanceId(hisInstance.getId()).processFinished()
.taskAssignee(user)
.orderByHistoricTaskInstanceEndTime().desc().list();
boolean isMyAudit = false;
for (HistoricTaskInstance taskInstance : hisTaskInstanceList) {
if (taskInstance.getAssignee().equals(user)) {
isMyAudit = true;
}
}
if (!isMyAudit) {
continue;
}
System.out.println("申请人 :"+hisInstance.getStartUserId());
System.out.println("开始时间 :"+hisInstance.getStartTime());
System.out.println("结束时间 :"+hisInstance.getEndTime());
}
return "已办理任务";
}
/**
* 发起人查询执行中的任务[学习使用]
* @return
*/
public static Object queryNow(String user) {
List<ProcessInstance> instanceList = getRuntimeService().createProcessInstanceQuery().startedBy(user).list();
for (ProcessInstance instance : instanceList) {
System.out.println("申请人 :" + instance.getStartUserId());
System.out.println("开始时间 :" + instance.getStartTime());
}
return "查询执行中的任务";
}
/**
* 根据人员查询待审批任务[学习使用]
* @return
*/
public static Object findUnApprove(String assignee) {
List<Task> list = getTaskService().createTaskQuery().taskCandidateOrAssigned(assignee).list();
if (list != null || list.size() > 0) {
for (Task task : list) {
HistoricProcessInstance historicProcessInstance =
getHistoryService().createHistoricProcessInstanceQuery()
.processInstanceId(task.getProcessInstanceId())
.singleResult();
String user = historicProcessInstance.getStartUserId();
Date date = (Date) getTaskService().getVariable(task.getId(), "请假日期");
Integer day = (Integer) getTaskService().getVariable(task.getId(), "请假天数");
String ms = (String) getTaskService().getVariable(task.getId(), "请假原因");
System.out.println("申请人" + user + "请假日期" + date + "/" + "请假天数 :" + day + "/" + "请假原因 :" + ms);
System.out.println("任务名称 :" + task.getName());
System.out.println("任务创建时间 :" + task.getCreateTime());
}
}
return "待审批";
}
/**
* 添加任务
* @param processFlow
* @return
*/
// public Integer addActiviti(ProcessFlow processFlow) {
// try {
// BpmnModel model = new BpmnModel();
// Process process = new Process();
// model.addProcess(process);
//
// /**
// *process的id不能以数字开头
// */
// process.setId('A' + processFlow.getId());
// List<String> users = null;
//
// /**
// *获取流程的节点数量
// */
// int size = processFlow.getProcessNodes().size();
// process.addFlowElement(ActivitiUtil.createStartEvent());
//
// /**
// *生成流程
// */
// for (int i = 0, j = size; i < j; i++) {
// users = new ArrayList<>();
// for (AuditProcessNodeApprover approver : processFlow.getProcessNodes().get(i).getApprovers()) {
// users.add(approver.getApproved());
// }
// process.addFlowElement(ActivitiUtil.createUsersTask(ProcessIDPrefix + processFlow.getProcessNodes().get(i).getId(), processFlow.getProcessNodes().get(i).getName(), users));
// if (i == 0)
// process.addFlowElement(ActivitiUtil.createSequenceFlow("startEvent", ProcessIDPrefix + processFlow.getProcessNodes().get(i).getId()));
// else {
// process.addFlowElement(ActivitiUtil.createSequenceFlow(ProcessIDPrefix + processFlow.getProcessNodes().get(i - 1).getId(), ProcessIDPrefix + processFlow.getProcessNodes().get(i).getId()));
// }
// if (i == size - 1)
// process.addFlowElement(ActivitiUtil.createSequenceFlow(ProcessIDPrefix + processFlow.getProcessNodes().get(i).getId(), "endEvent"));
// }
// process.addFlowElement(ActivitiUtil.createEndEvent());
//
//
// /**
// * 生成图形信息
// */
// new BpmnAutoLayout(model).execute();
//
// //将流程部署到引擎
// Deployment deployment = getRepositoryService().createDeployment()
// .addBpmnModel("ABC" + process.getId() + ".bpmn", model).name(processFlow.getName())
// .deploy();
//
// } catch (Exception e) {
// throw new CustomException(e.getLocalizedMessage());
// }
// return 1;
// }
//
//
// /**
// * 开始流程
// * @param creater
// * @param processId
// * @return
// */
// public Object beginActiviti(String creater, String processId) {
//
// /**
// *设置发起人
// */
// getIdentityService().setAuthenticatedUserId(creater);
// //启动流程实例
// ProcessInstance processInstance = getRuntimeService().startProcessInstanceByKey('A' + processId);
//
// Task task = getTaskService().createTaskQuery().processInstanceId(processInstance.getId()).singleResult();
// if (task == null) throw new RuntimeException("发起审批失败");
// ProcessFlow flow = flowRepository.getOne(processId);
// if (flow == null) throw new RuntimeException("对应审批流程为空");
// List<ProcessNodeApprover> processNodeApprovers= processNodeApproverRepository.findByFlowid(flow.getId());
// if (processNodeApprovers==null||processNodeApprovers.size()<1){
// throw new RuntimeException("对应审批人为空");
// }
// return task;
// }
//
//
// /**
// * 进行审批
// *
// * @param assignee 审批人
// * @param msg 审批意见
// * @param isAgree 是否同意 1 同意 0 拒绝
// * @param taskId 任务id
// * @param processId 流程id
// * @return
// */
// public Object approve(String assignee, String msg, Integer isAgree, String taskId, String processId) {
// Task task = getTaskService().createTaskQuery().taskId(taskId).singleResult();
// Employee assigneeEmployee = employeeRepository.getOne(assignee);
// if (assigneeEmployee == null)
// throw new RuntimeException("审批人对应得职员信息不存在!");
//
// //拒绝,结束流程
// if (isAgree == 0) {
// BpmnModel bpmnModel = getRepositoryService().getBpmnModel(task.getProcessDefinitionId());
// Execution execution = getRuntimeService().createExecutionQuery().executionId(task.getExecutionId()).singleResult();
// String activitId = execution.getActivityId();
// FlowNode flowNode = (FlowNode) bpmnModel.getMainProcess().getFlowElement(activitId);
// //清理流程未执行节点
// flowNode.getOutgoingFlows().clear();
// //建立新方向
// List<SequenceFlow> newSequenceFlowList = new ArrayList<>();
// SequenceFlow newSequenceFlow = new SequenceFlow();
// newSequenceFlow.setId(CommonUtil.getUUID());
// newSequenceFlow.setSourceFlowElement(flowNode);
// newSequenceFlow.setTargetFlowElement(ActivitiUtil.createEndEvent());
// newSequenceFlowList.add(newSequenceFlow);
// flowNode.setOutgoingFlows(newSequenceFlowList);
//
// }
//
// //同意,继续下一节点
// else if (isAgree == 1) {
// getTaskService().addComment(task.getId(), task.getProcessInstanceId(), msg);
// getTaskService().complete(task.getId());
// }
//
// return ResultUtil.success();
// }
/**
* 删除流程
* @param deploymentId
* @return
*/
public void deleteActivity(String deploymentId){
getRepositoryService().deleteDeployment(deploymentId, true);
//true 级联删除
}
/**
* 根据启动key获取最新流程
* @param processId
* @return
*/
public List<ProcessDefinition> getNewActivity(String processId){
List<ProcessDefinition> list = getRepositoryService()
.createProcessDefinitionQuery().processDefinitionKey(processId)
.orderByProcessDefinitionVersion().desc()//使用流程定义的版本降序排列
.list();
return list;
}
}
... ...
#上传文件的路径,要带斜杠
web:
upload-path: upload/
server:
port: 10002
servlet:
context-path: ${SERVER_CONTEXTPATH:}
spring:
profiles:
active: dev
mvc:
#静态资源,设置上传文件的访问,
static-path-pattern: /**
# view:
# suffix: .html
## prefix: /templates/
thymeleaf:
cache: false
mode: LEGACYHTML5
activiti:
# 检查bpmn文件
check-process-definitions: false
#创建任务流表,创建完成后关闭,每次应用启动不检查Activiti数据表是否存在及版本号是否匹配,提升应用启动速度
database-schema-update: true
#保存历史数据级别设置为full最高级别,便于历史数据的追溯
history-level: full
process-definition-location-prefix:
jpa:
hibernate:
ddl-auto: update
show-sql: true
resources:
static-locations: classpath:/META-INF/resources/,classpath:/static,classpath:/resources/,classpath:/public/,file:${web.upload-path}
application:
name: HQPT-PROCESS
jackson:
serialization:
FAIL_ON_EMPTY_BEANS: false
#springboot2.0之后会把Date类型字段自动给转成UTC字符串 如:1990-11-26T16:00:00.000+0000,如果想转成时间戳在application.properties配置文件增加以下配置
date-format: yyyy-MM-dd HH:mm:ss
#时区必须要设置
time-zone: GMT+8
#ALWAYS的意思是即时属性为null,仍然也会输出这个key
default-property-inclusion: always
cloud:
#eureka主机名,会在控制页面中显示
#DEV环境关闭注册。
features:
enabled: true
discovery:
enabled: true
service-registry:
auto-registration:
enabled: true
datasource:
type: com.alibaba.druid.pool.DruidDataSource
#oracle
# driver-class-name: oracle.jdbc.OracleDriver
# url: jdbc:oracle:thin:@192.168.1.253:1522:ORCLL
# username: CGONMS
# password: vmvnv1v2
#spring datasource mysql,注意编码配置,缺少数据库编码配置容易引起中文入库乱码
#url: jdbc:mysql://127.0.0.1:3307/statistics?useUnicode=true&characterEncoding=utf8&nullCatalogMeansCurrent=true
url: jdbc:mysql://118.31.66.166:3306/HQPT_USER?useUnicode=true&characterEncoding=utf8&nullCatalogMeansCurrent=true
username: 110
password: QAHqCJf2kFYCLirM
driver-class-name: com.mysql.cj.jdbc.Driver
max-idle: 20
max-wait: 10000
min-idle: 5
initial-size: 5
#配置初始化大小/最小/最大
druid:
initial-size: 1
min-idle: 1
#最大并发连接数
max-active: 40
#获取连接等待超时时间
max-wait: 60000
#一个连接在池中最小生存的时间
min-evictable-idle-time-millis: 300000
#间隔多久进行一次检测,检测需要关闭的空闲连接
time-between-eviction-runs-millis: 60000
#mysql
validation-query: SELECT 1 FROM DUAL
#oracle
# validation-query: SELECT 'x' FROM DUAL
test-while-idle: true
test-on-borrow: false
test-on-return: false
default-auto-commit: true
eureka:
instance:
#eureka服务器页面中status的请求路径
status-page-url: http://${eureka.instance.hostname}:${server.port}/
prefer-ip-address: true
instance-id: ${spring.cloud.client.ip-address}:${server.port}
hostname: ${spring.cloud.client.ip-address}
client:
#eureka注册中心服务器地址
service-url:
# defaultZone: http://127.0.0.1:12345/eureka/
defaultZone: http://192.168.1.53:12345/eureka/
registry-fetch-interval-seconds: 30
lease-renewal-interval-in-seconds: 15
lease-expiration-duration-in-seconds: 45
mybatis:
mapper-locations: classpath:mapping/*.xml
type-aliases-package: com.sunyo.customer.order.activity.model
pagehelper:
#auto-dialect: true
#auto-runtime-dialect: true
helper-dialect: mysql
reasonable: true
support-methods-arguments: true
params: count=countSql
#debug配置,debug或者为true的时候,logback才会记录和写入日志文件
trace: false
debug: false
logging:
file:
path: ./logs/
name: system.log
config: config/logback-dev.xml
#转移到logback配置文件中
#level:
#org.apache.tomcat: info
#com.tianbo.warehouse.dao: DEBUG
#org.springframework.security: trace
#日志配置,输出到文本,
#Java Web Token 时效时间,单位秒
jwt:
max-alive: 300
#自定义配置
custom:
#进港放行回执读取目录
receptDirectory: /Users/mrz/Downloads/rdp_temp/logs/回执报文样例/20191104
#回执解析成功后的备份目录
receptBakDir: /Users/mrz/Downloads/rdp_temp/logs/success
#解析错误报文的备份目录
errBakDir: /Users/mrz/Downloads/rdp_temp/logs/error
#回执转发目录
transmitDir: /Users/mrz/Downloads/rdp_temp/logs/transmit
#匹配技术回执正则
delTechnologyReceptMatch: CN_MT(.*)_1P0_460470678920X_(.*).xml
devops:
dir:
singlewindow-tcs-recept: D:\TCSSingleWindow\recive
tianbo-tcs-recept: D:\Data\Receive
cfps-subscribe-dir: D:\系统部署\imf_Warehouse_reader\xmlFromImf
#10079
\ No newline at end of file
... ...
<?xml version="1.0" encoding="UTF-8" standalone="yes"?>
<definitions xmlns="http://www.omg.org/spec/BPMN/20100524/MODEL"
xmlns:omgdi="http://www.omg.org/spec/DD/20100524/DI"
xmlns:activiti="http://activiti.org/bpmn"
xmlns:omgdc="http://www.omg.org/spec/DD/20100524/DC"
xmlns:tns="http://www.activiti.org/test"
xmlns:xsd="http://www.w3.org/2001/XMLSchema"
xmlns:bpmndi="http://www.omg.org/spec/BPMN/20100524/DI"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
expressionLanguage="http://www.w3.org/1999/XPath"
id="m1575793054911"
name=""
targetNamespace="http://www.activiti.org/test"
typeLanguage="http://www.w3.org/2001/XMLSchema">
<process xmlns="" id="customProcess" isClosed="false" isExecutable="true" name="工单流程"
processType="Public">
<startEvent id="_2" name="StartEvent"/>
<endEvent id="_3" name="EndEvent"/>
<userTask activiti:exclusive="true" id="processForm" name="客服工单"/>
<userTask activiti:exclusive="true" id="job" name="分配任务"/>
<sequenceFlow id="_6" sourceRef="_2" targetRef="processForm"/>
<sequenceFlow id="_7" sourceRef="processForm" targetRef="job"/>
<sequenceFlow id="_8" sourceRef="job" targetRef="_3"/>
</process>
<bpmndi:BPMNDiagram xmlns=""
documentation="background=#3C3F41;count=1;horizontalcount=1;orientation=0;width=842.4;height=1195.2;imageableWidth=832.4;imageableHeight=1185.2;imageableX=5.0;imageableY=5.0"
id="Diagram-_1"
name="New Diagram">
<bpmndi:BPMNPlane bpmnElement="customProcess">
<bpmndi:BPMNShape bpmnElement="_2" id="Shape-_2">
<omgdc:Bounds height="32.0" width="32.0" x="115.0" y="65.0"/>
<bpmndi:BPMNLabel>
<omgdc:Bounds height="32.0" width="32.0" x="0.0" y="0.0"/>
</bpmndi:BPMNLabel>
</bpmndi:BPMNShape>
<bpmndi:BPMNShape bpmnElement="_3" id="Shape-_3">
<omgdc:Bounds height="32.0" width="32.0" x="285.0" y="295.0"/>
<bpmndi:BPMNLabel>
<omgdc:Bounds height="32.0" width="32.0" x="0.0" y="0.0"/>
</bpmndi:BPMNLabel>
</bpmndi:BPMNShape>
<bpmndi:BPMNShape bpmnElement="processForm" id="Shape-processForm">
<omgdc:Bounds height="55.0" width="85.0" x="260.0" y="65.0"/>
<bpmndi:BPMNLabel>
<omgdc:Bounds height="55.0" width="85.0" x="0.0" y="0.0"/>
</bpmndi:BPMNLabel>
</bpmndi:BPMNShape>
<bpmndi:BPMNShape bpmnElement="job" id="Shape-job">
<omgdc:Bounds height="55.0" width="85.0" x="270.0" y="165.0"/>
<bpmndi:BPMNLabel>
<omgdc:Bounds height="55.0" width="85.0" x="0.0" y="0.0"/>
</bpmndi:BPMNLabel>
</bpmndi:BPMNShape>
<bpmndi:BPMNEdge bpmnElement="_6" id="BPMNEdge__6" sourceElement="_2"
targetElement="processForm">
<omgdi:waypoint x="147.0" y="81.0"/>
<omgdi:waypoint x="260.0" y="92.5"/>
<bpmndi:BPMNLabel>
<omgdc:Bounds height="0.0" width="0.0" x="0.0" y="0.0"/>
</bpmndi:BPMNLabel>
</bpmndi:BPMNEdge>
<bpmndi:BPMNEdge bpmnElement="_7" id="BPMNEdge__7" sourceElement="processForm"
targetElement="job">
<omgdi:waypoint x="307.5" y="120.0"/>
<omgdi:waypoint x="307.5" y="165.0"/>
<bpmndi:BPMNLabel>
<omgdc:Bounds height="0.0" width="0.0" x="0.0" y="0.0"/>
</bpmndi:BPMNLabel>
</bpmndi:BPMNEdge>
<bpmndi:BPMNEdge bpmnElement="_8" id="BPMNEdge__8" sourceElement="job" targetElement="_3">
<omgdi:waypoint x="301.0" y="220.0"/>
<omgdi:waypoint x="301.0" y="295.0"/>
<bpmndi:BPMNLabel>
<omgdc:Bounds height="0.0" width="0.0" x="0.0" y="0.0"/>
</bpmndi:BPMNLabel>
</bpmndi:BPMNEdge>
</bpmndi:BPMNPlane>
</bpmndi:BPMNDiagram>
</definitions>
\ No newline at end of file
... ...
<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE generatorConfiguration
PUBLIC "-//mybatis.org//DTD MyBatis Generator Configuration 1.0//EN"
"http://mybatis.org/dtd/mybatis-generator-config_1_0.dtd">
<generatorConfiguration>
<!-- 数据库驱动:选择你的本地硬盘上面的数据库驱动包-->
<classPathEntry location="/Users/mrz/Downloads/mybatis-generator-core-1.3.2/lib/mysql-connector-java-5.1.25-bin.jar"/>
<!--<classPathEntry location="/Users/mrz/Documents/maven/ojdbc6.jar"/>-->
<context id="DB2Tables" targetRuntime="MyBatis3">
<commentGenerator>
<property name="suppressDate" value="true"/>
<!-- 是否去除自动生成的注释 true:是 : false:否 -->
<property name="suppressAllComments" value="true"/>
</commentGenerator>
<!--数据库链接URL,用户名、密码 -->
<jdbcConnection driverClass="com.mysql.jdbc.Driver"
connectionURL="jdbc:mysql://118.31.66.166:3306/HQPT_USER"
userId="110"
password="QAHqCJf2kFYCLirM">
</jdbcConnection>
<!--<jdbcConnection driverClass="oracle.jdbc.driver.OracleDriver"-->
<!--connectionURL="jdbc:oracle:thin:@192.168.1.253:1522:ORCLL"-->
<!--userId="CGOASM"-->
<!--password="vmvnv1v2">-->
<!--</jdbcConnection>-->
<!-- 默认false,把JDBC DECIMAL 和 NUMERIC 类型解析为 Integer,为 true时把JDBC DECIMAL 和
NUMERIC 类型解析为java.math.BigDecimal -->
<!--<javaTypeResolver>-->
<!--<property name="forceBigDecimals" value="true" />-->
<!--</javaTypeResolver>-->
<javaTypeResolver>
<property name="forceBigDecimals" value="false"/>
</javaTypeResolver>
<!-- 生成模型的包名和位置-->
<javaModelGenerator targetPackage="com.sunyo.customer.order.activity.model" targetProject="src/main/java">
<property name="enableSubPackages" value="true"/>
<property name="trimStrings" value="true"/>
</javaModelGenerator>
<!-- 生成映射文件的包名和位置-->
<sqlMapGenerator targetPackage="mapping" targetProject="src/main/resources">
<property name="enableSubPackages" value="true"/>
</sqlMapGenerator>
<!-- 生成DAO的包名和位置-->
<javaClientGenerator type="XMLMAPPER" targetPackage="com.sunyo.customer.order.activity.dao" targetProject="src/main/java">
<property name="enableSubPackages" value="true"/>
</javaClientGenerator>
<!-- 要生成的表 tableName是数据库中的表名或视图名 domainObjectName是实体类名-->
<table tableName="job" domainObjectName="JOB" enableCountByExample="false" enableUpdateByExample="false" enableDeleteByExample="false" enableSelectByExample="false" selectByExampleQueryId="false"></table>
</context>
</generatorConfiguration>
\ No newline at end of file
... ...
<?xml version="1.0" encoding="UTF-8" ?>
<!DOCTYPE mapper PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN" "http://mybatis.org/dtd/mybatis-3-mapper.dtd" >
<mapper namespace="com.sunyo.customer.order.activity.dao.JOBMapper" >
<resultMap id="BaseResultMap" type="com.sunyo.customer.order.activity.model.JOB" >
<id column="auditId" property="auditid" jdbcType="VARCHAR" />
<result column="processInstanceId" property="processinstanceid" jdbcType="VARCHAR" />
<result column="processId" property="processid" jdbcType="VARCHAR" />
<result column="taskId" property="taskid" jdbcType="VARCHAR" />
<result column="userId" property="userid" jdbcType="INTEGER" />
<result column="auditResuld" property="auditresuld" jdbcType="TINYINT" />
<result column="coment" property="coment" jdbcType="VARCHAR" />
<result column="auditTime" property="audittime" jdbcType="TIMESTAMP" />
<association property="user" javaType="com.sunyo.customer.order.activity.model.USER" >
<id column="user_id" property="userId"/>
<result column="realName" property="realname"/>
</association>
<association property="process" javaType="com.sunyo.customer.order.activity.model.ProcessForm" >
<id column="formId" property="formid"/>
<result column="processName" property="processname"/>
</association>
</resultMap>
<sql id="Base_Column_List" >
auditId, processInstanceId, taskId, userId, auditResuld, coment, auditTime, processId
</sql>
<select id="selectByPrimaryKey" resultMap="BaseResultMap" parameterType="java.lang.String" >
select
<include refid="Base_Column_List" />
from job
where auditId = #{auditid,jdbcType=VARCHAR}
</select>
<select id="selectAllWithUser" resultMap="BaseResultMap" >
SELECT job.*,process.formId,process.processName,u.realName from job job
LEFT JOIN processForm process
on
job.taskId = process.formId
LEFT JOIN users u
on job.userId = u.user_id
where 1=1
<if test="userid != null">
AND job.userId = #{userid,jdbcType=VARCHAR}
</if>
<if test="processid != null">
AND job.processId = #{processid,jdbcType=VARCHAR}
</if>
</select>
<delete id="deleteByPrimaryKey" parameterType="java.lang.String" >
delete from job
where auditId = #{auditid,jdbcType=VARCHAR}
</delete>
<insert id="insert" parameterType="com.sunyo.customer.order.activity.model.JOB" >
insert into job (auditId, processInstanceId, taskId,
userId, auditResuld, coment,
auditTime)
values (#{auditid,jdbcType=VARCHAR}, #{processinstanceid,jdbcType=VARCHAR}, #{taskid,jdbcType=VARCHAR},
#{userid,jdbcType=INTEGER}, #{auditresuld,jdbcType=TINYINT}, #{coment,jdbcType=VARCHAR},
#{audittime,jdbcType=TIMESTAMP})
</insert>
<insert id="insertSelective" parameterType="com.sunyo.customer.order.activity.model.JOB" >
insert into job
<trim prefix="(" suffix=")" suffixOverrides="," >
<if test="auditid != null" >
auditId,
</if>
<if test="processinstanceid != null" >
processInstanceId,
</if>
<if test="processid != null" >
processId,
</if>
<if test="taskid != null" >
taskId,
</if>
<if test="userid != null" >
userId,
</if>
<if test="auditresuld != null" >
auditResuld,
</if>
<if test="coment != null" >
coment,
</if>
<if test="audittime != null" >
auditTime,
</if>
</trim>
<trim prefix="values (" suffix=")" suffixOverrides="," >
<if test="auditid != null" >
#{auditid,jdbcType=VARCHAR},
</if>
<if test="processinstanceid != null" >
#{processinstanceid,jdbcType=VARCHAR},
</if>
<if test="processid != null" >
#{processid,jdbcType=VARCHAR},
</if>
<if test="taskid != null" >
#{taskid,jdbcType=VARCHAR},
</if>
<if test="userid != null" >
#{userid,jdbcType=INTEGER},
</if>
<if test="auditresuld != null" >
#{auditresuld,jdbcType=TINYINT},
</if>
<if test="coment != null" >
#{coment,jdbcType=VARCHAR},
</if>
<if test="audittime != null" >
#{audittime,jdbcType=TIMESTAMP},
</if>
</trim>
</insert>
<update id="updateByPrimaryKeySelective" parameterType="com.sunyo.customer.order.activity.model.JOB" >
update job
<set >
<if test="processinstanceid != null" >
processInstanceId = #{processinstanceid,jdbcType=VARCHAR},
</if>
<if test="processid != null" >
processId = #{processinstanceid,jdbcType=VARCHAR},
</if>
<if test="taskid != null" >
taskId = #{taskid,jdbcType=VARCHAR},
</if>
<if test="userid != null" >
userId = #{userid,jdbcType=INTEGER},
</if>
<if test="auditresuld != null" >
auditResuld = #{auditresuld,jdbcType=TINYINT},
</if>
<if test="coment != null" >
coment = #{coment,jdbcType=VARCHAR},
</if>
<if test="audittime != null" >
auditTime = #{audittime,jdbcType=TIMESTAMP},
</if>
</set>
where auditId = #{auditid,jdbcType=VARCHAR}
</update>
<update id="updateByPrimaryKey" parameterType="com.sunyo.customer.order.activity.model.JOB" >
update job
set processInstanceId = #{processinstanceid,jdbcType=VARCHAR},
taskId = #{taskid,jdbcType=VARCHAR},
userId = #{userid,jdbcType=INTEGER},
auditResuld = #{auditresuld,jdbcType=TINYINT},
coment = #{coment,jdbcType=VARCHAR},
auditTime = #{audittime,jdbcType=TIMESTAMP}
where auditId = #{auditid,jdbcType=VARCHAR}
</update>
<update id="startJob" parameterType="com.sunyo.customer.order.activity.model.JOB" >
update job
set
userId = #{userid,jdbcType=INTEGER},
auditResuld = #{auditresuld,jdbcType=TINYINT},
coment = #{coment,jdbcType=VARCHAR}
where auditId = #{auditid,jdbcType=VARCHAR}
</update>
</mapper>
\ No newline at end of file
... ...
<?xml version="1.0" encoding="UTF-8" ?>
<!DOCTYPE mapper PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN" "http://mybatis.org/dtd/mybatis-3-mapper.dtd" >
<mapper namespace="com.sunyo.customer.order.activity.dao.ProcessFormMapper" >
<resultMap id="BaseResultMap" type="com.sunyo.customer.order.activity.model.ProcessForm" >
<id column="formId" property="formid" jdbcType="VARCHAR" />
<id column="processInstanceId" property="processinstanceid" jdbcType="VARCHAR" />
<result column="userId" property="userid" jdbcType="INTEGER" />
<result column="processName" property="processname" jdbcType="VARCHAR" />
<result column="beginDate" property="begindate" jdbcType="TIMESTAMP" />
<result column="endDate" property="enddate" jdbcType="TIMESTAMP" />
<result column="vacationType" property="vacationtype" jdbcType="TINYINT" />
<result column="reason" property="reason" jdbcType="VARCHAR" />
<result column="processStatus" property="processstatus" jdbcType="TINYINT" />
<result column="createTime" property="createtime" jdbcType="TIMESTAMP" />
<result column="updateTime" property="updatetime" jdbcType="TIMESTAMP" />
<association property="user" javaType="com.sunyo.customer.order.activity.model.USER" >
<id column="user_id" property="userId"/>
<result column="realName" property="realname"/>
</association>
</resultMap>
<sql id="Base_Column_List" >
formId, processInstanceId, userId, processName, beginDate, endDate, vacationType,
reason, processStatus, createTime, updateTime
</sql>
<select id="selectByPrimaryKey" resultMap="BaseResultMap" parameterType="com.sunyo.customer.order.activity.model.ProcessForm" >
select
<include refid="Base_Column_List" />
from processForm
where formId = #{formid,jdbcType=VARCHAR}
and processInstanceId = #{processinstanceid,jdbcType=VARCHAR}
</select>
<select id="selectAllWithUser" resultMap="BaseResultMap" >
select
p.*,
u.realName
from processForm p
LEFT JOIN users u
ON p.userId = u.user_id
</select>
<delete id="deleteByPrimaryKey" parameterType="com.sunyo.customer.order.activity.model.ProcessForm" >
delete from processForm
where formId = #{formid,jdbcType=VARCHAR}
and processInstanceId = #{processinstanceid,jdbcType=VARCHAR}
</delete>
<insert id="insert" parameterType="com.sunyo.customer.order.activity.model.ProcessForm" >
insert into processForm (formId, processInstanceId, userId,
processName, beginDate, endDate,
vacationType, reason, processStatus,
createTime, updateTime)
values (#{formid,jdbcType=VARCHAR}, #{processinstanceid,jdbcType=VARCHAR}, #{userid,jdbcType=INTEGER},
#{processname,jdbcType=VARCHAR}, #{begindate,jdbcType=TIMESTAMP}, #{enddate,jdbcType=TIMESTAMP},
#{vacationtype,jdbcType=TINYINT}, #{reason,jdbcType=VARCHAR}, #{processstatus,jdbcType=TINYINT},
#{createtime,jdbcType=TIMESTAMP}, #{updatetime,jdbcType=TIMESTAMP})
</insert>
<insert id="insertSelective" parameterType="com.sunyo.customer.order.activity.model.ProcessForm" >
insert into processForm
<trim prefix="(" suffix=")" suffixOverrides="," >
<if test="formid != null" >
formId,
</if>
<if test="processinstanceid != null" >
processInstanceId,
</if>
<if test="userid != null" >
userId,
</if>
<if test="processname != null" >
processName,
</if>
<if test="begindate != null" >
beginDate,
</if>
<if test="enddate != null" >
endDate,
</if>
<if test="vacationtype != null" >
vacationType,
</if>
<if test="reason != null" >
reason,
</if>
<if test="processstatus != null" >
processStatus,
</if>
<if test="createtime != null" >
createTime,
</if>
<if test="updatetime != null" >
updateTime,
</if>
</trim>
<trim prefix="values (" suffix=")" suffixOverrides="," >
<if test="formid != null" >
#{formid,jdbcType=VARCHAR},
</if>
<if test="processinstanceid != null" >
#{processinstanceid,jdbcType=VARCHAR},
</if>
<if test="userid != null" >
#{userid,jdbcType=INTEGER},
</if>
<if test="processname != null" >
#{processname,jdbcType=VARCHAR},
</if>
<if test="begindate != null" >
#{begindate,jdbcType=TIMESTAMP},
</if>
<if test="enddate != null" >
#{enddate,jdbcType=TIMESTAMP},
</if>
<if test="vacationtype != null" >
#{vacationtype,jdbcType=TINYINT},
</if>
<if test="reason != null" >
#{reason,jdbcType=VARCHAR},
</if>
<if test="processstatus != null" >
#{processstatus,jdbcType=TINYINT},
</if>
<if test="createtime != null" >
#{createtime,jdbcType=TIMESTAMP},
</if>
<if test="updatetime != null" >
#{updatetime,jdbcType=TIMESTAMP},
</if>
</trim>
</insert>
<update id="updateByPrimaryKeySelective" parameterType="com.sunyo.customer.order.activity.model.ProcessForm" >
update processForm
<set >
<if test="userid != null" >
userId = #{userid,jdbcType=INTEGER},
</if>
<if test="processname != null" >
processName = #{processname,jdbcType=VARCHAR},
</if>
<if test="begindate != null" >
beginDate = #{begindate,jdbcType=TIMESTAMP},
</if>
<if test="enddate != null" >
endDate = #{enddate,jdbcType=TIMESTAMP},
</if>
<if test="vacationtype != null" >
vacationType = #{vacationtype,jdbcType=TINYINT},
</if>
<if test="reason != null" >
reason = #{reason,jdbcType=VARCHAR},
</if>
<if test="processstatus != null" >
processStatus = #{processstatus,jdbcType=TINYINT},
</if>
<if test="createtime != null" >
createTime = #{createtime,jdbcType=TIMESTAMP},
</if>
<if test="updatetime != null" >
updateTime = #{updatetime,jdbcType=TIMESTAMP},
</if>
</set>
where formId = #{formid,jdbcType=VARCHAR}
and processInstanceId = #{processinstanceid,jdbcType=VARCHAR}
</update>
<update id="updateByPrimaryKey" parameterType="com.sunyo.customer.order.activity.model.ProcessForm" >
update processForm
set userId = #{userid,jdbcType=INTEGER},
processName = #{processname,jdbcType=VARCHAR},
beginDate = #{begindate,jdbcType=TIMESTAMP},
endDate = #{enddate,jdbcType=TIMESTAMP},
vacationType = #{vacationtype,jdbcType=TINYINT},
reason = #{reason,jdbcType=VARCHAR},
processStatus = #{processstatus,jdbcType=TINYINT},
createTime = #{createtime,jdbcType=TIMESTAMP},
updateTime = #{updatetime,jdbcType=TIMESTAMP}
where formId = #{formid,jdbcType=VARCHAR}
and processInstanceId = #{processinstanceid,jdbcType=VARCHAR}
</update>
</mapper>
\ No newline at end of file
... ...
<?xml version="1.0" encoding="UTF-8" ?>
<!DOCTYPE mapper PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN" "http://mybatis.org/dtd/mybatis-3-mapper.dtd" >
<mapper namespace="com.sunyo.customer.order.activity.dao.USERMapper" >
<resultMap id="BaseResultMap" type="com.sunyo.customer.order.activity.model.USER" >
<id column="user_id" property="userId" jdbcType="INTEGER" />
<result column="username" property="username" jdbcType="VARCHAR" />
<result column="password" property="password" jdbcType="VARCHAR" />
<result column="birthday" property="birthday" jdbcType="TIMESTAMP" />
<result column="sex" property="sex" jdbcType="CHAR" />
<result column="address" property="address" jdbcType="VARCHAR" />
<result column="state" property="state" jdbcType="BIT" />
<result column="mobilePhone" property="mobilephone" jdbcType="VARCHAR" />
<result column="creatTime" property="creattime" jdbcType="TIMESTAMP" />
<result column="updateTime" property="updatetime" jdbcType="TIMESTAMP" />
<result column="userFace" property="userface" jdbcType="VARCHAR" />
<result column="realName" property="realname" jdbcType="VARCHAR" />
<result column="email" property="email" jdbcType="VARCHAR" />
<result column="age" property="age" jdbcType="INTEGER" />
</resultMap>
<sql id="Base_Column_List" >
user_id, username, password, birthday, sex, address, state, mobilePhone, creatTime,
updateTime, userFace, realName, email, age
</sql>
<select id="selectByPrimaryKey" resultMap="BaseResultMap" parameterType="java.lang.Integer" >
select
<include refid="Base_Column_List" />
from users
where user_id = #{userId,jdbcType=INTEGER}
</select>
<delete id="deleteByPrimaryKey" parameterType="java.lang.Integer" >
delete from users
where user_id = #{userId,jdbcType=INTEGER}
</delete>
<insert id="insert" parameterType="com.sunyo.customer.order.activity.model.USER" >
insert into users (user_id, username, password,
birthday, sex, address,
state, mobilePhone, creatTime,
updateTime, userFace, realName,
email, age)
values (#{userId,jdbcType=INTEGER}, #{username,jdbcType=VARCHAR}, #{password,jdbcType=VARCHAR},
#{birthday,jdbcType=TIMESTAMP}, #{sex,jdbcType=CHAR}, #{address,jdbcType=VARCHAR},
#{state,jdbcType=BIT}, #{mobilephone,jdbcType=VARCHAR}, #{creattime,jdbcType=TIMESTAMP},
#{updatetime,jdbcType=TIMESTAMP}, #{userface,jdbcType=VARCHAR}, #{realname,jdbcType=VARCHAR},
#{email,jdbcType=VARCHAR}, #{age,jdbcType=INTEGER})
</insert>
<insert id="insertSelective" parameterType="com.sunyo.customer.order.activity.model.USER" >
insert into users
<trim prefix="(" suffix=")" suffixOverrides="," >
<if test="userId != null" >
user_id,
</if>
<if test="username != null" >
username,
</if>
<if test="password != null" >
password,
</if>
<if test="birthday != null" >
birthday,
</if>
<if test="sex != null" >
sex,
</if>
<if test="address != null" >
address,
</if>
<if test="state != null" >
state,
</if>
<if test="mobilephone != null" >
mobilePhone,
</if>
<if test="creattime != null" >
creatTime,
</if>
<if test="updatetime != null" >
updateTime,
</if>
<if test="userface != null" >
userFace,
</if>
<if test="realname != null" >
realName,
</if>
<if test="email != null" >
email,
</if>
<if test="age != null" >
age,
</if>
</trim>
<trim prefix="values (" suffix=")" suffixOverrides="," >
<if test="userId != null" >
#{userId,jdbcType=INTEGER},
</if>
<if test="username != null" >
#{username,jdbcType=VARCHAR},
</if>
<if test="password != null" >
#{password,jdbcType=VARCHAR},
</if>
<if test="birthday != null" >
#{birthday,jdbcType=TIMESTAMP},
</if>
<if test="sex != null" >
#{sex,jdbcType=CHAR},
</if>
<if test="address != null" >
#{address,jdbcType=VARCHAR},
</if>
<if test="state != null" >
#{state,jdbcType=BIT},
</if>
<if test="mobilephone != null" >
#{mobilephone,jdbcType=VARCHAR},
</if>
<if test="creattime != null" >
#{creattime,jdbcType=TIMESTAMP},
</if>
<if test="updatetime != null" >
#{updatetime,jdbcType=TIMESTAMP},
</if>
<if test="userface != null" >
#{userface,jdbcType=VARCHAR},
</if>
<if test="realname != null" >
#{realname,jdbcType=VARCHAR},
</if>
<if test="email != null" >
#{email,jdbcType=VARCHAR},
</if>
<if test="age != null" >
#{age,jdbcType=INTEGER},
</if>
</trim>
</insert>
<update id="updateByPrimaryKeySelective" parameterType="com.sunyo.customer.order.activity.model.USER" >
update users
<set >
<if test="username != null" >
username = #{username,jdbcType=VARCHAR},
</if>
<if test="password != null" >
password = #{password,jdbcType=VARCHAR},
</if>
<if test="birthday != null" >
birthday = #{birthday,jdbcType=TIMESTAMP},
</if>
<if test="sex != null" >
sex = #{sex,jdbcType=CHAR},
</if>
<if test="address != null" >
address = #{address,jdbcType=VARCHAR},
</if>
<if test="state != null" >
state = #{state,jdbcType=BIT},
</if>
<if test="mobilephone != null" >
mobilePhone = #{mobilephone,jdbcType=VARCHAR},
</if>
<if test="creattime != null" >
creatTime = #{creattime,jdbcType=TIMESTAMP},
</if>
<if test="updatetime != null" >
updateTime = #{updatetime,jdbcType=TIMESTAMP},
</if>
<if test="userface != null" >
userFace = #{userface,jdbcType=VARCHAR},
</if>
<if test="realname != null" >
realName = #{realname,jdbcType=VARCHAR},
</if>
<if test="email != null" >
email = #{email,jdbcType=VARCHAR},
</if>
<if test="age != null" >
age = #{age,jdbcType=INTEGER},
</if>
</set>
where user_id = #{userId,jdbcType=INTEGER}
</update>
<update id="updateByPrimaryKey" parameterType="com.sunyo.customer.order.activity.model.USER" >
update users
set username = #{username,jdbcType=VARCHAR},
password = #{password,jdbcType=VARCHAR},
birthday = #{birthday,jdbcType=TIMESTAMP},
sex = #{sex,jdbcType=CHAR},
address = #{address,jdbcType=VARCHAR},
state = #{state,jdbcType=BIT},
mobilePhone = #{mobilephone,jdbcType=VARCHAR},
creatTime = #{creattime,jdbcType=TIMESTAMP},
updateTime = #{updatetime,jdbcType=TIMESTAMP},
userFace = #{userface,jdbcType=VARCHAR},
realName = #{realname,jdbcType=VARCHAR},
email = #{email,jdbcType=VARCHAR},
age = #{age,jdbcType=INTEGER}
where user_id = #{userId,jdbcType=INTEGER}
</update>
</mapper>
\ No newline at end of file
... ...
<?xml version="1.0" encoding="UTF-8" standalone="yes"?>
<definitions xmlns="http://www.omg.org/spec/BPMN/20100524/MODEL"
xmlns:omgdi="http://www.omg.org/spec/DD/20100524/DI"
xmlns:activiti="http://activiti.org/bpmn"
xmlns:omgdc="http://www.omg.org/spec/DD/20100524/DC"
xmlns:tns="http://www.activiti.org/test"
xmlns:xsd="http://www.w3.org/2001/XMLSchema"
xmlns:bpmndi="http://www.omg.org/spec/BPMN/20100524/DI"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
expressionLanguage="http://www.w3.org/1999/XPath"
id="m1575793054911"
name=""
targetNamespace="http://www.activiti.org/test"
typeLanguage="http://www.w3.org/2001/XMLSchema">
<process id="customProcess" isClosed="false" isExecutable="true" name="工单流程"
processType="Public">
<startEvent id="_2" name="StartEvent"/>
<endEvent id="_3" name="EndEvent"/>
<userTask activiti:exclusive="true" id="processForm" name="客服工单"/>
<userTask activiti:exclusive="true" id="job" name="分配任务"/>
<sequenceFlow id="_6" sourceRef="_2" targetRef="processForm"/>
<sequenceFlow id="_7" sourceRef="processForm" targetRef="job"/>
<sequenceFlow id="_8" sourceRef="job" targetRef="_3"/>
</process>
<bpmndi:BPMNDiagram xmlns=""
documentation="background=#3C3F41;count=1;horizontalcount=1;orientation=0;width=842.4;height=1195.2;imageableWidth=832.4;imageableHeight=1185.2;imageableX=5.0;imageableY=5.0"
id="Diagram-_1"
name="New Diagram">
<bpmndi:BPMNPlane bpmnElement="customProcess">
<bpmndi:BPMNShape bpmnElement="_2" id="Shape-_2">
<omgdc:Bounds height="32.0" width="32.0" x="115.0" y="65.0"/>
<bpmndi:BPMNLabel>
<omgdc:Bounds height="32.0" width="32.0" x="0.0" y="0.0"/>
</bpmndi:BPMNLabel>
</bpmndi:BPMNShape>
<bpmndi:BPMNShape bpmnElement="_3" id="Shape-_3">
<omgdc:Bounds height="32.0" width="32.0" x="285.0" y="295.0"/>
<bpmndi:BPMNLabel>
<omgdc:Bounds height="32.0" width="32.0" x="0.0" y="0.0"/>
</bpmndi:BPMNLabel>
</bpmndi:BPMNShape>
<bpmndi:BPMNShape bpmnElement="processForm" id="Shape-processForm">
<omgdc:Bounds height="55.0" width="85.0" x="260.0" y="65.0"/>
<bpmndi:BPMNLabel>
<omgdc:Bounds height="55.0" width="85.0" x="0.0" y="0.0"/>
</bpmndi:BPMNLabel>
</bpmndi:BPMNShape>
<bpmndi:BPMNShape bpmnElement="job" id="Shape-job">
<omgdc:Bounds height="55.0" width="85.0" x="270.0" y="165.0"/>
<bpmndi:BPMNLabel>
<omgdc:Bounds height="55.0" width="85.0" x="0.0" y="0.0"/>
</bpmndi:BPMNLabel>
</bpmndi:BPMNShape>
<bpmndi:BPMNEdge bpmnElement="_6" id="BPMNEdge__6" sourceElement="_2"
targetElement="processForm">
<omgdi:waypoint x="147.0" y="81.0"/>
<omgdi:waypoint x="260.0" y="92.5"/>
<bpmndi:BPMNLabel>
<omgdc:Bounds height="0.0" width="0.0" x="0.0" y="0.0"/>
</bpmndi:BPMNLabel>
</bpmndi:BPMNEdge>
<bpmndi:BPMNEdge bpmnElement="_7" id="BPMNEdge__7" sourceElement="processForm"
targetElement="job">
<omgdi:waypoint x="307.5" y="120.0"/>
<omgdi:waypoint x="307.5" y="165.0"/>
<bpmndi:BPMNLabel>
<omgdc:Bounds height="0.0" width="0.0" x="0.0" y="0.0"/>
</bpmndi:BPMNLabel>
</bpmndi:BPMNEdge>
<bpmndi:BPMNEdge bpmnElement="_8" id="BPMNEdge__8" sourceElement="job" targetElement="_3">
<omgdi:waypoint x="301.0" y="220.0"/>
<omgdi:waypoint x="301.0" y="295.0"/>
<bpmndi:BPMNLabel>
<omgdc:Bounds height="0.0" width="0.0" x="0.0" y="0.0"/>
</bpmndi:BPMNLabel>
</bpmndi:BPMNEdge>
</bpmndi:BPMNPlane>
</bpmndi:BPMNDiagram>
</definitions>
\ No newline at end of file
... ...
<dec:DecMessage Version="3.1" xmlns:dec="http://www.chinaport.gov.cn/dec">
<dec:DecHead>
<!--Optional:-->
<dec:SeqNo>stringstringstring</dec:SeqNo>
<dec:IEFlag>string</dec:IEFlag>
<!--Optional:-->
<dec:Type>st</dec:Type>
<dec:AgentCode>string</dec:AgentCode>
<dec:AgentName>string</dec:AgentName>
<!--Optional:-->
<dec:ApprNo>string</dec:ApprNo>
<!--Optional:-->
<dec:BillNo>string</dec:BillNo>
<!--Optional:-->
<dec:ContrNo>string</dec:ContrNo>
<dec:CustomMaster>stri</dec:CustomMaster>
<!--Optional:-->
<dec:CutMode>str</dec:CutMode>
<dec:DistinatePort>stri</dec:DistinatePort>
<!--Optional:-->
<dec:FeeCurr>str</dec:FeeCurr>
<!--Optional:-->
<dec:FeeMark>s</dec:FeeMark>
<!--Optional:-->
<dec:FeeRate>string</dec:FeeRate>
<dec:GrossWet>string</dec:GrossWet>
<!--Optional:-->
<dec:IEDate>stringst</dec:IEDate>
<!--Optional:-->
<dec:IEPort>stri</dec:IEPort>
<!--Optional:-->
<dec:InsurCurr>str</dec:InsurCurr>
<!--Optional:-->
<dec:InsurMark>s</dec:InsurMark>
<!--Optional:-->
<dec:InsurRate>string</dec:InsurRate>
<!--Optional:-->
<dec:LicenseNo>string</dec:LicenseNo>
<!--Optional:-->
<dec:ManualNo>string</dec:ManualNo>
<dec:NetWt>string</dec:NetWt>
<!--Optional:-->
<dec:NoteS>string</dec:NoteS>
<!--Optional:-->
<dec:OtherCurr>str</dec:OtherCurr>
<!--Optional:-->
<dec:OtherMark>s</dec:OtherMark>
<!--Optional:-->
<dec:OtherRate>string</dec:OtherRate>
<!--Optional:-->
<dec:OwnerCode>string</dec:OwnerCode>
<dec:OwnerName>string</dec:OwnerName>
<dec:PackNo>string</dec:PackNo>
<dec:TradeCode>string</dec:TradeCode>
<dec:TradeCountry>str</dec:TradeCountry>
<dec:TradeMode>stri</dec:TradeMode>
<dec:TradeName>string</dec:TradeName>
<dec:TrafMode>s</dec:TrafMode>
<!--Optional:-->
<dec:TrafName>string</dec:TrafName>
<!--Optional:-->
<dec:TransMode>s</dec:TransMode>
<dec:WrapType>s</dec:WrapType>
<!--Optional:-->
<dec:EntryId>stringstringstring</dec:EntryId>
<!--Optional:-->
<dec:PreEntryId>stringstr</dec:PreEntryId>
<dec:EdiId>s</dec:EdiId>
<!--Optional:-->
<dec:Risk>string</dec:Risk>
<dec:CopName>string</dec:CopName>
<!--Optional:-->
<dec:CopCode>stringstr</dec:CopCode>
<dec:EntryType>s</dec:EntryType>
<!--Optional:-->
<dec:PDate>string</dec:PDate>
<!--Optional:-->
<dec:TypistNo>string</dec:TypistNo>
<!--Optional:-->
<dec:InputerName>string</dec:InputerName>
<!--Optional:-->
<dec:PartenerID>string</dec:PartenerID>
<!--Optional:-->
<dec:TgdNo>stringstringstring</dec:TgdNo>
<!--Optional:-->
<dec:DataSource>strin</dec:DataSource>
<dec:DeclTrnRel>s</dec:DeclTrnRel>
<!--Optional:-->
<dec:ChkSurety>s</dec:ChkSurety>
<!--Optional:-->
<dec:BillType>s</dec:BillType>
<!--Optional:-->
<dec:CopCodeScc>stringstringstring</dec:CopCodeScc>
<!--Optional:-->
<dec:OwnerCodeScc>string</dec:OwnerCodeScc>
<!--Optional:-->
<dec:AgentCodeScc>string</dec:AgentCodeScc>
<!--Optional:-->
<dec:TradeCoScc>string</dec:TradeCoScc>
<dec:PromiseItmes>string</dec:PromiseItmes>
<dec:TradeAreaCode>str</dec:TradeAreaCode>
<!--Optional:-->
<dec:CheckFlow>s</dec:CheckFlow>
<!--Optional:-->
<dec:TaxAaminMark>s</dec:TaxAaminMark>
<!--Optional:-->
<dec:MarkNo>string</dec:MarkNo>
<dec:DespPortCode>string</dec:DespPortCode>
<dec:EntyPortCode>string</dec:EntyPortCode>
<dec:GoodsPlace>string</dec:GoodsPlace>
<!--Optional:-->
<dec:BLNo>string</dec:BLNo>
<!--Optional:-->
<dec:InspOrgCode>string</dec:InspOrgCode>
<!--Optional:-->
<dec:SpecDeclFlag>string</dec:SpecDeclFlag>
<!--Optional:-->
<dec:PurpOrgCode>string</dec:PurpOrgCode>
<!--Optional:-->
<dec:DespDate>string</dec:DespDate>
<!--Optional:-->
<dec:CmplDschrgDt>string</dec:CmplDschrgDt>
<!--Optional:-->
<dec:CorrelationReasonFlag>st</dec:CorrelationReasonFlag>
<!--Optional:-->
<dec:VsaOrgCode>string</dec:VsaOrgCode>
<!--Optional:-->
<dec:OrigBoxFlag>s</dec:OrigBoxFlag>
<dec:DeclareName>string</dec:DeclareName>
<dec:NoOtherPack>s</dec:NoOtherPack>
<!--Optional:-->
<dec:OrgCode>string</dec:OrgCode>
<!--Optional:-->
<dec:OverseasConsignorCode>string</dec:OverseasConsignorCode>
<!--Optional:-->
<dec:OverseasConsignorCname>string</dec:OverseasConsignorCname>
<!--Optional:-->
<dec:OverseasConsignorEname>string</dec:OverseasConsignorEname>
<!--Optional:-->
<dec:OverseasConsignorAddr>string</dec:OverseasConsignorAddr>
<!--Optional:-->
<dec:OverseasConsigneeCode>string</dec:OverseasConsigneeCode>
<!--Optional:-->
<dec:OverseasConsigneeEname>string</dec:OverseasConsigneeEname>
<!--Optional:-->
<dec:DomesticConsigneeEname>string</dec:DomesticConsigneeEname>
<!--Optional:-->
<dec:CorrelationNo>string</dec:CorrelationNo>
<!--Optional:-->
<dec:EdiRemark2>string</dec:EdiRemark2>
<!--Optional:-->
<dec:EdiRemark>string</dec:EdiRemark>
</dec:DecHead>
<dec:DecLists>
<!--0 to 50 repetitions:-->
<dec:DecList>
<!--Optional:-->
<dec:ClassMark>s</dec:ClassMark>
<dec:CodeTS>stringstri</dec:CodeTS>
<!--Optional:-->
<dec:ContrItem>string</dec:ContrItem>
<dec:DeclPrice>string</dec:DeclPrice>
<!--Optional:-->
<dec:DutyMode>string</dec:DutyMode>
<!--Optional:-->
<dec:Factor>string</dec:Factor>
<!--Optional:-->
<dec:GModel>string</dec:GModel>
<dec:GName>string</dec:GName>
<dec:GNo>string</dec:GNo>
<dec:OriginCountry>str</dec:OriginCountry>
<!--Optional:-->
<dec:TradeCurr>string</dec:TradeCurr>
<dec:DeclTotal>string</dec:DeclTotal>
<dec:GQty>string</dec:GQty>
<!--Optional:-->
<dec:FirstQty>string</dec:FirstQty>
<!--Optional:-->
<dec:SecondQty>string</dec:SecondQty>
<!--Optional:-->
<dec:GUnit>str</dec:GUnit>
<!--Optional:-->
<dec:FirstUnit>str</dec:FirstUnit>
<!--Optional:-->
<dec:SecondUnit>str</dec:SecondUnit>
<!--Optional:-->
<dec:UseTo>st</dec:UseTo>
<!--Optional:-->
<dec:WorkUsd>string</dec:WorkUsd>
<!--Optional:-->
<dec:ExgNo>string</dec:ExgNo>
<!--Optional:-->
<dec:ExgVersion>string</dec:ExgVersion>
<dec:DestinationCountry>str</dec:DestinationCountry>
<dec:CiqCode>string</dec:CiqCode>
<!--Optional:-->
<dec:DeclGoodsEname>string</dec:DeclGoodsEname>
<!--Optional:-->
<dec:OrigPlaceCode>string</dec:OrigPlaceCode>
<!--Optional:-->
<dec:Purpose>stri</dec:Purpose>
<!--Optional:-->
<dec:ProdValidDt>string</dec:ProdValidDt>
<!--Optional:-->
<dec:ProdQgp>string</dec:ProdQgp>
<!--Optional:-->
<dec:GoodsAttr>string</dec:GoodsAttr>
<!--Optional:-->
<dec:Stuff>string</dec:Stuff>
<!--Optional:-->
<dec:Uncode>string</dec:Uncode>
<!--Optional:-->
<dec:DangName>string</dec:DangName>
<!--Optional:-->
<dec:DangPackType>stri</dec:DangPackType>
<!--Optional:-->
<dec:DangPackSpec>string</dec:DangPackSpec>
<!--Optional:-->
<dec:EngManEntCnm>string</dec:EngManEntCnm>
<!--Optional:-->
<dec:NoDangFlag>s</dec:NoDangFlag>
<!--Optional:-->
<dec:DestCode>string</dec:DestCode>
<!--Optional:-->
<dec:GoodsSpec>string</dec:GoodsSpec>
<!--Optional:-->
<dec:GoodsModel>string</dec:GoodsModel>
<!--Optional:-->
<dec:GoodsBrand>string</dec:GoodsBrand>
<!--Optional:-->
<dec:ProduceDate>string</dec:ProduceDate>
<!--Optional:-->
<dec:ProdBatchNo>string</dec:ProdBatchNo>
<!--Optional:-->
<dec:DistrictCode>string</dec:DistrictCode>
<!--Optional:-->
<dec:CiqName>string</dec:CiqName>
<!--Optional:-->
<dec:DecGoodsLimits>
<!--Zero or more repetitions:-->
<dec:DecGoodsLimit>
<dec:GoodsNo>string</dec:GoodsNo>
<dec:LicTypeCode>strin</dec:LicTypeCode>
<!--Optional:-->
<dec:LicenceNo>string</dec:LicenceNo>
<!--Optional:-->
<dec:LicWrtofDetailNo>st</dec:LicWrtofDetailNo>
<!--Optional:-->
<dec:LicWrtofQty>string</dec:LicWrtofQty>
<!--Zero or more repetitions:-->
<dec:DecGoodsLimitVin>
<dec:LicenceNo>string</dec:LicenceNo>
<dec:LicTypeCode>strin</dec:LicTypeCode>
<dec:VinNo>strin</dec:VinNo>
<!--Optional:-->
<dec:BillLadDate>string</dec:BillLadDate>
<!--Optional:-->
<dec:QualityQgp>string</dec:QualityQgp>
<!--Optional:-->
<dec:MotorNo>string</dec:MotorNo>
<!--Optional:-->
<dec:VinCode>string</dec:VinCode>
<!--Optional:-->
<dec:ChassisNo>string</dec:ChassisNo>
<!--Optional:-->
<dec:InvoiceNum>string</dec:InvoiceNum>
<!--Optional:-->
<dec:ProdCnnm>string</dec:ProdCnnm>
<!--Optional:-->
<dec:ProdEnnm>string</dec:ProdEnnm>
<!--Optional:-->
<dec:ModelEn>string</dec:ModelEn>
<!--Optional:-->
<dec:PricePerUnit>string</dec:PricePerUnit>
</dec:DecGoodsLimitVin>
</dec:DecGoodsLimit>
</dec:DecGoodsLimits>
<!--Optional:-->
<dec:MnufctrRegNo>string</dec:MnufctrRegNo>
<!--Optional:-->
<dec:MnufctrRegName>string</dec:MnufctrRegName>
</dec:DecList>
</dec:DecLists>
<dec:DecContainers>
<!--0 to 500 repetitions:-->
<dec:Container>
<dec:ContainerId>string</dec:ContainerId>
<dec:ContainerMd>str</dec:ContainerMd>
<!--Optional:-->
<dec:GoodsNo>string</dec:GoodsNo>
<!--Optional:-->
<dec:LclFlag>s</dec:LclFlag>
<!--Optional:-->
<dec:GoodsContaWt>string</dec:GoodsContaWt>
</dec:Container>
</dec:DecContainers>
<dec:DecLicenseDocus>
<!--0 to 7 repetitions:-->
<dec:LicenseDocu>
<dec:DocuCode>s</dec:DocuCode>
<dec:CertCode>string</dec:CertCode>
</dec:LicenseDocu>
</dec:DecLicenseDocus>
<!--Optional:-->
<dec:DecRequestCerts>
<!--Zero or more repetitions:-->
<dec:DecRequestCert>
<dec:AppCertCode>string</dec:AppCertCode>
<dec:ApplOri>string</dec:ApplOri>
<dec:ApplCopyQuan>string</dec:ApplCopyQuan>
</dec:DecRequestCert>
</dec:DecRequestCerts>
<!--Optional:-->
<dec:DecOtherPacks>
<!--Zero or more repetitions:-->
<dec:DecOtherPack>
<dec:PackQty>string</dec:PackQty>
<dec:PackType>string</dec:PackType>
</dec:DecOtherPack>
</dec:DecOtherPacks>
<!--Optional:-->
<dec:DecCopLimits>
<!--Zero or more repetitions:-->
<dec:DecCopLimit>
<!--Optional:-->
<dec:EntQualifNo>string</dec:EntQualifNo>
<dec:EntQualifTypeCode>strin</dec:EntQualifTypeCode>
</dec:DecCopLimit>
</dec:DecCopLimits>
<!--Optional:-->
<dec:DecUsers>
<!--Zero or more repetitions:-->
<dec:DecUser>
<!--Optional:-->
<dec:UseOrgPersonCode>string</dec:UseOrgPersonCode>
<!--Optional:-->
<dec:UseOrgPersonTel>strin</dec:UseOrgPersonTel>
</dec:DecUser>
</dec:DecUsers>
<!--Optional:-->
<dec:DecMarkLobs>
<!--Zero or more repetitions:-->
<dec:DecMarkLob>
<dec:AttachName>string</dec:AttachName>
<!--Optional:-->
<dec:AttachType>st</dec:AttachType>
<dec:Attachment>65</dec:Attachment>
</dec:DecMarkLob>
</dec:DecMarkLobs>
<dec:DecFreeTxt>
<!--Optional:-->
<dec:RelId>string</dec:RelId>
<!--Optional:-->
<dec:RelManNo>stringstring</dec:RelManNo>
<!--Optional:-->
<dec:BonNo>string</dec:BonNo>
<!--Optional:-->
<dec:VoyNo>string</dec:VoyNo>
<!--Optional:-->
<dec:DecBpNo>string</dec:DecBpNo>
<!--Optional:-->
<dec:CusFie>string</dec:CusFie>
<!--Optional:-->
<dec:DecNo>string</dec:DecNo>
</dec:DecFreeTxt>
<dec:DecSign>
<dec:OperType>s</dec:OperType>
<!--Optional:-->
<dec:ICCode>stringstrings</dec:ICCode>
<!--Optional:-->
<dec:CopCode>stringstr</dec:CopCode>
<!--Optional:-->
<dec:OperName>string</dec:OperName>
<dec:ClientSeqNo>string</dec:ClientSeqNo>
<dec:Sign>string</dec:Sign>
<dec:SignDate>stringstringstri</dec:SignDate>
<!--Optional:-->
<dec:Certificate>string</dec:Certificate>
<dec:HostId>string</dec:HostId>
<!--Optional:-->
<dec:BillSeqNo>string</dec:BillSeqNo>
<!--Optional:-->
<dec:DomainId>s</dec:DomainId>
<!--Optional:-->
<dec:Note>string</dec:Note>
</dec:DecSign>
<!--Optional:-->
<dec:TrnHead>
<!--Optional:-->
<dec:TrnPreId>stringstringstring</dec:TrnPreId>
<!--Optional:-->
<dec:TransNo>stringstringstri</dec:TransNo>
<!--Optional:-->
<dec:TurnNo>stringstringstri</dec:TurnNo>
<!--Optional:-->
<dec:NativeTrafMode>s</dec:NativeTrafMode>
<!--Optional:-->
<dec:TrafCustomsNo>stringstrings</dec:TrafCustomsNo>
<!--Optional:-->
<dec:NativeShipName>string</dec:NativeShipName>
<!--Optional:-->
<dec:NativeVoyageNo>stringstringstringstringstringst</dec:NativeVoyageNo>
<!--Optional:-->
<dec:ContractorName>string</dec:ContractorName>
<!--Optional:-->
<dec:ContractorCode>stringstri</dec:ContractorCode>
<!--Optional:-->
<dec:TransFlag>st</dec:TransFlag>
<!--Optional:-->
<dec:ValidTime>stringst</dec:ValidTime>
<!--Optional:-->
<dec:ESealFlag>s</dec:ESealFlag>
<!--Optional:-->
<dec:Notes>string</dec:Notes>
<!--Optional:-->
<dec:TrnType>s</dec:TrnType>
<!--Optional:-->
<dec:ApplCodeScc>stringstringstring</dec:ApplCodeScc>
</dec:TrnHead>
<!--Optional:-->
<dec:TrnList>
<!--Optional:-->
<dec:TrafMode>s</dec:TrafMode>
<!--Optional:-->
<dec:ShipId>string</dec:ShipId>
<!--Optional:-->
<dec:ShipNameEn>string</dec:ShipNameEn>
<!--Optional:-->
<dec:VoyageNo>string</dec:VoyageNo>
<!--Optional:-->
<dec:BillNo>string</dec:BillNo>
<!--Optional:-->
<dec:IEDate>stringst</dec:IEDate>
</dec:TrnList>
<!--Optional:-->
<dec:TrnContainers>
<!--0 to 500 repetitions:-->
<dec:TrnContainer>
<dec:ContaNo>string</dec:ContaNo>
<!--Optional:-->
<dec:ContaSn>string</dec:ContaSn>
<!--Optional:-->
<dec:ContaModel>stri</dec:ContaModel>
<!--Optional:-->
<dec:SealNo>string</dec:SealNo>
<!--Optional:-->
<dec:TransName>string</dec:TransName>
<!--Optional:-->
<dec:TransWeight>string</dec:TransWeight>
</dec:TrnContainer>
</dec:TrnContainers>
<!--Optional:-->
<dec:TrnContaGoodsList>
<!--Zero or more repetitions:-->
<dec:TrnContaGoods>
<dec:ContaNo>string</dec:ContaNo>
<dec:GNo>string</dec:GNo>
<dec:ContaGoodsCount>string</dec:ContaGoodsCount>
<dec:ContaGoodsWeight>string</dec:ContaGoodsWeight>
</dec:TrnContaGoods>
</dec:TrnContaGoodsList>
<!--Optional:-->
<dec:DecSupplementLists>
<!--0 to 60 repetitions:-->
<dec:DecSupplementList>
<dec:GNo>st</dec:GNo>
<dec:SupType>s</dec:SupType>
<dec:BrandCN>string</dec:BrandCN>
<dec:BrandEN>string</dec:BrandEN>
<dec:Buyer>string</dec:Buyer>
<dec:BuyerContact>string</dec:BuyerContact>
<dec:BuyerAddr>string</dec:BuyerAddr>
<dec:BuyerTel>string</dec:BuyerTel>
<dec:Seller>string</dec:Seller>
<dec:SellerContact>string</dec:SellerContact>
<dec:SellerAddr>string</dec:SellerAddr>
<dec:SellerTel>string</dec:SellerTel>
<dec:Factory>string</dec:Factory>
<dec:FactoryContact>string</dec:FactoryContact>
<dec:FactoryAddr>string</dec:FactoryAddr>
<dec:FactoryTel>string</dec:FactoryTel>
<dec:ContrNo>string</dec:ContrNo>
<dec:ContrDate>string</dec:ContrDate>
<dec:InvoiceNo>string</dec:InvoiceNo>
<dec:InvoiceDate>string</dec:InvoiceDate>
<dec:I_BabRel>string</dec:I_BabRel>
<dec:I_PriceEffect>s</dec:I_PriceEffect>
<dec:I_PriceClose>string</dec:I_PriceClose>
<dec:I_OtherLimited>s</dec:I_OtherLimited>
<dec:I_OtherEffect>s</dec:I_OtherEffect>
<dec:I_Note1>string</dec:I_Note1>
<dec:I_IsUsefee>s</dec:I_IsUsefee>
<dec:I_IsProfit>s</dec:I_IsProfit>
<dec:I_Note2>string</dec:I_Note2>
<dec:Curr>str</dec:Curr>
<dec:InvoicePrice>string</dec:InvoicePrice>
<dec:InvoiceAmount>string</dec:InvoiceAmount>
<dec:InvoiceNote>string</dec:InvoiceNote>
<dec:GoodsPrice>string</dec:GoodsPrice>
<dec:GoodsAmount>string</dec:GoodsAmount>
<dec:GoodsNote>string</dec:GoodsNote>
<dec:I_CommissionPrice>string</dec:I_CommissionPrice>
<dec:I_CommissionAmount>string</dec:I_CommissionAmount>
<dec:I_CommissionNote>string</dec:I_CommissionNote>
<dec:I_ContainerPrice>string</dec:I_ContainerPrice>
<dec:I_ContainerAmount>string</dec:I_ContainerAmount>
<dec:I_ContainerNote>string</dec:I_ContainerNote>
<dec:I_PackPrice>string</dec:I_PackPrice>
<dec:I_PackAmount>string</dec:I_PackAmount>
<dec:I_PackNote>string</dec:I_PackNote>
<dec:I_PartPrice>string</dec:I_PartPrice>
<dec:I_PartAmount>string</dec:I_PartAmount>
<dec:I_PartNote>string</dec:I_PartNote>
<dec:I_ToolPrice>string</dec:I_ToolPrice>
<dec:I_ToolAmount>string</dec:I_ToolAmount>
<dec:I_ToolNote>string</dec:I_ToolNote>
<dec:I_LossPrice>string</dec:I_LossPrice>
<dec:I_LossAmount>string</dec:I_LossAmount>
<dec:I_LossNote>string</dec:I_LossNote>
<dec:I_DesignPrice>string</dec:I_DesignPrice>
<dec:I_DesignAmount>string</dec:I_DesignAmount>
<dec:I_DesignNote>string</dec:I_DesignNote>
<dec:I_UsefeePrice>string</dec:I_UsefeePrice>
<dec:I_UsefeeAmount>string</dec:I_UsefeeAmount>
<dec:I_UsefeeNote>string</dec:I_UsefeeNote>
<dec:I_ProfitPrice>string</dec:I_ProfitPrice>
<dec:I_ProfitAmount>string</dec:I_ProfitAmount>
<dec:I_ProfitNote>string</dec:I_ProfitNote>
<dec:I_FeePrice>string</dec:I_FeePrice>
<dec:I_FeeAmount>string</dec:I_FeeAmount>
<dec:I_FeeNote>string</dec:I_FeeNote>
<dec:I_OtherPrice>string</dec:I_OtherPrice>
<dec:I_OtherAmount>string</dec:I_OtherAmount>
<dec:I_OtherNote>string</dec:I_OtherNote>
<dec:I_InsurPrice>string</dec:I_InsurPrice>
<dec:I_InsurAmount>string</dec:I_InsurAmount>
<dec:I_InsurNote>string</dec:I_InsurNote>
<dec:E_IsDutyDel>s</dec:E_IsDutyDel>
<dec:GNameOther>string</dec:GNameOther>
<dec:CodeTsOther>stringstri</dec:CodeTsOther>
<dec:IsClassDecision>s</dec:IsClassDecision>
<dec:DecisionNO>string</dec:DecisionNO>
<dec:CodeTsDecision>stringstri</dec:CodeTsDecision>
<dec:DecisionCus>stri</dec:DecisionCus>
<dec:IsSampleTest>s</dec:IsSampleTest>
<dec:GOptions>string</dec:GOptions>
<dec:TrafMode>s</dec:TrafMode>
<dec:IsDirectTraf>s</dec:IsDirectTraf>
<dec:TransitCountry>string</dec:TransitCountry>
<dec:DestPort>stri</dec:DestPort>
<dec:DeclPort>stri</dec:DeclPort>
<dec:BillNo>string</dec:BillNo>
<dec:OriginCountry>str</dec:OriginCountry>
<dec:OriginMark>strin</dec:OriginMark>
<dec:CertCountry>string</dec:CertCountry>
<dec:CertNO>string</dec:CertNO>
<dec:CertStandard>s</dec:CertStandard>
<dec:OtherNote>string</dec:OtherNote>
<dec:IsSecret>s</dec:IsSecret>
<dec:AgentType>s</dec:AgentType>
<dec:DeclAddr>string</dec:DeclAddr>
<dec:DeclPost>string</dec:DeclPost>
<dec:DeclTel>string</dec:DeclTel>
</dec:DecSupplementList>
</dec:DecSupplementLists>
<!--1 to 10 repetitions:-->
<dec:EdocRealation>
<dec:EdocID>string</dec:EdocID>
<dec:EdocCode>stringst</dec:EdocCode>
<dec:EdocFomatType>st</dec:EdocFomatType>
<dec:OpNote>string</dec:OpNote>
<dec:EdocCopId>string</dec:EdocCopId>
<dec:EdocOwnerCode>stringstri</dec:EdocOwnerCode>
<dec:SignUnit>string</dec:SignUnit>
<dec:SignTime>stringstringst</dec:SignTime>
<!--Optional:-->
<dec:EdocOwnerName>string</dec:EdocOwnerName>
<!--Optional:-->
<dec:EdocSize>string</dec:EdocSize>
</dec:EdocRealation>
<!--0 to 20 repetitions:-->
<dec:EcoRelation>
<dec:CertType>str</dec:CertType>
<dec:EcoCertNo>stringstringstringstringstringstringstringstringstringstringstri</dec:EcoCertNo>
<dec:DecGNo>string</dec:DecGNo>
<dec:EcoGNo>string</dec:EcoGNo>
<!--Optional:-->
<dec:ExtendFiled>string</dec:ExtendFiled>
</dec:EcoRelation>
<!--Optional:-->
<dec:SddTax>
<dec:SddTaxHead>
<!--Optional:-->
<dec:FileName>string</dec:FileName>
<!--Optional:-->
<dec:SeqNo>string</dec:SeqNo>
<!--Optional:-->
<dec:SddNo>string</dec:SddNo>
<!--Optional:-->
<dec:IEFlag>s</dec:IEFlag>
<!--Optional:-->
<dec:DeclPort>stri</dec:DeclPort>
<!--Optional:-->
<dec:DDate>string</dec:DDate>
<!--Optional:-->
<dec:TradeCo>stringstri</dec:TradeCo>
<!--Optional:-->
<dec:TradeName>string</dec:TradeName>
<!--Optional:-->
<dec:InRatio>string</dec:InRatio>
<!--Optional:-->
<dec:TradeMode>stri</dec:TradeMode>
<!--Optional:-->
<dec:CutMode>str</dec:CutMode>
<!--Optional:-->
<dec:TransMode>s</dec:TransMode>
<!--Optional:-->
<dec:FeeMark>s</dec:FeeMark>
<!--Optional:-->
<dec:FeeCurr>str</dec:FeeCurr>
<!--Optional:-->
<dec:FeeRate>string</dec:FeeRate>
<!--Optional:-->
<dec:InsurMark>s</dec:InsurMark>
<!--Optional:-->
<dec:InsurCurr>str</dec:InsurCurr>
<!--Optional:-->
<dec:InsurRate>string</dec:InsurRate>
<!--Optional:-->
<dec:OtherMark>s</dec:OtherMark>
<!--Optional:-->
<dec:OtherCurr>str</dec:OtherCurr>
<!--Optional:-->
<dec:OtherRate>string</dec:OtherRate>
<!--Optional:-->
<dec:ManualNo>string</dec:ManualNo>
<!--Optional:-->
<dec:TradeCoScc>stringstringstring</dec:TradeCoScc>
<!--Optional:-->
<dec:GrossWt>string</dec:GrossWt>
<!--Optional:-->
<dec:NoteS>string</dec:NoteS>
<dec:LegalLiability>string</dec:LegalLiability>
<dec:Sign>string</dec:Sign>
<!--Optional:-->
<dec:MessId>string</dec:MessId>
<!--Optional:-->
<dec:CertSeqNo>string</dec:CertSeqNo>
<!--Optional:-->
<dec:Status>string</dec:Status>
<!--Optional:-->
<dec:F_DATE>string</dec:F_DATE>
<dec:TAX_NO>string</dec:TAX_NO>
</dec:SddTaxHead>
<dec:SddTaxLists>
<!--1 to 50 repetitions:-->
<dec:SddTaxList>
<dec:GNo>string</dec:GNo>
<!--Optional:-->
<dec:CodeTs>string</dec:CodeTs>
<!--Optional:-->
<dec:GName>string</dec:GName>
<!--Optional:-->
<dec:OriginCountry>str</dec:OriginCountry>
<!--Optional:-->
<dec:AgreementId>str</dec:AgreementId>
<!--Optional:-->
<dec:Qty1>string</dec:Qty1>
<!--Optional:-->
<dec:Unit1>str</dec:Unit1>
<!--Optional:-->
<dec:Qty2>string</dec:Qty2>
<!--Optional:-->
<dec:Unit2>str</dec:Unit2>
<!--Optional:-->
<dec:TradeCurr>str</dec:TradeCurr>
<!--Optional:-->
<dec:DeclPrice>string</dec:DeclPrice>
<!--Optional:-->
<dec:DeclTotal>string</dec:DeclTotal>
<!--Optional:-->
<dec:DutyMode>s</dec:DutyMode>
<!--Optional:-->
<dec:Antidumping>s</dec:Antidumping>
<!--Optional:-->
<dec:Antisubsidy>s</dec:Antisubsidy>
<!--Optional:-->
<dec:DutyValue>string</dec:DutyValue>
<!--Optional:-->
<dec:DutyRate>string</dec:DutyRate>
<!--Optional:-->
<dec:QtyDutyRate>string</dec:QtyDutyRate>
<!--Optional:-->
<dec:RegRate>string</dec:RegRate>
<!--Optional:-->
<dec:QtyRegRate>string</dec:QtyRegRate>
<!--Optional:-->
<dec:TaxRate>string</dec:TaxRate>
<!--Optional:-->
<dec:AntidumpingRate>string</dec:AntidumpingRate>
<!--Optional:-->
<dec:AntisubsidyRate>string</dec:AntisubsidyRate>
<!--Optional:-->
<dec:TrashfundRate>string</dec:TrashfundRate>
</dec:SddTaxList>
</dec:SddTaxLists>
<dec:SddTaxDetails>
<!--1 to 500 repetitions:-->
<dec:SddTaxDetail>
<dec:GNo>string</dec:GNo>
<dec:TaxType>s</dec:TaxType>
<dec:RealTax>string</dec:RealTax>
</dec:SddTaxDetail>
</dec:SddTaxDetails>
</dec:SddTax>
<!--Optional:-->
<dec:DecRisk>
<dec:Risk>string</dec:Risk>
<dec:Sign>string</dec:Sign>
<dec:SignDate>string</dec:SignDate>
<dec:Note>string</dec:Note>
</dec:DecRisk>
</dec:DecMessage>
\ No newline at end of file
... ...
package com.sunyo.customer.order;
import org.junit.Test;
import org.junit.runner.RunWith;
import org.springframework.boot.test.context.SpringBootTest;
import org.springframework.test.context.junit4.SpringRunner;
@RunWith(SpringRunner.class)
@SpringBootTest
public class OrderApplicationTests {
@Test
public void contextLoads() {
}
}
... ...