pull/5/head
infin_caishuxiao 8 years ago
parent 73a3d34ddc
commit d7c44d16c9

@ -68,7 +68,16 @@
<artifactId>spring-boot-starter-test</artifactId>
<scope>test</scope>
</dependency>
<!-- jdbc -->
<dependency>
<groupId>mysql</groupId>
<artifactId>mysql-connector-java</artifactId>
</dependency>
<dependency>
<groupId>org.mybatis.spring.boot</groupId>
<artifactId>mybatis-spring-boot-starter</artifactId>
<version>1.3.0</version>
</dependency>
<!-- xxl-job-core -->
<dependency>
<groupId>com.xuxueli</groupId>

@ -0,0 +1,11 @@
package com.infincash.statistics.risk.table;
//FIXME mybatis自动生成模板
//com.infincash.statistics.risk.table
public class TRiskRule {
String id;
String type_code;
String name_code;
String value;
String express;
}

@ -0,0 +1,5 @@
package com.infincash.statistics.risk.table;
public class TUserRisk {
}

@ -1,3 +1,8 @@
spring.datasource.url=jdbc:mysql://172.16.16.98:3306/microfinance?useUnicode=true&zeroDateTimeBehavior=convertToNull&allowMultiQueries=true&rewriteBatchedStatements=true&useSSL=false
spring.datasource.username=jobopr
spring.datasource.password=jobopr666
spring.datasource.driver-class-name=com.mysql.jdbc.Driver
# web port
server.port=9001

Loading…
Cancel
Save