Browse Source

提交代码

qiubo 4 years ago
parent
commit
69c80d619e
100 changed files with 12621 additions and 0 deletions
  1. 176 0
      pom.xml
  2. 1 0
      readme.md
  3. 21 0
      src/main/java/com/hywa/banktest/BanktestApplication.java
  4. BIN
      src/main/java/com/hywa/banktest/bankframework/._A
  5. BIN
      src/main/java/com/hywa/banktest/bankframework/A
  6. 11 0
      src/main/java/com/hywa/banktest/bankframework/exception/ToManyTradeException.java
  7. 36 0
      src/main/java/com/hywa/banktest/bankframework/pack/Dlmaps.java
  8. 196 0
      src/main/java/com/hywa/banktest/bankframework/pack/IN.java
  9. 42 0
      src/main/java/com/hywa/banktest/bankframework/pack/OUT.java
  10. 66 0
      src/main/java/com/hywa/banktest/bankframework/pack/PUB.java
  11. 123 0
      src/main/java/com/hywa/banktest/bankframework/pack/TransVo.java
  12. 60 0
      src/main/java/com/hywa/banktest/bankframework/pack/vo/AccountValidateVo.java
  13. 57 0
      src/main/java/com/hywa/banktest/bankframework/schedule/BankRequsetProcess.java
  14. 139 0
      src/main/java/com/hywa/banktest/bankframework/schedule/TransSchedule.java
  15. 114 0
      src/main/java/com/hywa/banktest/bankframework/service/BankService.java
  16. 270 0
      src/main/java/com/hywa/banktest/bankframework/service/BankServiceImpl.java
  17. 173 0
      src/main/java/com/hywa/banktest/bankframework/socketHandle/BankSocket.java
  18. 146 0
      src/main/java/com/hywa/banktest/bankframework/utils/DateUtils.java
  19. 210 0
      src/main/java/com/hywa/banktest/bankframework/utils/FtpUtil.java
  20. 377 0
      src/main/java/com/hywa/banktest/bankframework/utils/StringUtils.java
  21. 163 0
      src/main/java/com/hywa/banktest/bankframework/utils/TransUtils.java
  22. 95 0
      src/main/java/com/hywa/banktest/bankframework/utils/UUIDUtils.java
  23. 37 0
      src/main/java/com/hywa/banktest/bankframework/utils/XmlUtils.java
  24. 29 0
      src/main/java/com/hywa/banktest/bankframework/utils/httpclient/ClientKeyStore.java
  25. 360 0
      src/main/java/com/hywa/banktest/bankframework/utils/httpclient/EasyHttpUtils.java
  26. 110 0
      src/main/java/com/hywa/banktest/bankframework/utils/httpclient/HttpClientWrapper.java
  27. 23 0
      src/main/java/com/hywa/banktest/bankframework/utils/httpclient/HttpResponseCallBack.java
  28. 24 0
      src/main/java/com/hywa/banktest/bankframework/utils/httpclient/MethodType.java
  29. 178 0
      src/main/java/com/hywa/banktest/bankframework/utils/httpclient/SimpleHttpParam.java
  30. 116 0
      src/main/java/com/hywa/banktest/bankframework/utils/httpclient/SimpleHttpResult.java
  31. 531 0
      src/main/java/com/hywa/banktest/bankframework/utils/httpclient/SimpleHttpUtils.java
  32. 15 0
      src/main/java/com/hywa/banktest/bankframework/utils/httpclient/TrustKeyStore.java
  33. 144 0
      src/main/java/com/hywa/banktest/bankframework/utils/rsa/AESCodec.java
  34. 129 0
      src/main/java/com/hywa/banktest/bankframework/utils/rsa/Base64.java
  35. 429 0
      src/main/java/com/hywa/banktest/bankframework/utils/rsa/ByteManager.java
  36. 48 0
      src/main/java/com/hywa/banktest/bankframework/utils/rsa/CipherStream.java
  37. 86 0
      src/main/java/com/hywa/banktest/bankframework/utils/rsa/DES.java
  38. 124 0
      src/main/java/com/hywa/banktest/bankframework/utils/rsa/DESede.java
  39. 76 0
      src/main/java/com/hywa/banktest/bankframework/utils/rsa/HexCodec.java
  40. 113 0
      src/main/java/com/hywa/banktest/bankframework/utils/rsa/MD5.java
  41. 42 0
      src/main/java/com/hywa/banktest/bankframework/utils/rsa/PinTool.java
  42. 334 0
      src/main/java/com/hywa/banktest/bankframework/utils/rsa/RSACoder.java
  43. 283 0
      src/main/java/com/hywa/banktest/bankframework/utils/rsa/RSAEncrpt.java
  44. 382 0
      src/main/java/com/hywa/banktest/bankframework/utils/rsa/RSAUtils.java
  45. 72 0
      src/main/java/com/hywa/banktest/bankframework/utils/rsa/RsaSign.java
  46. 147 0
      src/main/java/com/hywa/banktest/bankframework/utils/string/Sign.java
  47. 160 0
      src/main/java/com/hywa/banktest/bankframework/utils/string/StrUtil.java
  48. 586 0
      src/main/java/com/hywa/banktest/bankframework/utils/string/StringTools.java
  49. 540 0
      src/main/java/com/hywa/banktest/bankframework/utils/string/StringUtil.java
  50. 1 0
      src/main/java/com/hywa/banktest/bankframework/utils/string/StringUtilParent.java
  51. 89 0
      src/main/java/com/hywa/banktest/bankframework/utils/validate/IDCardUtils.java
  52. 33 0
      src/main/java/com/hywa/banktest/bankframework/utils/validate/RegularUtil.java
  53. 618 0
      src/main/java/com/hywa/banktest/bankframework/utils/validate/ValidateUtils.java
  54. 121 0
      src/main/java/com/hywa/banktest/common/AjaxJson.java
  55. 21 0
      src/main/java/com/hywa/banktest/common/ApplyClearingForm.java
  56. 23 0
      src/main/java/com/hywa/banktest/common/BaseMapper.java
  57. 24 0
      src/main/java/com/hywa/banktest/common/BaseService.java
  58. 36 0
      src/main/java/com/hywa/banktest/common/OrderInfoClearingForm.java
  59. 37 0
      src/main/java/com/hywa/banktest/common/ResponseEnum.java
  60. 41 0
      src/main/java/com/hywa/banktest/common/ValidateSignUtils.java
  61. 31 0
      src/main/java/com/hywa/banktest/config/ActiveRecord.java
  62. 164 0
      src/main/java/com/hywa/banktest/config/DruidDBConfig.java
  63. BIN
      src/main/java/com/hywa/banktest/config/碳汇资金代发请算请求.png
  64. 198 0
      src/main/java/com/hywa/banktest/controller/ApplyClearingController.java
  65. 37 0
      src/main/java/com/hywa/banktest/dao/ClearingRecordDetailMapper.java
  66. 16 0
      src/main/java/com/hywa/banktest/dao/ClearingRecordMapper.java
  67. 49 0
      src/main/java/com/hywa/banktest/dao/OrderInfoMapper.java
  68. 8 0
      src/main/java/com/hywa/banktest/dao/PaymentLogMapper.java
  69. 11 0
      src/main/java/com/hywa/banktest/dao/PaymentRecordMapper.java
  70. 15 0
      src/main/java/com/hywa/banktest/dao/TreeOrdersMapper.java
  71. 33 0
      src/main/java/com/hywa/banktest/entity/BaseVO.java
  72. 50 0
      src/main/java/com/hywa/banktest/entity/CheckBankVO.java
  73. 96 0
      src/main/java/com/hywa/banktest/entity/ClearingRecord.java
  74. 126 0
      src/main/java/com/hywa/banktest/entity/ClearingRecordDetail.java
  75. 5 0
      src/main/java/com/hywa/banktest/entity/GetBankNo.java
  76. 238 0
      src/main/java/com/hywa/banktest/entity/OrderInfo.java
  77. 65 0
      src/main/java/com/hywa/banktest/entity/PaymentLog.java
  78. 76 0
      src/main/java/com/hywa/banktest/entity/PaymentRecord.java
  79. 45 0
      src/main/java/com/hywa/banktest/entity/TransRequest.java
  80. 44 0
      src/main/java/com/hywa/banktest/entity/TransResponse.java
  81. 281 0
      src/main/java/com/hywa/banktest/entity/TreeOrder.java
  82. 147 0
      src/main/java/com/hywa/banktest/entity/TreeOrderDetail.java
  83. 146 0
      src/main/java/com/hywa/banktest/kit/DateKit.java
  84. 146 0
      src/main/java/com/hywa/banktest/kit/GenericsKit.java
  85. 52 0
      src/main/java/com/hywa/banktest/kit/SpringContext.java
  86. 235 0
      src/main/java/com/hywa/banktest/kit/SqlKit.java
  87. 291 0
      src/main/java/com/hywa/banktest/kit/StringKit.java
  88. 11 0
      src/main/java/com/hywa/banktest/model/OrderInfo.java
  89. 898 0
      src/main/java/com/hywa/banktest/model/_DataDictionary.txt
  90. 22 0
      src/main/java/com/hywa/banktest/model/_MappingKit.java
  91. 192 0
      src/main/java/com/hywa/banktest/model/base/BaseOrderInfo.java
  92. 69 0
      src/main/java/com/hywa/banktest/service/BaseService.java
  93. 12 0
      src/main/java/com/hywa/banktest/service/CarbonBankService.java
  94. 36 0
      src/main/java/com/hywa/banktest/service/ClearingRecordDetailService.java
  95. 18 0
      src/main/java/com/hywa/banktest/service/ClearingRecordService.java
  96. 76 0
      src/main/java/com/hywa/banktest/service/OrderInfoService.java
  97. 8 0
      src/main/java/com/hywa/banktest/service/PaymentLogService.java
  98. 12 0
      src/main/java/com/hywa/banktest/service/PaymentRecordService.java
  99. 24 0
      src/main/java/com/hywa/banktest/service/TreeOrderService.java
  100. 0 0
      src/main/java/com/hywa/banktest/service/impl/BaseServiceImpl.java

+ 176 - 0
pom.xml

@@ -0,0 +1,176 @@
+<?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 http://maven.apache.org/xsd/maven-4.0.0.xsd">
+	<modelVersion>4.0.0</modelVersion>
+
+	<groupId>xbb</groupId>
+	<artifactId>carbon-clearing</artifactId>
+	<version>0.0.1</version>
+	<packaging>jar</packaging>
+
+	<name>bankclear</name>
+	<description>bank clearing system </description>
+
+	<parent>
+		<groupId>org.springframework.boot</groupId>
+		<artifactId>spring-boot-starter-parent</artifactId>
+		<version>2.0.0.RELEASE</version>
+		<relativePath /> <!-- lookup parent from repository -->
+	</parent>
+
+	<properties>
+		<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
+		<project.reporting.outputEncoding>UTF-8</project.reporting.outputEncoding>
+		<java.version>1.8</java.version>
+	</properties>
+
+	<dependencies>
+		<dependency>
+			<groupId>log4j</groupId>
+			<artifactId>log4j</artifactId>
+			<version>1.2.17</version>
+		</dependency>
+
+		<dependency>
+			<groupId>org.apache.camel</groupId>
+			<artifactId>camel-ftp</artifactId>
+			<version>2.21.0</version>
+		</dependency>
+
+		<dependency>
+			<groupId>org.springframework.boot</groupId>
+			<artifactId>spring-boot-devtools</artifactId>
+			<scope>runtime</scope>
+		</dependency>
+		<dependency>
+			<groupId>org.springframework.boot</groupId>
+			<artifactId>spring-boot-starter-web</artifactId>
+		</dependency>
+		<dependency>
+			<groupId>org.springframework.boot</groupId>
+			<artifactId>spring-boot-starter-freemarker</artifactId>
+		</dependency>
+		<dependency>
+			<groupId>org.springframework.boot</groupId>
+			<artifactId>spring-boot-starter-test</artifactId>
+			<scope>test</scope>
+		</dependency>
+		<dependency>
+			<groupId>org.springframework.boot</groupId>
+			<artifactId>spring-boot-starter-jdbc</artifactId>
+		</dependency>
+		<dependency>
+			<groupId>mysql</groupId>
+			<artifactId>mysql-connector-java</artifactId>
+			<scope>runtime</scope>
+		</dependency>
+		<dependency>
+			<groupId>com.jfinal</groupId>
+			<artifactId>jfinal</artifactId>
+			<version>3.2</version>
+		</dependency>
+		<dependency>
+			<groupId>com.alibaba</groupId>
+			<artifactId>fastjson</artifactId>
+			<version>1.2.41</version>
+		</dependency>
+		<dependency>
+			<groupId>org.projectlombok</groupId>
+			<artifactId>lombok</artifactId>
+		</dependency>
+		<dependency>
+			<groupId>org.mybatis</groupId>
+			<artifactId>mybatis</artifactId>
+			<version>3.4.5</version>
+		</dependency>
+		<dependency>
+			<groupId>org.mybatis.spring.boot</groupId>
+			<artifactId>mybatis-spring-boot-starter</artifactId>
+			<version>1.3.1</version>
+		</dependency>
+		<dependency>
+			<groupId>org.apache.httpcomponents</groupId>
+			<artifactId>httpclient</artifactId>
+			<version>4.3.3</version>
+		</dependency>
+		<dependency>
+			<groupId>commons-httpclient</groupId>
+			<artifactId>commons-httpclient</artifactId>
+			<version>3.1</version>
+		</dependency>
+		<!-- https://mvnrepository.com/artifact/org.apache.httpcomponents/httpcore -->
+		<dependency>
+			<groupId>org.apache.httpcomponents</groupId>
+			<artifactId>httpcore</artifactId>
+			<version>4.4.13</version>
+		</dependency>
+
+		<dependency>
+			<groupId>org.apache.commons</groupId>
+			<artifactId>commons-lang3</artifactId>
+			<version>3.4</version>
+		</dependency>
+		<dependency>
+			<groupId>org.apache.commons</groupId>
+			<artifactId>commons-io</artifactId>
+			<version>1.3.2</version>
+		</dependency>
+		<dependency>
+			<groupId>com.alibaba</groupId>
+			<artifactId>druid</artifactId>
+			<version>1.1.9</version>
+		</dependency>
+	</dependencies>
+
+	<build>
+		<plugins>
+			<plugin>
+				<groupId>org.springframework.boot</groupId>
+				<artifactId>spring-boot-maven-plugin</artifactId>
+			</plugin>
+			<plugin>
+				<groupId>org.apache.maven.plugins</groupId>
+				<artifactId>maven-surefire-plugin</artifactId>
+				<version>2.18.1</version>
+				<configuration>
+					<skipTests>true</skipTests>
+				</configuration>
+			</plugin>
+			<!-- mybatis generator-->
+			<plugin>
+				<groupId>org.mybatis.generator</groupId>
+				<artifactId>mybatis-generator-maven-plugin</artifactId>
+				<version>1.3.5</version>
+				<dependencies>
+					<dependency>
+						<groupId> mysql</groupId>
+						<artifactId> mysql-connector-java</artifactId>
+						<version>5.1.39</version>
+					</dependency>
+					<dependency>
+						<groupId>org.mybatis.generator</groupId>
+						<artifactId>mybatis-generator-core</artifactId>
+						<version>1.3.5</version>
+					</dependency>
+				</dependencies>
+				<executions>
+					<execution>
+						<id>Generate MyBatis Artifacts</id>
+						<phase>deploy</phase>
+						<goals>
+							<goal>generate</goal>
+						</goals>
+					</execution>
+				</executions>
+				<configuration>
+					<!--允许移动生成的文件 -->
+					<verbose>true</verbose>
+					<!-- 是否覆盖 -->
+					<overwrite>true</overwrite>
+					<!-- 自动生成的配置 -->
+					<configurationFile>src/main/resources/generatorConfig.xml</configurationFile>
+				</configuration>
+			</plugin>
+		</plugins>
+	</build>
+</project>

+ 1 - 0
readme.md

@@ -0,0 +1 @@
+# carbon-clearing

+ 21 - 0
src/main/java/com/hywa/banktest/BanktestApplication.java

@@ -0,0 +1,21 @@
+package com.hywa.banktest;
+
+import org.mybatis.spring.annotation.MapperScan;
+import org.springframework.boot.SpringApplication;
+import org.springframework.boot.autoconfigure.SpringBootApplication;
+import org.springframework.boot.web.servlet.ServletComponentScan;
+import org.springframework.scheduling.annotation.EnableScheduling;
+import org.springframework.transaction.annotation.EnableTransactionManagement;
+
+@SpringBootApplication
+@EnableTransactionManagement
+@EnableScheduling
+@ServletComponentScan
+@MapperScan(basePackages = {"com.hywa.banktest.dao.**"})
+public class BanktestApplication {
+
+	public static void main(String[] args) {
+		SpringApplication.run(BanktestApplication.class, args);
+	}
+	
+}

BIN
src/main/java/com/hywa/banktest/bankframework/._A


BIN
src/main/java/com/hywa/banktest/bankframework/A


+ 11 - 0
src/main/java/com/hywa/banktest/bankframework/exception/ToManyTradeException.java

@@ -0,0 +1,11 @@
+package com.hywa.banktest.bankframework.exception;
+
+public class ToManyTradeException extends RuntimeException {
+
+	private static final long serialVersionUID = 588862537836861177L;
+
+	public ToManyTradeException(String message) {
+		super(message);
+	}
+	
+}

+ 36 - 0
src/main/java/com/hywa/banktest/bankframework/pack/Dlmaps.java

@@ -0,0 +1,36 @@
+package com.hywa.banktest.bankframework.pack;
+
+import javax.xml.bind.annotation.XmlRootElement;
+
+
+@XmlRootElement(name="DLMAPS")
+public class Dlmaps {
+	private PUB PUB;
+	private IN IN;
+	private OUT OUT;
+
+	public OUT getOUT() {
+		return OUT;
+	}
+
+	public void setOUT(OUT oUT) {
+		OUT = oUT;
+	}
+
+	public IN getIN() {
+		return IN;
+	}
+
+	public void setIN(IN iN) {
+		IN = iN;
+	}
+
+	public PUB getPUB() {
+		return PUB;
+	}
+
+	public void setPUB(PUB pUB) {
+		PUB = pUB;
+	}
+
+}

+ 196 - 0
src/main/java/com/hywa/banktest/bankframework/pack/IN.java

@@ -0,0 +1,196 @@
+package com.hywa.banktest.bankframework.pack;
+
+
+public class IN {
+	//客户代码
+	private String CUST_ID;
+	//客户姓名
+	private String CUST_NAME;
+	//帐户类型
+	private String ACC_TYPE;
+	//银行卡号/帐号
+	private String ACC;
+	//转帐金额
+	private String QTY_TRADE;
+	//单位代码(固定如4000)
+	private String COMPANY_ID;
+	//对公账户
+	private String COMPANY_ACC;
+	//账号类型1
+	private String COMPANY_ACC_TYPE;
+	//证件号码
+	private String CARD_ID;
+	//证件类型02
+	private String CARD_TYE;
+	//银行账号
+	private String CUST_ACC;
+	//客户账号类型
+	private String CUST_ACC_TYE;
+	//批量请求文件名
+	private String TRADE_FILE;
+	//总笔数
+	private String TRADE_NUM;
+	//总金额
+	private String TRADE_TOTAL_MONEY;
+	//交易时间
+	private String TRADE_TIME;
+	//批量回盘文件名
+	private String TRADE_FILE_RET;
+	//成功笔数
+	private String TRADE_NUM_OK;
+	//成功总金额
+	private String TRADE_TOTAL_MONEY_OK;
+
+	public String getTRADE_FILE_RET() {
+		return TRADE_FILE_RET;
+	}
+
+	public void setTRADE_FILE_RET(String tRADE_FILE_RET) {
+		TRADE_FILE_RET = tRADE_FILE_RET;
+	}
+
+	public String getTRADE_NUM_OK() {
+		return TRADE_NUM_OK;
+	}
+
+	public void setTRADE_NUM_OK(String tRADE_NUM_OK) {
+		TRADE_NUM_OK = tRADE_NUM_OK;
+	}
+
+	public String getTRADE_TOTAL_MONEY_OK() {
+		return TRADE_TOTAL_MONEY_OK;
+	}
+
+	public void setTRADE_TOTAL_MONEY_OK(String tRADE_TOTAL_MONEY_OK) {
+		TRADE_TOTAL_MONEY_OK = tRADE_TOTAL_MONEY_OK;
+	}
+
+	public String getTRADE_FILE() {
+		return TRADE_FILE;
+	}
+
+	public void setTRADE_FILE(String tRADE_FILE) {
+		TRADE_FILE = tRADE_FILE;
+	}
+
+	public String getTRADE_NUM() {
+		return TRADE_NUM;
+	}
+
+	public void setTRADE_NUM(String tRADE_NUM) {
+		TRADE_NUM = tRADE_NUM;
+	}
+
+	public String getTRADE_TOTAL_MONEY() {
+		return TRADE_TOTAL_MONEY;
+	}
+
+	public void setTRADE_TOTAL_MONEY(String tRADE_TOTAL_MONEY) {
+		TRADE_TOTAL_MONEY = tRADE_TOTAL_MONEY;
+	}
+
+	public String getTRADE_TIME() {
+		return TRADE_TIME;
+	}
+
+	public void setTRADE_TIME(String tRADE_TIME) {
+		TRADE_TIME = tRADE_TIME;
+	}
+
+	public String getCARD_ID() {
+		return CARD_ID;
+	}
+
+	public void setCARD_ID(String cARD_ID) {
+		CARD_ID = cARD_ID;
+	}
+
+	public String getCARD_TYE() {
+		return CARD_TYE;
+	}
+
+	public void setCARD_TYE(String cARD_TYE) {
+		CARD_TYE = cARD_TYE;
+	}
+
+	public String getCUST_ACC() {
+		return CUST_ACC;
+	}
+
+	public void setCUST_ACC(String cUST_ACC) {
+		CUST_ACC = cUST_ACC;
+	}
+
+	public String getCUST_ACC_TYE() {
+		return CUST_ACC_TYE;
+	}
+
+	public void setCUST_ACC_TYE(String cUST_ACC_TYE) {
+		CUST_ACC_TYE = cUST_ACC_TYE;
+	}
+
+	public String getCOMPANY_ID() {
+		return COMPANY_ID;
+	}
+
+	public void setCOMPANY_ID(String cOMPANY_ID) {
+		COMPANY_ID = cOMPANY_ID;
+	}
+
+	public String getCOMPANY_ACC() {
+		return COMPANY_ACC;
+	}
+
+	public void setCOMPANY_ACC(String cOMPANY_ACC) {
+		COMPANY_ACC = cOMPANY_ACC;
+	}
+
+	public String getCOMPANY_ACC_TYPE() {
+		return COMPANY_ACC_TYPE;
+	}
+
+	public void setCOMPANY_ACC_TYPE(String cOMPANY_ACC_TYPE) {
+		COMPANY_ACC_TYPE = cOMPANY_ACC_TYPE;
+	}
+
+	public String getCUST_ID() {
+		return CUST_ID;
+	}
+
+	public void setCUST_ID(String cUST_ID) {
+		CUST_ID = cUST_ID;
+	}
+
+	public String getCUST_NAME() {
+		return CUST_NAME;
+	}
+
+	public void setCUST_NAME(String cUST_NAME) {
+		CUST_NAME = cUST_NAME;
+	}
+
+	public String getACC_TYPE() {
+		return ACC_TYPE;
+	}
+
+	public void setACC_TYPE(String aCC_TYPE) {
+		ACC_TYPE = aCC_TYPE;
+	}
+
+	public String getACC() {
+		return ACC;
+	}
+
+	public void setACC(String aCC) {
+		ACC = aCC;
+	}
+
+	public String getQTY_TRADE() {
+		return QTY_TRADE;
+	}
+
+	public void setQTY_TRADE(String qTY_TRADE) {
+		QTY_TRADE = qTY_TRADE;
+	}
+
+}

+ 42 - 0
src/main/java/com/hywa/banktest/bankframework/pack/OUT.java

@@ -0,0 +1,42 @@
+package com.hywa.banktest.bankframework.pack;
+
+
+public class OUT {
+	private String RET_CODE;
+	private String MSG;
+	private String COMPANY_ACC;
+	private String MONEY;
+
+	public String getCOMPANY_ACC() {
+		return COMPANY_ACC;
+	}
+
+	public void setCOMPANY_ACC(String cOMPANY_ACC) {
+		COMPANY_ACC = cOMPANY_ACC;
+	}
+
+	public String getMONEY() {
+		return MONEY;
+	}
+
+	public void setMONEY(String mONEY) {
+		MONEY = mONEY;
+	}
+
+	public String getRET_CODE() {
+		return RET_CODE;
+	}
+
+	public void setRET_CODE(String rET_CODE) {
+		RET_CODE = rET_CODE;
+	}
+
+	public String getMSG() {
+		return MSG;
+	}
+
+	public void setMSG(String mSG) {
+		MSG = mSG;
+	}
+
+}

+ 66 - 0
src/main/java/com/hywa/banktest/bankframework/pack/PUB.java

@@ -0,0 +1,66 @@
+package com.hywa.banktest.bankframework.pack;
+
+
+public class PUB {
+	//交易代码
+	private String TRADE_ID;
+	//交易时间
+	private String TRAN_TIME;
+	//银行代码
+	private String BANK_ID;
+	//公司代码
+	private String DPT_ID;
+	//交易序号
+	private String TRADE_SEQ;
+	//APP类型
+	private String APP_TYPE;
+
+	public String getTRADE_ID() {
+		return TRADE_ID;
+	}
+
+	public void setTRADE_ID(String tRADE_ID) {
+		TRADE_ID = tRADE_ID;
+	}
+
+	public String getTRAN_TIME() {
+		return TRAN_TIME;
+	}
+
+	public void setTRAN_TIME(String tRAN_TIME) {
+		TRAN_TIME = tRAN_TIME;
+	}
+
+	public String getBANK_ID() {
+		return BANK_ID;
+	}
+
+	public void setBANK_ID(String bANK_ID) {
+		BANK_ID = bANK_ID;
+	}
+
+	public String getDPT_ID() {
+		return DPT_ID;
+	}
+
+	public void setDPT_ID(String dPT_ID) {
+		DPT_ID = dPT_ID;
+	}
+
+	public String getTRADE_SEQ() {
+		return TRADE_SEQ;
+	}
+
+	public void setTRADE_SEQ(String tRADE_SEQ) {
+		TRADE_SEQ = tRADE_SEQ;
+	}
+
+	public String getAPP_TYPE() {
+		return APP_TYPE;
+	}
+
+	public void setAPP_TYPE(String aPP_TYPE) {
+		APP_TYPE = aPP_TYPE;
+	}
+
+}

+ 123 - 0
src/main/java/com/hywa/banktest/bankframework/pack/TransVo.java

@@ -0,0 +1,123 @@
+package com.hywa.banktest.bankframework.pack;
+
+import lombok.Data;
+
+import java.math.BigDecimal;
+import java.util.Date;
+
+@Data
+public class TransVo {
+	/**
+	 * 序号
+	 */
+	private int num;
+	/**
+	 * 转帐目标姓名
+	 */
+	private String name;
+	/**
+	 * 银行账号
+	 */
+	private String bankAccount;
+	/**
+	 * 证件类型
+	 */
+	private String cardType;
+	/**
+	 * 证件号码(身份证号码)
+	 */
+	private String cardNum;
+	/**
+	 * 转账金额
+	 */
+	private String money;
+	/**
+	 * 客户代码
+	 */
+	private String customerNum;
+	/**
+	 * 订单号
+	 */
+	private String orderNo;
+	/**
+	 * 银行返回代码
+	 */
+	private String returnCode;
+	/**
+	 * 银行返回消息
+	 */
+	private String returnMsg;
+
+	/**
+	 * 打款农户编号
+	 */
+	private String farmerId;
+
+	/**
+	 * 清款记录明细主键
+	 */
+	private String id;
+
+	/**
+	 * 清款记录主键
+	 */
+	private String fkClearingId;
+
+	/**
+	 * 农户ID
+	 */
+	private String fkFarmerId;
+
+	/**
+	 * 农户姓名
+	 */
+	private String farmerName;
+
+	/**
+	 * 农户账号
+	 */
+	private String farmerAccount;
+
+	/**
+	 * 农户身份证号
+	 */
+	private String farmerPid;
+
+	/**
+	 * 打款金额
+	 */
+	private BigDecimal clearingMoneyDetail;
+
+	/**
+	 * 打款记录状态
+	 */
+	private Integer clearingState;
+
+	/**
+	 * 打款记录时间
+	 */
+	private Date clearingTimed;
+	/**
+	 * 银行回盘文件名称
+	 */
+	private String bankReceiptFile;
+
+	/**
+	 * 银行打款响应码
+	 */
+	private String bankDealState;
+	/**
+	 * 银行打款响应消息
+	 */
+	private String bankDealMsg;
+
+	/**
+	 * 订单状态
+	 */
+	private Integer orderStatus;
+	/**
+	 * 申请银行打款文件
+	 */
+	private String transFile;
+
+}

+ 60 - 0
src/main/java/com/hywa/banktest/bankframework/pack/vo/AccountValidateVo.java

@@ -0,0 +1,60 @@
+package com.hywa.banktest.bankframework.pack.vo;
+
+public class AccountValidateVo {
+
+	private String CUST_ID;// 客户id
+	private String CARD_ID;// 证件号码
+	private String CARD_TYE;// 证件类型
+	private String CUST_NAME;// 客户姓名
+	private String CUST_ACC;// 银行账号
+	private String CUST_ACC_TYE;// 客户账号类型
+
+	public String getCUST_ID() {
+		return CUST_ID;
+	}
+
+	public void setCUST_ID(String cUST_ID) {
+		CUST_ID = cUST_ID;
+	}
+
+	public String getCARD_ID() {
+		return CARD_ID;
+	}
+
+	public void setCARD_ID(String cARD_ID) {
+		CARD_ID = cARD_ID;
+	}
+
+	public String getCARD_TYE() {
+		return CARD_TYE;
+	}
+
+	public void setCARD_TYE(String cARD_TYE) {
+		CARD_TYE = cARD_TYE;
+	}
+
+	public String getCUST_NAME() {
+		return CUST_NAME;
+	}
+
+	public void setCUST_NAME(String cUST_NAME) {
+		CUST_NAME = cUST_NAME;
+	}
+
+	public String getCUST_ACC() {
+		return CUST_ACC;
+	}
+
+	public void setCUST_ACC(String cUST_ACC) {
+		CUST_ACC = cUST_ACC;
+	}
+
+	public String getCUST_ACC_TYE() {
+		return CUST_ACC_TYE;
+	}
+
+	public void setCUST_ACC_TYE(String cUST_ACC_TYE) {
+		CUST_ACC_TYE = cUST_ACC_TYE;
+	}
+
+}

+ 57 - 0
src/main/java/com/hywa/banktest/bankframework/schedule/BankRequsetProcess.java

@@ -0,0 +1,57 @@
+package com.hywa.banktest.bankframework.schedule;
+
+import java.io.File;
+import java.util.List;
+
+import org.springframework.beans.factory.annotation.Autowired;
+import org.springframework.beans.factory.annotation.Value;
+import org.springframework.stereotype.Component;
+
+import com.hywa.banktest.bankframework.pack.Dlmaps;
+import com.hywa.banktest.bankframework.pack.OUT;
+import com.hywa.banktest.bankframework.pack.TransVo;
+import com.hywa.banktest.bankframework.utils.FtpUtil;
+import com.hywa.banktest.bankframework.utils.TransUtils;
+import com.hywa.banktest.model.OrderInfo;
+import com.hywa.banktest.service.OrderInfoService;
+
+@Component("bankRequsetProcess")
+public class BankRequsetProcess {
+
+	@Autowired
+	FtpUtil ftpUtil;
+	@Value("${money.clear.file.base.retdir}")
+	private String baseDir;
+	@Value("${money.clear.ftp.retDir}")
+	private String ftpDownloadDir;		
+			
+	@Autowired
+	OrderInfoService orderInfoService;
+	
+	public Dlmaps process(Dlmaps bankDlmaps) {
+		String retFile = bankDlmaps.getIN().getTRADE_FILE_RET();
+		ftpUtil.downloadFile(ftpDownloadDir, retFile, baseDir + File.separator + retFile);
+		
+		List<TransVo> trans = TransUtils.fileToTransVo(baseDir, retFile);
+		for (TransVo tran : trans) {
+			OrderInfo orderInfo = new OrderInfo();
+			orderInfo.setId(tran.getOrderNo());
+			orderInfo.setTransRetFile(retFile);
+			orderInfo.set("transCode", tran.getReturnCode());
+			orderInfo.set("transMsg", tran.getReturnMsg());
+			if (tran.getReturnCode().equals("0000")) {
+				orderInfo.setENABLE(3);
+			}else {
+				orderInfo.setENABLE(5);
+			}
+			orderInfoService.update(orderInfo);
+		}
+		
+		OUT out = new OUT();
+		out.setRET_CODE("0000");
+		out.setMSG("success");
+		bankDlmaps.setOUT(out);
+		return bankDlmaps;
+	}
+
+}

+ 139 - 0
src/main/java/com/hywa/banktest/bankframework/schedule/TransSchedule.java

@@ -0,0 +1,139 @@
+package com.hywa.banktest.bankframework.schedule;
+
+import java.io.File;
+import java.util.*;
+
+import com.alibaba.fastjson.JSONObject;
+import com.hywa.banktest.bankframework.utils.DateUtils;
+import com.hywa.banktest.entity.ClearingRecordDetail;
+import com.hywa.banktest.entity.PaymentLog;
+import com.hywa.banktest.entity.PaymentRecord;
+import com.hywa.banktest.service.*;
+import lombok.extern.slf4j.Slf4j;
+import org.springframework.beans.factory.annotation.Autowired;
+import org.springframework.beans.factory.annotation.Value;
+import org.springframework.scheduling.annotation.Scheduled;
+import org.springframework.stereotype.Component;
+import com.alibaba.fastjson.JSON;
+import com.hywa.banktest.bankframework.pack.Dlmaps;
+import com.hywa.banktest.bankframework.pack.TransVo;
+import com.hywa.banktest.bankframework.service.BankServiceImpl;
+import com.hywa.banktest.bankframework.utils.FtpUtil;
+import com.hywa.banktest.bankframework.utils.TransUtils;
+import com.hywa.banktest.model.OrderInfo;
+import com.jfinal.kit.JsonKit;
+import com.jfinal.plugin.activerecord.Db;
+import org.springframework.transaction.annotation.Transactional;
+
+@Slf4j
+@Component
+public class TransSchedule {
+
+	private static final String TRANS_SUCCESS_CODE="0000";
+
+	@Autowired
+	OrderInfoService orderInfoService;
+	@Autowired
+	private PaymentRecordService paymentRecordService;
+	@Autowired
+	BankServiceImpl bankService;
+	@Autowired
+	private PaymentLogService paymentLogService;
+	@Autowired
+	private ClearingRecordService clearingRecordService;
+
+	@Autowired
+	FtpUtil ftpUtil;
+	@Value("${money.clear.ftp.retDir}")
+	private String ftpDownloadDir;
+	@Value("${money.clear.file.base.retdir}")
+	private String baseDir;
+
+
+	/**
+	 * 资金清算定时任务
+	 */
+	//@Scheduled(cron = "0 */15 * * * ?")
+	//@Scheduled(cron = "0 15 18 ? * *")
+	@Transactional
+	public void ClearingToBank(List<ClearingRecordDetail> list){
+		log.info("开始更新订单状态为:转账中");
+		if(null!=list && list.size()>0){
+			for(ClearingRecordDetail bean:list){
+				Map tmp = new HashMap();
+				tmp.put("farmerId",bean.getFkFarmerId());
+				tmp.put("orderStatus",4);
+				tmp.put("transCode",null);
+				tmp.put("transMsg",null);
+				orderInfoService.updateOrderInfoByFarmer(tmp);
+			}
+			//TODO 转换为资金清算服务的列表信息
+			log.info("开始转换为资金清算服务的列表信息");
+			List<TransVo> transVos = JSON.parseArray(JsonKit.toJson(list), TransVo.class);
+			log.info("transVos====================>{}",transVos);
+			Dlmaps moneyClearResult = bankService.moneyClearing(transVos,null);
+			log.info("moneyClearResult====================>{}",moneyClearResult);
+			PaymentLog paymentLog = new PaymentLog();
+			paymentLog.setResponesStatus(moneyClearResult.getOUT().getRET_CODE());
+			paymentLog.setResponesMsg(moneyClearResult.getOUT().getMSG());
+			paymentLog.setPaymentNum(Integer.valueOf(moneyClearResult.getIN().getTRADE_NUM()));
+			paymentLog.setPaymentMoney(Float.valueOf(moneyClearResult.getIN().getTRADE_TOTAL_MONEY()));
+			paymentLog.setCreateTime(new Date());
+			// TODO 开始记录打款日志
+			paymentLogService.insertSelectiveModel(paymentLog);
+			if (!moneyClearResult.getOUT().getRET_CODE().equals("0000")) {
+				throw new RuntimeException("资金清算请求失败");
+			}
+			//TODO 更新订单清算文件至订单
+			for(ClearingRecordDetail bean : list){
+				Map tmp = new HashMap();
+				tmp.put("farmerId", bean.getFkFarmerId());
+				tmp.put("transFile", moneyClearResult.getIN().getTRADE_FILE());
+				orderInfoService.updateOrderInfoByFarmer(tmp);
+			}
+		}
+	}
+
+	/**
+	 * 尽量在晚上22:00-01:00这段时间不要做,银行这时候在日终,交易时间跟自然时间不同。
+	 * @return
+	 */
+	private static boolean isBankServiceTime() {
+		Calendar cal = Calendar.getInstance();
+		if (22<=cal.get(Calendar.HOUR_OF_DAY) && cal.get(Calendar.HOUR_OF_DAY)<=24) {
+			return false;
+		}
+		else if (cal.get(Calendar.HOUR_OF_DAY) <= 1) {
+			return false;
+		}
+		else {
+			return true;
+		}
+	}
+
+
+//	@Scheduled(cron = "0 0/5 * * * ?")
+	//@Scheduled(cron = "0 0/10 0 * * ?")
+	//@Scheduled(cron = "0 43 09 * * ?")
+	@Scheduled(cron = "0 0/1 * * * ?")
+	public void checkClearOther(){
+		log.info("--->开始调度文件了啊");
+		String checkTime = DateUtils.formatDate(new Date(),DateUtils.DEFAULT_FORMAT);
+		//得到转账中oderInfo的转账文件
+		List<String> transFiles = clearingRecordService.getBankClearingFilesByTimed(checkTime);
+		log.info("------>有没有文件"+ JSONObject.toJSONString(transFiles));
+		if(null!=transFiles && transFiles.size()>0){
+			for (String transFile : transFiles) {
+				//回盘文件名称
+				String transRetFile = transFile.replaceFirst("qut", "res");
+				//如果邮储已经回盘则执行回盘业务处理
+				if (ftpUtil.existFile(ftpDownloadDir, transRetFile)) {
+					//回盘文件下载到本地
+					ftpUtil.downloadFile(ftpDownloadDir, transRetFile, baseDir + File.separator + transRetFile);
+					List<TransVo> trans = TransUtils.fileToTransVo(baseDir, transRetFile);
+					bankService.updateOrderInfoPaymentRec(trans,transRetFile,transFile);
+				}
+			}
+		}
+	}
+}

+ 114 - 0
src/main/java/com/hywa/banktest/bankframework/service/BankService.java

@@ -0,0 +1,114 @@
+package com.hywa.banktest.bankframework.service;
+
+import java.io.FileNotFoundException;
+import java.math.BigDecimal;
+import java.util.Date;
+import java.util.List;
+
+import com.hywa.banktest.entity.PaymentRecord;
+import org.springframework.beans.factory.annotation.Autowired;
+import org.springframework.beans.factory.annotation.Value;
+import org.springframework.scheduling.annotation.Scheduled;
+
+import com.hywa.banktest.bankframework.exception.ToManyTradeException;
+import com.hywa.banktest.bankframework.pack.Dlmaps;
+import com.hywa.banktest.bankframework.pack.TransVo;
+import com.hywa.banktest.bankframework.utils.FtpUtil;
+import com.hywa.banktest.kit.DateKit;
+
+public abstract class BankService {
+	@Autowired
+	FtpUtil ftpUtil;
+	@Value("${money.clear.ftp.dir}")
+	protected String ftpUploadDir;
+	
+
+	/**
+	 * 当天资金结算次数
+	 */
+	protected Integer todayMoneyClearCount = 200;
+	
+	/**
+	 * 1.1	对公账户余额查询(8910),请求银行接口
+	 * @return
+	 */
+	public abstract Dlmaps queryBalance();
+	/**
+	 * 1.1	个人账户开户校验(8911),请求银行接口
+	 * @param CUST_ID   客户编号
+	 * @param CARD_ID   身份证号
+	 * @param CARD_TYPE 证件类型02
+	 * @param CUST_NAME 客户姓名
+	 * @param CUST_ACC  客户银行账号
+	 * @param CUST_ACC_TYPE   客户账号类型
+	 * @return
+	 */
+	public abstract Dlmaps personAccountValidate(String CUST_ID, String CARD_ID, String CARD_TYPE, String CUST_NAME, String CUST_ACC, String CUST_ACC_TYPE); 
+	
+	/**
+	 * 1.1	资金清算请求(8912),请求银行接口
+	 * @return
+	 * @throws FileNotFoundException 
+	 */
+	public abstract Dlmaps moneyClearing(List<TransVo> transVos,String companyType);
+
+	/**
+	 *资金清算请求,请求银行接口
+	 * @param transVos
+	 * @return 返回打款不成功的农户信息(农户ID,身份证,银行卡账号,打款失败原因)
+	 */
+	public abstract List<PaymentRecord> moneyCleared(List<TransVo> transVos);
+
+	/**
+	 * 更新订单详细信息,插入打款记录
+	 * @param transVos
+	 * @return
+	 */
+	public abstract int updateOrderInfoPaymentRec(List<TransVo> transVos,String fileName,String applyFileName);
+	
+	/**
+	 * 计算交易总金额
+	 * @param transVos
+	 * @return
+	 */
+	protected BigDecimal countTotalMoney(List<TransVo> transVos) {
+		BigDecimal totalMoney = new BigDecimal("0.00");//交易总金额
+		for (int i =0; i < transVos.size(); i++) {
+			BigDecimal money = transVos.get(i).getClearingMoneyDetail();
+			totalMoney = totalMoney.add(money);
+			
+			transVos.get(i).setNum(i + 1);//设置序号
+			transVos.get(i).setCustomerNum(transVos.get(i).getFarmerPid());
+			transVos.get(i).setCardType("01");
+		}
+		return totalMoney;
+	}
+	
+
+	/**
+	 * 生成交易文件名
+	 * @return
+	 */
+	protected String generateTransFileName(){
+		synchronized(todayMoneyClearCount) {
+			String fileName = DateKit.formatDate(new Date(), "yyyyMMdd")+"qut";
+			todayMoneyClearCount += 1;
+			String newFileName = fileName + String.format("%03d",todayMoneyClearCount) + ".txt";
+			
+			while (ftpUtil.existFile(ftpUploadDir, newFileName.toString())) {
+				todayMoneyClearCount += 1;
+				if(todayMoneyClearCount > 999) {
+					throw new ToManyTradeException("系统每日限转帐999次");
+				}
+				newFileName = fileName + String.format("%03d",todayMoneyClearCount) + ".txt";
+			}
+			return newFileName;
+		}
+	}
+	
+	@Scheduled(cron = "0 0 0 * * ?")
+    protected void todayMoneyClearCountReset() {
+		synchronized(todayMoneyClearCount) {todayMoneyClearCount = 200;}
+    }
+	
+}

+ 270 - 0
src/main/java/com/hywa/banktest/bankframework/service/BankServiceImpl.java

@@ -0,0 +1,270 @@
+package com.hywa.banktest.bankframework.service;
+
+import java.io.File;
+import java.math.BigDecimal;
+import java.util.*;
+
+import com.hywa.banktest.entity.ClearingRecord;
+import com.hywa.banktest.entity.ClearingRecordDetail;
+import com.hywa.banktest.entity.PaymentRecord;
+import com.hywa.banktest.service.ClearingRecordDetailService;
+import com.hywa.banktest.service.ClearingRecordService;
+import com.hywa.banktest.service.OrderInfoService;
+import com.hywa.banktest.service.PaymentRecordService;
+import org.springframework.beans.factory.annotation.Autowired;
+import org.springframework.beans.factory.annotation.Value;
+import org.springframework.stereotype.Component;
+
+import com.hywa.banktest.bankframework.pack.Dlmaps;
+import com.hywa.banktest.bankframework.pack.IN;
+import com.hywa.banktest.bankframework.pack.PUB;
+import com.hywa.banktest.bankframework.pack.TransVo;
+import com.hywa.banktest.bankframework.socketHandle.BankSocket;
+import com.hywa.banktest.bankframework.utils.DateUtils;
+import com.hywa.banktest.bankframework.utils.StringUtils;
+import com.hywa.banktest.bankframework.utils.TransUtils;
+import com.hywa.banktest.bankframework.utils.XmlUtils;
+import org.springframework.transaction.annotation.Transactional;
+
+
+@Component
+public class BankServiceImpl extends BankService{
+
+	@Autowired
+	BankSocket bankRequestKit;
+
+	@Autowired
+	private PaymentRecordService paymentRecordService;
+
+	@Autowired
+	private OrderInfoService orderInfoService;
+
+	@Autowired
+	private ClearingRecordDetailService clearingRecordDetailService;
+
+	@Autowired
+	private ClearingRecordService clearingRecordService;
+
+	private static final String TRANS_SUCCESS_CODE="0000";
+
+	/**
+	 * APP类型
+	 */
+	@Value("${dlmaps.pub.app_type}")
+	private String app_type;
+	/**
+	 * 银行代码
+	 */
+	@Value("${dlmaps.pub.bank_id}")
+	private String bank_id;
+	/**
+	 * 公司代码
+	 */
+	@Value("${dlmaps.pub.dpt_id}")
+	private String dpt_id;
+	/**
+	 * 单位代码(固定如4000)
+	 */
+	@Value("${dlmaps.in.company_id}")
+	private String company_id;
+	/**
+	 * 对公账户(发改委账号)
+	 */
+	@Value("${dlmaps.in.company_acc}")
+	private String company_acc;
+	/**
+	 * 账号类型
+	 */
+	@Value("${dlmaps.in.company_acc_type}")
+	private String company_acc_type;
+	/**
+	 * 资金清算文件目录
+	 */
+	@Value("${money.clear.file.base.dir}")
+	private String baseDir;
+
+	@Value("${dlmaps.pub.jj.dpt_id}")
+	private String jj_dpt_id;
+
+	@Override
+	public  Dlmaps queryBalance() {
+		Dlmaps dlmaps = new Dlmaps();
+
+		PUB pub = new PUB();
+		pub.setAPP_TYPE(app_type);//APP类型
+		pub.setBANK_ID(bank_id);//银行代码
+		pub.setTRADE_ID("8910");//"交易代码"
+		pub.setTRAN_TIME(DateUtils.formatDate(new Date(), "yyyyMMddHHmmss"));//时间戳
+		pub.setDPT_ID(dpt_id);//公司代码
+		pub.setTRADE_SEQ(StringUtils.generateOrderNum());
+		dlmaps.setPUB(pub);
+
+		IN in = new IN();
+		in.setCOMPANY_ID(company_id);//单位代码(固定如4000)
+		in.setCOMPANY_ACC(company_acc);//对公账户(发改委账号)
+		in.setCOMPANY_ACC_TYPE(company_acc_type);//"账号类型"
+		dlmaps.setIN(in);
+
+		return bankRequestKit.query(dlmaps);
+	}
+
+	@Override
+	public Dlmaps personAccountValidate(String CUST_ID, String CARD_ID, String CARD_TYPE, String CUST_NAME, String CUST_ACC, String CUST_ACC_TYPE) {
+		Dlmaps dlmaps = new Dlmaps();
+
+		PUB pub = new PUB();
+		pub.setAPP_TYPE(app_type);
+		pub.setBANK_ID(bank_id);
+		pub.setTRADE_ID("8911");
+		pub.setTRAN_TIME(DateUtils.formatDate(new Date(), "yyyyMMddHHmmss"));
+		pub.setDPT_ID(dpt_id);
+		pub.setTRADE_SEQ(StringUtils.generateOrderNum());
+		dlmaps.setPUB(pub);
+
+
+		IN in = new IN();
+		//客户id
+		in.setCUST_ID(CUST_ID);
+		//证件号码
+		in.setCARD_ID(CARD_ID);
+		//证件类型
+		in.setCARD_TYE(CARD_TYPE);
+		//客户姓名
+		in.setCUST_NAME(CUST_NAME);
+		//银行账号
+		in.setCUST_ACC(CUST_ACC);
+		in.setCUST_ACC_TYE(CUST_ACC_TYPE);
+		dlmaps.setIN(in);
+		return bankRequestKit.query(dlmaps);
+	}
+
+	@Override
+	public Dlmaps moneyClearing(List<TransVo> transVos,String companyType){
+		//交易总笔数
+		int totalOrderNum = transVos.size();
+		BigDecimal totalMoney = countTotalMoney(transVos);
+		String newFileName = generateTransFileName();
+		TransUtils.transToFile(transVos, totalOrderNum, totalMoney, baseDir, newFileName);
+		ftpUtil.uploadFile(ftpUploadDir, newFileName, baseDir + File.separator + newFileName.toString());
+		return transPaymentInfo(newFileName,totalOrderNum,totalMoney.toString(),companyType);
+	}
+
+	/**
+	 * 资金清算请求,请求银行接口
+	 *
+	 * @param transVos
+	 * @return 返回打款不成功的农户信息(农户ID,身份证,银行卡账号,打款失败原因)
+	 */
+	@Override
+	public List<PaymentRecord> moneyCleared(List<TransVo> transVos) {
+		List<PaymentRecord> resultList = Collections.EMPTY_LIST;
+		if(null!=transVos && transVos.size()>0){
+			int totalOrderNum = transVos.size();
+			BigDecimal totalMoney = countTotalMoney(transVos);
+			String newFileName = "123.txt";//generateTransFileName();
+			TransUtils.transToFile(transVos, totalOrderNum, totalMoney, baseDir, newFileName);
+			//ftpUtil.uploadFile(ftpUploadDir, newFileName, baseDir + File.separator + newFileName);
+			//TODO 发送银行打款申请
+			//Dlmaps result =  transPaymentInfo(newFileName,totalOrderNum,totalMoney.toString());
+		}
+		return resultList;
+	}
+
+	/**
+	 * 更新订单详细信息,插入打款记录
+	 *
+	 * @param transVos
+	 * @return
+	 */
+	@Transactional(rollbackFor = Exception.class)
+	@Override
+	public int updateOrderInfoPaymentRec(List<TransVo> transVos,String fileName,String applyFileName) {
+		List<TransVo> successList = new ArrayList<>();
+		List<TransVo> failList = new ArrayList<>();
+		if(null!=transVos && transVos.size()>0){
+			for (TransVo vo: transVos) {
+				if(TRANS_SUCCESS_CODE.equals(vo.getBankDealState())){
+					vo.setOrderStatus(3);
+					vo.setBankReceiptFile(fileName);
+					vo.setTransFile(applyFileName);
+					successList.add(vo);
+				}else{
+					vo.setOrderStatus(1);
+					failList.add(vo);
+				}
+			}
+			//TODO 处理失败打款记录订单状态
+			if(failList.size()>0){
+				int j = orderInfoService.updateAllClearingDetailOrderInfo(failList);
+				if(j==0){
+					orderInfoService.updateNoOrderClearing(failList);
+				}
+			}
+
+
+			//TODO 更新成功打款记录订单状态
+			if(successList.size()>0) {
+				int i =orderInfoService.updateOrderInfoByClearingId(successList);
+				if(i==0){orderInfoService.updateNoOrderClearing(failList);}
+			}
+
+
+			//TODO 插入打款记录信息
+			paymentRecordService.batchSavePaymentRecordService(transVos);
+			//TODO 更新打款记录明细
+			clearingRecordDetailService.batchClearingRecordDetailInfo(transVos);
+			// TODO 更新打款记录状态
+			TransVo transVo = transVos.get(0);
+			ClearingRecordDetail recordDetail = clearingRecordDetailService.queryById(transVo.getId());
+			if(recordDetail!=null){
+				ClearingRecord clearingRecord = new ClearingRecord();
+				clearingRecord.setStatus(3);
+				clearingRecord.setId(recordDetail.getFkClearingId());
+				return clearingRecordService.updateByIdSelective(clearingRecord);
+				}
+			}
+		return 0;
+	}
+	@Value("${clearing.flag}")
+	private boolean flag;
+	private Dlmaps transPaymentInfo(String fileName,Integer orderCount,String money,String companyType){
+		boolean a = true ;
+		if ("1".equals(companyType)){
+			a=false;
+		}
+		Dlmaps requestPac = new Dlmaps();
+		PUB pub = new PUB();
+		pub.setAPP_TYPE(app_type);
+		pub.setBANK_ID(bank_id);
+		pub.setTRADE_ID("8912");
+		pub.setTRAN_TIME(DateUtils.formatDate(new Date(), "yyyyMMddHHmmss"));
+		if (a){
+			pub.setDPT_ID(jj_dpt_id);
+		}else {
+			pub.setDPT_ID(dpt_id);
+		}
+
+		pub.setTRADE_SEQ(StringUtils.generateOrderNum());
+		requestPac.setPUB(pub);
+
+		IN in = new IN();
+		in.setTRADE_FILE(fileName);
+		in.setTRADE_NUM(String.valueOf(orderCount));
+		in.setTRADE_TOTAL_MONEY(String.valueOf(money));
+		in.setTRADE_TIME(DateUtils.formatDate(new Date(), "yyyyMMddHHmmss"));
+		requestPac.setIN(in);
+		if (!flag){
+			return null;
+		}
+		try {
+			Dlmaps result =  bankRequestKit.query(requestPac);
+			result.setIN(in);
+			return result;
+		}catch (Exception e) {
+			ftpUtil.deleteFile(ftpUploadDir,  fileName);
+			throw e;
+		}
+	}
+
+
+}

+ 173 - 0
src/main/java/com/hywa/banktest/bankframework/socketHandle/BankSocket.java

@@ -0,0 +1,173 @@
+package com.hywa.banktest.bankframework.socketHandle;
+
+import java.io.BufferedReader;
+import java.io.IOException;
+import java.io.InputStream;
+import java.io.InputStreamReader;
+import java.io.OutputStream;
+import java.io.PrintWriter;
+import java.io.UnsupportedEncodingException;
+import java.net.ServerSocket;
+import java.net.Socket;
+import javax.annotation.PostConstruct;
+import org.springframework.beans.factory.annotation.Value;
+import org.springframework.scheduling.annotation.Async;
+import org.springframework.stereotype.Component;
+import com.hywa.banktest.bankframework.pack.Dlmaps;
+import com.hywa.banktest.bankframework.schedule.BankRequsetProcess;
+import com.hywa.banktest.bankframework.utils.XmlUtils;
+import com.hywa.banktest.kit.SpringContext;
+import com.hywa.banktest.service.impl.OrderInfoServiceImpl;
+
+import lombok.extern.slf4j.Slf4j;
+
+@Slf4j
+@Component
+public class BankSocket {
+
+	@Value("${bank.post.socket.server.address}")
+	String serverAddr;
+	@Value("${bank.post.socket.server.port}")
+	int serverPort;
+	@Value("${local.post.socket.port}")
+	int localSocketPort;
+	
+	
+	public Dlmaps query(Dlmaps requestPacket) {
+		Socket socket = null;
+		BufferedReader br = null;
+		InputStream is = null;
+		PrintWriter pw = null;
+		OutputStream os = null;
+		StringBuffer result = new StringBuffer();
+		try {
+			socket = new Socket(serverAddr, serverPort);
+			//socket.setSoTimeout(1000 * 58);
+			os = socket.getOutputStream();
+			pw = new PrintWriter(os, true);
+			String requestStr = dlmaps2RequestStr(requestPacket);
+			log.error("发送报文:" + requestStr);
+			pw.write(requestStr);
+			pw.flush();
+			socket.shutdownOutput();
+			is = socket.getInputStream();
+
+			result.append(inputStream2Str(is));
+			
+			log.error("收到响应报文:" + result);
+		} catch (IOException e) {
+			e.printStackTrace();
+		} finally {
+			closeAll(socket, br, is, pw, os);
+		}
+		result.delete(0, result.indexOf("<"));
+		result.delete(result.indexOf("***"), result.length());
+		return XmlUtils.fromXML(result.toString(), Dlmaps.class);
+	}
+	
+	@PostConstruct
+
+	public void socketServer() {
+		new Thread(() -> {
+			ServerSocket serverSocket = null;
+			BufferedReader br = null;
+			OutputStream os = null;
+			PrintWriter pw = null;
+			InputStream is = null;
+			try {
+				serverSocket = new ServerSocket(localSocketPort);
+				System.err.println("socket server started");
+				Socket socket = null;
+				while (true) {
+					try {
+						socket = serverSocket.accept();
+						is = socket.getInputStream();
+						br = new BufferedReader(new InputStreamReader(is));
+						
+						StringBuffer result = new StringBuffer(inputStream2Str(is));
+						System.err.println("服务端收到报文:" + result);
+						result.delete(0, result.indexOf("<"));
+						result.delete(result.indexOf("***"), result.length());
+						System.err.println("服务端处理xml报文:" + result);
+						Dlmaps dlmaps = XmlUtils.fromXML(result.toString(), Dlmaps.class);
+						BankRequsetProcess bankRequsetProcess = (BankRequsetProcess) SpringContext.getBean("bankRequsetProcess");
+						Dlmaps resultDlmaps = bankRequsetProcess.process(dlmaps);
+						os = socket.getOutputStream();
+						pw = new PrintWriter(os);
+						String resStr = dlmaps2RequestStr(resultDlmaps);
+						pw.write(resStr);
+						pw.flush();
+					} catch (Exception e) {//统一catch Exception防止跳出serverSocket.   另一种解决办法是线程处理客户端socket对象
+						e.printStackTrace();
+					} finally {
+						closeAll(socket, br, is, pw, os);
+					}
+				}
+			} catch (Exception e1) {
+				e1.printStackTrace();
+			} finally {
+				if (null != serverSocket) {
+					try {
+						serverSocket.close();
+					} catch (IOException e) {
+						e.printStackTrace();
+					}
+				}
+			}
+		}).start();
+	}
+	
+	private String inputStream2Str(InputStream is) throws IOException {
+		byte[] readbuf = new byte[4];
+		is.read(readbuf);
+		Integer msglen = Integer.parseInt((new String(readbuf, 0, readbuf.length, "UTF-8")));
+		readbuf = new byte[msglen];
+		is.read(readbuf);
+		String reciveString = new String(readbuf, 0, readbuf.length, "UTF-8");
+		return String.format("%04d", msglen) + reciveString;
+	}
+	
+	private String dlmaps2RequestStr(Dlmaps requestPacket) throws UnsupportedEncodingException {
+		String xmlRequest = XmlUtils.toXML(requestPacket);
+		StringBuffer requestPac = new StringBuffer();
+		requestPac.append("TEB").append(requestPacket.getPUB().getTRADE_ID()).append(requestPacket.getPUB().getDPT_ID()).append(xmlRequest);
+		
+		StringBuffer requestStr = new StringBuffer(String.format("%04d", requestPac.toString().getBytes("UTF-8").length + 3)).append(requestPac).append("***");
+		return requestStr.toString();
+	}
+	
+	private void closeAll(Socket socket, BufferedReader br, InputStream is, PrintWriter pw, OutputStream os) {
+		if (null != br) {
+			try {
+				br.close();
+			} catch (IOException e) {
+				e.printStackTrace();
+			}
+		}
+		if (null != is) {
+			try {
+				is.close();
+			} catch (IOException e) {
+				e.printStackTrace();
+			}
+		}
+		if (null != pw) {
+			pw.close();
+		}
+		if (null != os) {
+			try {
+				os.close();
+			} catch (IOException e) {
+				e.printStackTrace();
+			}
+		}
+		if (null != socket) {
+			try {
+				socket.close();
+			} catch (IOException e) {
+				e.printStackTrace();
+			}
+		}
+	}
+	
+}

+ 146 - 0
src/main/java/com/hywa/banktest/bankframework/utils/DateUtils.java

@@ -0,0 +1,146 @@
+package com.hywa.banktest.bankframework.utils;
+
+import java.text.ParseException;
+import java.text.SimpleDateFormat;
+import java.util.Calendar;
+import java.util.Date;
+
+
+
+/**
+ * 日期工具类
+ * @author gd_xbb
+ */
+public class DateUtils {
+	/**默认格式(2016-08-20)*/
+	public static final String DEFAULT_FORMAT = "yyyy-MM-dd";
+	/**详细日期格式(2016-08-20 17:30:30)*/
+	public static final String DETAIL = "yyyy-MM-dd HH:mm:ss";
+	/**带/的日期格式(2016/08/20)*/
+	public static final String FORMAT_SLASH = "yyyy/MM/dd";
+	/**中文的日期格式(2016年08月20日)*/
+	public static final String CHINESE_FORMAT = "yyyy年MM月dd日";
+	public static final String CHINESE_FORMAT_DETAIL = "yyyy年MM月dd日 HH:mm:ss";
+	/*一天 时间毫秒数*/
+	public static final long ONE_DAY_MILLIS = 1000*3600*24;
+	
+	/**
+	 * 将Date类型转换为字符串类型 
+	 * 
+	 * @param date
+	 * @param format
+	 * @return
+	 */
+	public static String formatDate(Date date, String format){
+		if (null == date){
+			return null;
+		}
+		if (StringUtils.isEmpty(format)){
+			format = DEFAULT_FORMAT;
+		}
+		SimpleDateFormat sdf = new SimpleDateFormat(format);
+		return sdf.format(date);
+	}
+	
+	/**
+	 * 将String类型转换为date类型
+	 * 
+	 * @param dateStr
+	 * @param format
+	 * @return
+	 * @throws ParseException
+	 */
+	public static Date stringToDate(String dateStr, String format) throws ParseException{
+		if (StringUtils.isEmpty(dateStr)){
+			return null;
+		}
+		if (StringUtils.isEmpty(format)){
+			format = DEFAULT_FORMAT;
+		}
+		SimpleDateFormat sdf = new SimpleDateFormat(format);
+		return sdf.parse(dateStr);
+	}
+	
+	/**
+	 * 得到本月最开始的时间
+	 * 
+	 * @return
+	 */
+	public static Date currentMonthStart(){
+		Calendar calendar = Calendar.getInstance();
+		calendar.set(Calendar.DAY_OF_MONTH, 1);
+		calendar.set(Calendar.HOUR_OF_DAY, 0);
+		calendar.set(Calendar.MINUTE, 0);
+		calendar.set(Calendar.SECOND, 0);
+		return calendar.getTime();
+	}
+	
+	/**
+	 * 得到本月最后一刻时间
+	 * @return
+	 */
+	public static Date currentMonthEnd(){
+		Calendar calendar = Calendar.getInstance();
+		calendar.set(Calendar.DAY_OF_MONTH, calendar.getActualMaximum(Calendar.DAY_OF_MONTH));
+		calendar.set(Calendar.HOUR_OF_DAY, 23);
+		calendar.set(Calendar.MINUTE, 59);
+		calendar.set(Calendar.SECOND, 59);
+		return calendar.getTime();
+	}
+	
+	/**
+	 * 得到本年年份
+	 * @return
+	 */
+	public static int currentYear(){
+		Calendar calendar = Calendar.getInstance();
+		return calendar.get(Calendar.YEAR);
+	}
+	
+	/**
+	 * 通过生日得到年龄
+	 * @param birthDate
+	 * @return
+	 */
+	public static int getAge(Date birthDate) {
+		if (birthDate == null)
+			throw new RuntimeException("出生日期不能为null");
+		int age = 0;
+		Date now = new Date();
+		SimpleDateFormat format_y = new SimpleDateFormat("yyyy");
+		SimpleDateFormat format_M = new SimpleDateFormat("MM");
+		String birth_year = format_y.format(birthDate);
+		String this_year = format_y.format(now);
+		String birth_month = format_M.format(birthDate);
+		String this_month = format_M.format(now);
+		// 初步,估算
+		age = Integer.parseInt(this_year) - Integer.parseInt(birth_year);
+		// 如果未到出生月份,则age - 1
+		if (this_month.compareTo(birth_month) < 0)
+			age -= 1;
+		if (age < 0)
+			age = 0;
+		return age;
+	}
+	
+	
+	/**
+	 * 通过日期生成惟一主键
+	 * @return
+	 */
+	public static synchronized String generateId(){
+		return System.currentTimeMillis()+"";
+	}
+	
+	
+	public static synchronized String generateDateId(){
+		Date date = new Date();
+		String dateStr = formatDate(date, "yyyyMMddHHmmss");
+		return dateStr;
+	}
+
+	public static void main(String args[]){
+		System.out.println(generateDateId());
+	}
+	
+}

+ 210 - 0
src/main/java/com/hywa/banktest/bankframework/utils/FtpUtil.java

@@ -0,0 +1,210 @@
+package com.hywa.banktest.bankframework.utils;
+
+import java.io.File;
+import java.io.FileInputStream;
+import java.io.FileOutputStream;
+import java.io.IOException;
+import java.io.InputStream;
+import java.io.OutputStream;
+import java.net.MalformedURLException;
+import org.apache.commons.net.ftp.FTPClient;
+import org.apache.commons.net.ftp.FTPFile;
+import org.apache.commons.net.ftp.FTPReply;
+import org.springframework.beans.factory.annotation.Value;
+import org.springframework.stereotype.Component;
+
+import templateservice.FileKit;
+
+
+@Component
+public class FtpUtil {
+	
+	@Value("${bank.post.ftp.address}")
+    public String hostname;
+	@Value("${bank.post.ftp.port}")
+    public Integer port;
+	@Value("${bank.post.ftp.username}")
+    public String username;
+	@Value("${bank.post.ftp.password}")
+    public String password;
+	
+	private FTPClient getFtpClient() {
+		FTPClient ftpClient = new FTPClient();
+		ftpClient.setControlEncoding("utf-8");
+		try {
+			ftpClient.connect(hostname, port);
+			ftpClient.login(username, password);
+			int replyCode = ftpClient.getReplyCode();
+			if (!FTPReply.isPositiveCompletion(replyCode)) {
+				throw new RuntimeException("登陆ftp服务器失败");
+			}
+			return ftpClient;
+		} catch (MalformedURLException e) {
+			e.printStackTrace();
+		} catch (IOException e) {
+			e.printStackTrace();
+		}
+		return null;
+	}
+	
+	private void closeFtpClient(FTPClient ftpClient) {
+		if (null != ftpClient) {
+			try {
+				ftpClient.logout();
+			} catch (IOException e) {
+			}
+			if (ftpClient.isConnected()) {
+				try {
+					ftpClient.disconnect();
+				} catch (IOException e) {
+					e.printStackTrace();
+				}
+			}
+		}
+	}
+
+	//public FtpUtil(String hostname, Integer port, String username, String password, FTPClient ftpClient) {
+		//super();
+		//this.hostname = hostname;
+		//this.port = port;
+		//this.username = username;
+		//this.password = password;
+	//}
+
+	public FtpUtil() {
+		super();
+	}
+
+	/**
+	 * 上传文件
+	 * @param pathname ftp服务保存地址
+	 * @param fileName 上传到ftp的文件名
+	 * @param localFilePath 待上传文件的名称(绝对地址)
+	 * @return
+	 */
+	public void uploadFile(String pathname, String fileName, String localFilePath) {
+		InputStream inputStream = null;
+		FTPClient ftpClient = null;
+		try {
+			ftpClient = getFtpClient();
+			inputStream = new FileInputStream(new File(localFilePath));
+			ftpClient.setFileType(FTPClient.BINARY_FILE_TYPE);
+			ftpClient.makeDirectory(pathname);
+			ftpClient.changeWorkingDirectory(pathname);
+			ftpClient.storeFile(fileName, inputStream);
+		} catch (Exception e) {
+			e.printStackTrace();
+		} finally {
+			closeFtpClient(ftpClient);
+			if (null != inputStream) {
+				try {
+					inputStream.close();
+				} catch (IOException e) {
+					e.printStackTrace();
+				}
+			}
+		}
+	}
+
+	/**
+	 * 上传文件
+	 * 
+	 * @param pathname 		ftp服务保存地址
+	 * @param fileName  		上传到ftp的文件名
+	 * @param inputStream 	输入文件流
+	 * @return
+	 */
+	public void uploadFile(String pathname, String fileName, InputStream inputStream) {
+		FTPClient ftpClient = null;
+		try {
+			ftpClient = getFtpClient();
+			ftpClient.setFileType(FTPClient.BINARY_FILE_TYPE);
+			ftpClient.makeDirectory(pathname);
+			ftpClient.changeWorkingDirectory(pathname);
+			ftpClient.storeFile(fileName, inputStream);
+		} catch (Exception e) {
+			e.printStackTrace();
+		} finally {
+			closeFtpClient(ftpClient);
+			if (null != inputStream) {
+				try {
+					inputStream.close();
+				} catch (IOException e) {
+					e.printStackTrace();
+				}
+			}
+		}
+	}
+
+	public boolean existFile(String ftpDir, String ftpFileName) {
+		FTPClient ftpClient = getFtpClient();
+		boolean flag = false;
+		try {
+			ftpClient.changeWorkingDirectory(ftpDir);
+		} catch (IOException e2) {
+			e2.printStackTrace();
+		}
+		FTPFile[] ftpFileArr = null;
+		try {
+			ftpFileArr = ftpClient.listFiles(ftpFileName);
+		} catch (IOException e2) {
+			e2.printStackTrace();
+		}
+		if (null == ftpFileArr || ftpFileArr.length > 0) {
+			flag = true;
+		}
+		closeFtpClient(ftpClient);
+		return flag;
+	}
+
+	/**
+	 * * 下载文件 
+	 * @param ftpDir FTP服务器文件目录 
+	 * @param ftpFileName 文件名称 
+	 * @param localpath 下载后的文件路径 
+	 * @return
+	 */
+	public void downloadFile(String ftpDir, String ftpFileName, String localpath) {
+		OutputStream os = null;
+		FTPClient ftpClient = null;
+		try {
+			ftpClient = getFtpClient();
+			ftpClient.changeWorkingDirectory(ftpDir);
+			FTPFile[] ftpFiles = ftpClient.listFiles();
+			for (FTPFile file : ftpFiles) {
+				if (ftpFileName.equalsIgnoreCase(file.getName())) {
+					File localFile = new File(localpath);
+					FileKit.createFile(localpath);
+					os = new FileOutputStream(localFile);
+					ftpClient.retrieveFile(file.getName(), os);
+					os.close();
+				}
+			}
+		} catch (Exception e) {
+			e.printStackTrace();
+		} finally {
+			closeFtpClient(ftpClient);
+			if (null != os) {
+				try {
+					os.close();
+				} catch (IOException e) {
+					e.printStackTrace();
+				}
+			}
+		}
+	}
+
+	public void deleteFile(String ftpDir, String filename) {
+		FTPClient ftpClient = null;
+		try {
+			ftpClient = getFtpClient();
+			ftpClient.changeWorkingDirectory(ftpDir);
+			ftpClient.dele(filename);
+		} catch (Exception e) {
+			e.printStackTrace();
+		} 
+		finally {
+			closeFtpClient(ftpClient);
+		}
+	}
+}

+ 377 - 0
src/main/java/com/hywa/banktest/bankframework/utils/StringUtils.java

@@ -0,0 +1,377 @@
+package com.hywa.banktest.bankframework.utils;
+
+import java.io.File;
+import java.io.UnsupportedEncodingException;
+import java.math.BigDecimal;
+import java.security.MessageDigest;
+import java.security.NoSuchAlgorithmException;
+import java.text.DateFormat;
+import java.text.SimpleDateFormat;
+import java.util.Calendar;
+import java.util.Date;
+import java.util.GregorianCalendar;
+import java.util.HashMap;
+import java.util.Map;
+import java.util.Random;
+import java.util.UUID;
+import java.util.regex.Matcher;
+import java.util.regex.Pattern;
+
+
+
+public final class StringUtils {
+
+	final static Map<Integer, String> zoneNum = new HashMap<Integer, String>();
+    static {
+        zoneNum.put(11, "北京");
+        zoneNum.put(12, "天津");
+        zoneNum.put(13, "河北");
+        zoneNum.put(14, "山西");
+        zoneNum.put(15, "内蒙古");
+        zoneNum.put(21, "辽宁");
+        zoneNum.put(22, "吉林");
+        zoneNum.put(23, "黑龙江");
+        zoneNum.put(31, "上海");
+        zoneNum.put(32, "江苏");
+        zoneNum.put(33, "浙江");
+        zoneNum.put(34, "安徽");
+        zoneNum.put(35, "福建");
+        zoneNum.put(36, "江西");
+        zoneNum.put(37, "山东");
+        zoneNum.put(41, "河南");
+        zoneNum.put(42, "湖北");
+        zoneNum.put(43, "湖南");
+        zoneNum.put(44, "广东");
+        zoneNum.put(45, "广西");
+        zoneNum.put(46, "海南");
+        zoneNum.put(50, "重庆");
+        zoneNum.put(51, "四川");
+        zoneNum.put(52, "贵州");
+        zoneNum.put(53, "云南");
+        zoneNum.put(54, "西藏");
+        zoneNum.put(61, "陕西");
+        zoneNum.put(62, "甘肃");
+        zoneNum.put(63, "青海");
+        zoneNum.put(64, "新疆");
+        zoneNum.put(71, "台湾");
+        zoneNum.put(81, "香港");
+        zoneNum.put(82, "澳门");
+        zoneNum.put(91, "外国");
+    }
+     
+    final static int[] PARITYBIT = {'1', '0', 'X', '9', '8', '7', '6', '5', '4', '3', '2'};
+    final static int[] POWER_LIST = { 7, 9, 10, 5, 8, 4, 2, 1, 6, 3, 7, 9, 10, 5, 8, 4, 2};
+    final static char[] UPPER_LIST = {'A', 'B', 'C', 'D', 'E', 'F', 'G', 'H', 'I', 'J', 'K', 'L', 'M', 'N', 'O', 'P', 'Q', 'R', 'S', 'T', 'U', 'V', 'W', 'X', 'Y', 'Z'};
+    
+    /**
+     * 身份证验证
+     *@param s  号码内容
+     *@return 是否有效 null和"" 都是false 
+     */
+    public static boolean isIDCard(String certNo){
+        if(certNo == null || (certNo.length() != 15 && certNo.length() != 18))
+            return false;
+        final char[] cs = certNo.toUpperCase().toCharArray();
+        //校验位数
+        int power = 0;
+        for(int i=0; i<cs.length; i++){
+            if(i==cs.length-1 && cs[i] == 'X')
+                break;//最后一位可以 是X或x
+            if(cs[i]<'0' || cs[i]>'9')
+                return false;
+            if(i < cs.length -1){
+                power += (cs[i] - '0') * POWER_LIST[i];
+            }
+        }
+         
+        //校验区位码
+        if(!zoneNum.containsKey(Integer.valueOf(certNo.substring(0,2)))){
+            return false;
+        }
+         
+        //校验年份
+        String year = certNo.length() == 15 ? getIdcardCalendar() + certNo.substring(6,8) :certNo.substring(6, 10);
+         
+        final int iyear = Integer.parseInt(year);
+        if(iyear < 1900 || iyear > Calendar.getInstance().get(Calendar.YEAR))
+            return false;//1900年的PASS,超过今年的PASS
+         
+        //校验月份
+        String month = certNo.length() == 15 ? certNo.substring(8, 10) : certNo.substring(10,12);
+        final int imonth = Integer.parseInt(month);
+        if(imonth <1 || imonth >12){
+            return false;
+        }
+         
+        //校验天数      
+        String day = certNo.length() ==15 ? certNo.substring(10, 12) : certNo.substring(12, 14);
+        final int iday = Integer.parseInt(day);
+        if(iday < 1 || iday > 31)
+            return false;       
+         
+        //校验"校验码"
+        if(certNo.length() == 15)
+            return true;
+        return cs[cs.length -1 ] == PARITYBIT[power % 11];
+    }
+     
+    private static int getIdcardCalendar() {        
+         GregorianCalendar curDay = new GregorianCalendar();
+         int curYear = curDay.get(Calendar.YEAR);
+         int year2bit = Integer.parseInt(String.valueOf(curYear).substring(2));          
+         return  year2bit;
+    }     
+	
+	public static boolean isEmpty(String str) {
+		if (null == str || "".equals(str)) {
+			return true;
+		} else {
+			return false;
+		}
+	}
+
+	public static boolean isNotEmpty(String str) {
+		return !isEmpty(str);
+	}
+
+	/**
+	 * 通过文件路径得到文件后缀名。如:hello.txt得到.txt
+	 * 
+	 * @param filePath
+	 *            文件路径
+	 * @return
+	 */
+	public static String getFileSuffix(String filePath) {
+		int pointIndex = filePath.lastIndexOf(".");
+		return filePath.substring(pointIndex, filePath.length());
+	}
+
+	public static String getFileNameWithoutSuffix(File file){
+		String fileName = file.getName();
+		int pointIndex = fileName.lastIndexOf(".");
+		return fileName.substring(0, pointIndex);
+	}
+	
+	public static boolean isEmail(String str) {
+		if (StringUtils.isEmpty(str)){
+			return false;
+		}
+		Pattern p = Pattern.compile("^([a-zA-Z0-9_-])+@([a-zA-Z0-9_-])+(\\.([a-zA-Z0-9_-])+)+$");
+		Matcher m = p.matcher(str);
+		return m.matches();
+	}
+
+	public static boolean isCellPhone(String str) {
+		if (isEmpty(str)) {
+			return false;
+		}
+		Pattern p = Pattern.compile("^(13[0-9]{9})|(18[0-9]{9})|(14[0-9]{9})|(17[0-9]{9})|(15[0-9]{9})$");
+		Matcher m = p.matcher(str);
+		return m.matches();
+	}
+
+	/**
+	 * 生成手机验证码
+	 * 
+	 * @return 长度为6的数字字符串
+	 */
+	public static String getVilidateCode() {
+		char[] codeSequence = { '0', '1', '2', '3', '4', '5', '6', '7', '8', '9' };
+		StringBuffer codeStr = new StringBuffer();
+		for (int i = 0; i < 6; i++) {
+			int j = (int) (Math.random() * 10);
+			codeStr.append(codeSequence[j]);
+		}
+		return codeStr.toString();
+	}
+
+	/**
+	 * MD5加密
+	 * 
+	 * @param 需要加密的字符串
+	 * @return 加密后的字符串
+	 */
+	public static String MD5(String s) {
+		char hexDigits[] = { '0', '1', '2', '3', '4', '5', '6', '7', '8', '9', 'A', 'B', 'C', 'D', 'E', 'F' };
+
+		try {
+			byte[] btInput = s.getBytes();
+			// 获得MD5摘要算法的 MessageDigest 对象
+			MessageDigest mdInst = MessageDigest.getInstance("MD5");
+			// 使用指定的字节更新摘要
+			mdInst.update(btInput);
+			// 获得密文
+			byte[] md = mdInst.digest();
+			// 把密文转换成十六进制的字符串形式
+			int j = md.length;
+			char str[] = new char[j * 2];
+			int k = 0;
+			for (int i = 0; i < j; i++) {
+				byte byte0 = md[i];
+				str[k++] = hexDigits[byte0 >>> 4 & 0xf];
+				str[k++] = hexDigits[byte0 & 0xf];
+			}
+			return new String(str);
+		} catch (Exception e) {
+			e.printStackTrace();
+			return null;
+		}
+	}
+
+	public static boolean isInteger(String str) {
+		if (isEmpty(str)) {
+			return false;
+		}
+		Pattern pattern = Pattern.compile("[0-9]*");
+		Matcher isNum = pattern.matcher(str);
+		return isNum.matches();
+	}
+
+	/**
+	 * 小数点保留方法
+	 * 
+	 * @param value
+	 *            需要处理的数值
+	 * @param scale
+	 *            需要保留的小数位数
+	 * @return
+	 */
+	public static float round(double value, int scale) {
+		if (scale < 0) {
+			throw new IllegalArgumentException("The scale must be a positive integer or zero");
+		}
+		BigDecimal bigDecimal = new BigDecimal(Double.toString(value));
+		BigDecimal one = new BigDecimal("1");
+		return bigDecimal.divide(one, scale, BigDecimal.ROUND_HALF_UP).floatValue();
+	}
+
+	public static String SHA1(String decript) {
+		try {
+			MessageDigest digest = java.security.MessageDigest.getInstance("SHA-1");
+			digest.update(decript.getBytes());
+			byte messageDigest[] = digest.digest();
+			StringBuffer hexString = new StringBuffer();
+			for (int i = 0; i < messageDigest.length; i++) {
+				String shaHex = Integer.toHexString(messageDigest[i] & 0xFF);
+				if (shaHex.length() < 2) {
+					hexString.append(0);
+				}
+				hexString.append(shaHex);
+			}
+			return hexString.toString();
+
+		} catch (NoSuchAlgorithmException e) {
+			e.printStackTrace();
+		}
+		return "";
+	}
+
+	
+	public static String getFieldName(String fieldName){
+		 return fieldName.replaceFirst(fieldName.substring(0), fieldName.substring(0).toLowerCase());
+	}
+	
+
+	
+	public synchronized static String getRandomUpper(int lenght){
+		Random random = new Random();
+		StringBuffer upperStr = new StringBuffer();
+		for (int i = 0; i < lenght; i++) {
+			upperStr.append(UPPER_LIST[random.nextInt(UPPER_LIST.length)]);
+		}
+		return upperStr.toString();
+	}
+	
+	/**
+	 * 字符串首字母转小写
+	 * @param str
+	 * @return
+	 */
+	public static String firstCharToLowerCase(String str) {
+		char firstChar = str.charAt(0);
+		if (firstChar >= 'A' && firstChar <= 'Z') {
+			char[] arr = str.toCharArray();
+			arr[0] += ('a' - 'A');
+			return new String(arr);
+		}
+		return str;
+	}
+	
+	/**
+	 * 字符串首字母转大写
+	 * @param str
+	 * @return
+	 */
+	public static String firstCharToUpperCase(String str) {
+		char firstChar = str.charAt(0);
+		if (Character.isLowerCase(firstChar)) {
+			char[] charArray = str.toCharArray(); 
+			  charArray[0] -= 32;  
+			  return String.valueOf(charArray);
+		}
+		return str;
+	}
+	
+	/**
+	 * 生成订单号
+	 * @return
+	 */
+	public static String generateOrderNum() {
+		//最大支持1-9个集群机器部署
+		int machineId = 1;
+		int hashCodeV = UUID.randomUUID().toString().hashCode();
+		if(hashCodeV < 0) {//有可能是负数
+			hashCodeV = - hashCodeV;
+		}
+		DateFormat dateFormat = new SimpleDateFormat("yyyyMMdd");
+		String result = dateFormat.format(new Date());
+		String AAA = result + machineId + String.format("%06d", hashCodeV);
+		return AAA;
+	}
+	
+	
+	/*由于Java是基于Unicode编码的,因此,一个汉字的长度为1,而不是2。 
+     * 但有时需要以字节单位获得字符串的长度。例如,“123abc长城”按字节长度计算是10,而按Unicode计算长度是8。 
+     * 为了获得10,需要从头扫描根据字符的Ascii来获得具体的长度。如果是标准的字符,Ascii的范围是0至255,如果是汉字或其他全角字符,Ascii会大于255。 
+     * 因此,可以编写如下的方法来获得以字节为单位的字符串长度。*/  
+    public static int getWordCount(String s)  
+    {  
+        int length = 0;  
+        for(int i = 0; i < s.length(); i++)  
+        {  
+            int ascii = Character.codePointAt(s, i);  
+            if(ascii >= 0 && ascii <=255)  
+                length++;  
+            else  
+                length += 2;  
+                  
+        }  
+        return length;  
+          
+    }  
+      
+    /*基本原理是将字符串中所有的非标准字符(双字节字符)替换成两个标准字符(**,或其他的也可以)。这样就可以直接例用length方法获得字符串的字节长度了*/  
+    public static  int getWordCountRegex(String s)  
+    {  
+  
+        s = s.replaceAll("[^\\x00-\\xff]", "**");  
+        int length = s.length();  
+        return length;  
+    }  
+      
+    /*按特定的编码格式获取长度*/  
+    public static int getWordCountCode(String str, String code) throws UnsupportedEncodingException{  
+        return str.getBytes(code).length;  
+    }  
+	
+    
+    public static String replaceBlank(String str) {
+		String dest = "";
+		if (str!=null) {
+			Pattern p = Pattern.compile("\\s*|\t|\r|\n");
+			Matcher m = p.matcher(str);
+			dest = m.replaceAll("");
+		}
+		return dest;
+	}
+}

+ 163 - 0
src/main/java/com/hywa/banktest/bankframework/utils/TransUtils.java

@@ -0,0 +1,163 @@
+package com.hywa.banktest.bankframework.utils;
+
+import java.io.BufferedReader;
+import java.io.File;
+import java.io.FileInputStream;
+import java.io.FileWriter;
+import java.io.IOException;
+import java.io.InputStreamReader;
+import java.math.BigDecimal;
+import java.util.ArrayList;
+import java.util.List;
+
+import com.hywa.banktest.bankframework.pack.TransVo;
+import lombok.extern.slf4j.Slf4j;
+import org.apache.commons.lang3.StringUtils;
+
+@Slf4j
+public class TransUtils {
+
+	/**
+	 *
+	 * @param transVos   	转帐数据
+	 * @param totalOrderNum 总笔数
+	 * @param totalMoney 	总金额
+	 * @param outPutDir     文件输出目录, 例:C:/dir
+	 * @param fileName      输出文件名, 例:hello.txt
+	 * @return
+	 */
+	public static void transToFile(List<TransVo> transVos, int totalOrderNum,BigDecimal totalMoney,String outPutDir, String fileName) {
+		StringBuilder ret = new StringBuilder();
+		ret.append(totalOrderNum).append("|").append(totalMoney).append("\n");
+		for (TransVo transVo : transVos) {
+			ret.append(transVo.getNum()).append("|")
+					.append(transVo.getFarmerName()).append("|")
+					.append(transVo.getFarmerAccount()).append("|")
+					.append(transVo.getCardType()).append("|")
+					.append(transVo.getFarmerPid()).append("|")
+					.append(transVo.getClearingMoneyDetail()).append("|")
+					.append(transVo.getFarmerPid()).append("|")
+					.append(transVo.getId()).append("|").append("\n");
+		}
+		log.info("ret===================>{}",ret);
+		writeToFile(ret, outPutDir, fileName);
+	}
+
+
+	public static List<TransVo> fileToTransVo(String fileDir, String fileName){
+		List<TransVo> transVos = new ArrayList<>();
+		String target = fileDir + File.separator + fileName;
+		String lineText = readToLineFile(new File(target), "GBK").trim();
+		String[] lines = lineText.split("\n");
+		for (int i = 1; i < lines.length; i++) {
+			if (StringUtils.isEmpty(lines[i])){
+				continue;
+			}
+			String[] words = lines[i].split("\\|");
+			TransVo transVo1 = new TransVo();
+			transVo1.setNum(Integer.valueOf(words[0]));
+			transVo1.setFarmerName(words[1]);
+			transVo1.setFarmerAccount(words[2]);
+			transVo1.setCardType(words[3]);
+			transVo1.setFarmerPid(words[4]);
+			transVo1.setMoney(words[5]);
+			transVo1.setCustomerNum(words[6]);
+			transVo1.setOrderNo(words[7]);
+			if (words.length >= 10) {
+				transVo1.setBankDealState(words[8]);
+				transVo1.setBankDealMsg(words[9]);
+			}
+			transVo1.setBankReceiptFile(fileName);
+			transVo1.setId(words[7]);
+			transVos.add(transVo1);
+		}
+		return transVos;
+	}
+
+	/**
+	 * 把字符串写入到文件
+	 * @param ret   字符串builder
+	 * @param outPutDir   文件输出目录, 例:C:/dir
+	 * @param fileName    输出文件名, 例:hello.txt
+	 */
+	private static void writeToFile(StringBuilder ret, String outPutDir, String fileName) {
+		FileWriter fw = null;
+		try {
+			File dir = new File(outPutDir);
+			if (!dir.exists()) {
+				dir.mkdirs();
+			}
+
+			String target = outPutDir + File.separator + fileName;
+			fw = new FileWriter(target);
+			fw.write(ret.toString());
+		}
+		catch (IOException e) {
+			throw new RuntimeException(e);
+		}
+		finally {
+			if (fw != null) {
+				try {fw.close();} catch (IOException e) {e.printStackTrace();}
+			}
+		}
+	}
+
+
+
+	private static String readToLineFile(File file, String charset) {
+		charset = null != charset ? charset : "UTF-8";
+		BufferedReader bufferedReader = null;
+		if (file.isFile() && file.exists()) {
+			try {
+				FileInputStream fileInputStream = new FileInputStream(file);
+				InputStreamReader inputStreamReader = new InputStreamReader(fileInputStream, charset);
+				bufferedReader = new BufferedReader(inputStreamReader);
+				StringBuffer sb = new StringBuffer();
+				String text = null;
+				while ((text = bufferedReader.readLine()) != null) {
+					sb.append(text).append("\n");
+				}
+				return sb.toString();
+			} catch (Exception e) {
+				e.printStackTrace();
+			} finally {
+				if (null != bufferedReader) {
+					try {
+						bufferedReader.close();
+					} catch (IOException e) {
+						e.printStackTrace();
+					}
+				}
+			}
+		}
+		return null;
+	}
+
+	public static void main(String args[]) {
+//		List<TransVo> transVos = new ArrayList<>();
+//		TransVo transVo1 = new TransVo();
+//		transVo1.setBankAccount("银行账号1");
+//		transVo1.setCardNum("身份证号1");
+//		transVo1.setCardType("01(身份证)");
+//		transVo1.setCustomerNum("户号1");
+//		transVo1.setMoney("100");
+//		transVo1.setName("姓名");
+//		transVo1.setOrderNo("订单号1");
+//		transVos.add(transVo1);
+//		TransVo transVo2 = new TransVo();
+//		transVo2.setBankAccount("银行账号2");
+//		transVo2.setCardNum("身份证号2");
+//		transVo2.setCardType("01(身份证)");
+//		transVo2.setCustomerNum("户号2");
+//		transVo2.setMoney("100");
+//		transVo2.setName("姓名1");
+//		transVo2.setOrderNo("订单号2");
+//		transVos.add(transVo2);
+//		transToFile(transVos, 2, 200, "C:\\bank", "hello.txt");
+//		List<TransVo> transVo = unTrans("/Users/xubinbin/Desktop/txt", "hello.txt");
+//		System.out.println(transVo.get(0).getReturnCode());
+
+		System.out.println(readToLineFile(new File("/Users/xubinbin/Desktop/20180226qut008gbk.txt"), "GBK"));
+	}
+
+}

+ 95 - 0
src/main/java/com/hywa/banktest/bankframework/utils/UUIDUtils.java

@@ -0,0 +1,95 @@
+package com.hywa.banktest.bankframework.utils;
+
+import java.math.BigInteger;
+import java.security.MessageDigest;
+import java.security.NoSuchAlgorithmException;
+import java.text.SimpleDateFormat;
+import java.util.Date;
+import java.util.Random;
+import java.util.UUID;
+
+
+/** 
+* 产生一个32位的GUID  工具类
+* @return 
+*/ 
+public class UUIDUtils {
+
+/** 
+* 产生一个32位的GUID 
+* @return 
+*/ 
+public static String newGUID() 
+{ 
+UUID uuid = UUID.randomUUID(); 
+return uuid.toString().replace("-", ""); 
+} 
+
+
+/** 
+   * 获取32位GUID 
+   * 
+   * @return 
+   */ 
+  public static String getId() { 
+      try { 
+          MessageDigest md = MessageDigest.getInstance("MD5"); 
+          UUID uuid = UUID.randomUUID(); 
+          String guidStr = uuid.toString(); 
+          md.update(guidStr.getBytes(), 0, guidStr.length()); 
+          return new BigInteger(1, md.digest()).toString(16); 
+      } catch (NoSuchAlgorithmException e) { 
+          return null; 
+      } 
+  }
+  /**
+   * 生成订单信息16位订单
+   * @return
+   */
+  public synchronized static String randomOrder(){
+		String code="";
+		Random rand=new Random();//生成随机数
+		  for(int a=0;a<4;a++){
+		        code+=rand.nextInt(10);//生成4位验证码
+		  }
+		SimpleDateFormat sdf = new SimpleDateFormat("yyyyMMddHHmmss");
+		String orderNo = sdf.format(new Date()).substring(2)+code;
+		return orderNo;
+	}
+  
+  /**
+   * 获取随机码
+   * @return
+   */
+  public static String randomOrderLeng(Integer leng){
+	  String code="";
+	  Random rand=new Random();//生成随机数
+	  for(int a=0;a<leng;a++){
+		  code+=rand.nextInt(10);//生成6位验证码
+	  }
+	  SimpleDateFormat sdf = new SimpleDateFormat("SSS");
+	  String orderNo = "G"+sdf.format(new Date())+code;
+	  return orderNo;
+  }
+  /**
+   * 获取随机码
+   * @return
+   */
+  public static String randomCertLeng(Integer leng){
+	  String code = "";
+		Random rand=new Random();//生成随机数
+		  for(int a=0;a<leng;a++){
+			  code+=rand.nextInt(10);//生成6位验证码
+		  }
+		  return code;
+  }
+  public static String setCodeString(Integer lengs,String leng) {
+		String s = "";
+		for(int i = 1 ;i < leng.length();i++){
+			s+="0";
+		}
+		Integer n = lengs - leng.length();
+		String code = UUIDUtils.randomCertLeng(n)+s;
+		return code;
+	}
+}

+ 37 - 0
src/main/java/com/hywa/banktest/bankframework/utils/XmlUtils.java

@@ -0,0 +1,37 @@
+package com.hywa.banktest.bankframework.utils;
+
+import java.io.StringReader;
+import java.io.StringWriter;
+
+import javax.xml.bind.JAXBContext;
+import javax.xml.bind.Marshaller;
+import javax.xml.bind.Unmarshaller;
+
+public class XmlUtils {
+	public static String toXML(Object obj) {
+		try {
+			JAXBContext context = JAXBContext.newInstance(obj.getClass());
+
+			Marshaller marshaller = context.createMarshaller();
+			marshaller.setProperty(Marshaller.JAXB_ENCODING, "UTF-8");// //编码格式
+			//marshaller.setProperty(Marshaller.JAXB_FORMATTED_OUTPUT, true);// 是否格式化生成的xml串
+			marshaller.setProperty(Marshaller.JAXB_FRAGMENT, false);// 是否省略xm头声明信息
+			StringWriter writer = new StringWriter();
+			marshaller.marshal(obj, writer);
+			return writer.toString();
+		} catch (Exception e) {
+			throw new RuntimeException(e);
+		}
+	}
+
+	@SuppressWarnings("unchecked")
+	public static <T> T fromXML(String xml, Class<T> valueType) {
+		try {
+			JAXBContext context = JAXBContext.newInstance(valueType);
+			Unmarshaller unmarshaller = context.createUnmarshaller();
+			return (T) unmarshaller.unmarshal(new StringReader(xml));
+		} catch (Exception e) {
+			throw new RuntimeException(e.getMessage());
+		}
+	}
+}

+ 29 - 0
src/main/java/com/hywa/banktest/bankframework/utils/httpclient/ClientKeyStore.java

@@ -0,0 +1,29 @@
+package com.hywa.banktest.bankframework.utils.httpclient;
+
+import javax.net.ssl.KeyManagerFactory;
+
+/**
+ * 
+ * 版权所有:2016-贵州精英天成科技股份有限公司
+ * 项目名称:plamsa-common   
+ *
+ * 类描述:
+ * 类名称:com.elite.common.utils.httpclient.ClientKeyStore     
+ * 创建人: xiezt 
+ * 创建时间:2016年5月6日 下午4:26:25   
+ * 修改人:
+ * 修改时间:2016年5月6日 下午4:26:25   
+ * 修改备注:   
+ * @version 1.0
+ */
+public class ClientKeyStore {
+	private KeyManagerFactory keyManagerFactory;
+	
+	ClientKeyStore(KeyManagerFactory keyManagerFactory){
+		this.keyManagerFactory = keyManagerFactory;
+	}
+	
+	KeyManagerFactory getKeyManagerFactory(){
+		return keyManagerFactory;
+	}
+}

+ 360 - 0
src/main/java/com/hywa/banktest/bankframework/utils/httpclient/EasyHttpUtils.java

@@ -0,0 +1,360 @@
+/**
+ * @Title: EasyHttpUtils.java
+ * @Package com.elite.common.utils.httpclient
+ * @Description: TODO(用一句话描述该文件做什么)
+ * @author admin
+ * @date 2016年5月23日 下午5:30:48
+ * @version V1.0
+ */
+package com.hywa.banktest.bankframework.utils.httpclient;
+
+import com.alibaba.fastjson.JSONObject;
+import org.apache.http.*;
+import org.apache.http.client.ClientProtocolException;
+import org.apache.http.client.HttpRequestRetryHandler;
+import org.apache.http.client.config.CookieSpecs;
+import org.apache.http.client.config.RequestConfig;
+import org.apache.http.client.entity.UrlEncodedFormEntity;
+import org.apache.http.client.methods.CloseableHttpResponse;
+import org.apache.http.client.methods.HttpGet;
+import org.apache.http.client.methods.HttpPost;
+import org.apache.http.client.protocol.HttpClientContext;
+import org.apache.http.conn.ConnectTimeoutException;
+import org.apache.http.conn.ssl.SSLConnectionSocketFactory;
+import org.apache.http.conn.ssl.SSLContexts;
+import org.apache.http.conn.ssl.TrustSelfSignedStrategy;
+import org.apache.http.entity.StringEntity;
+import org.apache.http.impl.client.CloseableHttpClient;
+import org.apache.http.impl.client.HttpClients;
+import org.apache.http.impl.client.LaxRedirectStrategy;
+import org.apache.http.impl.conn.PoolingHttpClientConnectionManager;
+import org.apache.http.message.BasicNameValuePair;
+import org.apache.http.protocol.HttpContext;
+import org.apache.http.util.EntityUtils;
+import org.apache.log4j.Logger;
+
+import javax.net.ssl.SSLContext;
+import javax.net.ssl.SSLException;
+import java.io.*;
+import java.net.HttpURLConnection;
+import java.net.UnknownHostException;
+import java.nio.charset.Charset;
+import java.security.KeyManagementException;
+import java.security.KeyStore;
+import java.security.KeyStoreException;
+import java.security.NoSuchAlgorithmException;
+import java.security.cert.CertificateException;
+import java.util.ArrayList;
+import java.util.List;
+import java.util.Map;
+
+
+/**
+ * 版权所有:2016-贵阳慧云网安科技有限公司
+ * 项目名称:plamsa-common   
+ *
+ * 类描述:
+ * 类名称:com.elite.common.utils.httpclient.EasyHttpUtils     
+ * 创建人: xiezt 
+ * 创建时间:2016年5月23日 下午5:30:48   
+ * 修改人:
+ * 修改时间:2016年5月23日 下午5:30:48   
+ * 修改备注:   
+ * @version 1.0
+ */
+
+public class EasyHttpUtils {
+
+    private static final Logger LOGG = Logger.getLogger(EasyHttpUtils.class);
+    //连接池最大数量
+    private static final int HTTPCLIENT_CONNECTION_COUNT = 200;
+    //单个路由最大连接数量
+    private static final int HTTPCLIENT_MAXPERROUTE_COUNT = 2;
+    //连接超时
+    private static final int HTTPCLIENT_CONNECT_TIMEOUT = 600000;
+    //socket超时
+    private static final int HTTPCLIENT_SOCKET_TIMEOUT = 600000;
+
+    // 创建httpclient连接池
+    private PoolingHttpClientConnectionManager httpClientConnectionManager = null;
+
+    private static final EasyHttpUtils EASY_HTTP_UTILS = new EasyHttpUtils();
+
+
+    public static EasyHttpUtils LoadInstance() {
+
+        return EASY_HTTP_UTILS;
+    }
+
+    private EasyHttpUtils() {
+        initHttpClient();
+    }
+
+
+    /**
+     * @Title: initHttpUtils
+     * @Description: TODO(这里用一句话描述这个方法的作用)
+     */
+    private void initHttpClient() {
+        //创建httpclient连接池
+        httpClientConnectionManager = new PoolingHttpClientConnectionManager();
+        //设置连接池最大数量  
+        httpClientConnectionManager.setMaxTotal(HTTPCLIENT_CONNECTION_COUNT);
+        //设置单个路由最大连接数量  
+        httpClientConnectionManager.setDefaultMaxPerRoute(HTTPCLIENT_MAXPERROUTE_COUNT);
+    }
+
+
+    //请求重试机制
+    HttpRequestRetryHandler myRetryHandler = new HttpRequestRetryHandler() {
+        public boolean retryRequest(IOException exception, int executionCount, HttpContext context) {
+            if (executionCount >= 3) {
+                // 超过三次则不再重试请求  
+                return false;
+            }
+            if (exception instanceof InterruptedIOException) {
+                // Timeout  
+                return false;
+            }
+            if (exception instanceof UnknownHostException) {
+                // Unknown host  
+                return false;
+            }
+            if (exception instanceof ConnectTimeoutException) {
+                // Connection refused  
+                return false;
+            }
+            if (exception instanceof SSLException) {
+                // SSL handshake exception  
+                return false;
+            }
+            HttpClientContext clientContext = HttpClientContext.adapt(context);
+            HttpRequest request = clientContext.getRequest();
+            boolean idempotent = !(request instanceof HttpEntityEnclosingRequest);
+            if (idempotent) {
+                // Retry if the request is considered idempotent  
+                return true;
+            }
+            return false;
+        }
+    };
+
+    public CloseableHttpClient getHttpClient() {
+        // 创建全局的requestConfig  
+        RequestConfig requestConfig = RequestConfig.custom()
+                .setConnectTimeout(HTTPCLIENT_CONNECT_TIMEOUT)
+                .setSocketTimeout(HTTPCLIENT_SOCKET_TIMEOUT)
+                .setCookieSpec(CookieSpecs.BEST_MATCH).build();
+        // 声明重定向策略对象  
+        LaxRedirectStrategy redirectStrategy = new LaxRedirectStrategy();
+
+        CloseableHttpClient httpClient = HttpClients.custom().setConnectionManager(httpClientConnectionManager)
+                .setDefaultRequestConfig(requestConfig)
+                .setRedirectStrategy(redirectStrategy)
+                .setRetryHandler(myRetryHandler)
+                .build();
+        return httpClient;
+    }
+
+
+    /**
+     * HttpClient连接SSL 
+     */
+    public void ssl(String urlStr, String keyPath, String keypass) {
+        CloseableHttpClient httpclient = null;
+        try {
+            RequestConfig requestConfig = RequestConfig.custom()
+                    .setConnectTimeout(HTTPCLIENT_CONNECT_TIMEOUT)
+                    .setSocketTimeout(HTTPCLIENT_SOCKET_TIMEOUT)
+                    .setCookieSpec(CookieSpecs.BEST_MATCH).build();
+            LaxRedirectStrategy redirectStrategy = new LaxRedirectStrategy();
+            KeyStore trustStore = KeyStore.getInstance(KeyStore.getDefaultType());
+            FileInputStream instream = new FileInputStream(new File(keyPath));
+            try {
+                // 加载keyStore   
+                trustStore.load(instream, keypass.toCharArray());
+            } catch (CertificateException e) {
+                e.printStackTrace();
+            } finally {
+                try {
+                    instream.close();
+                } catch (Exception ignore) {
+                }
+            }
+            // 相信自己的CA和所有自签名的证书  
+            SSLContext sslcontext = SSLContexts.custom().loadTrustMaterial(trustStore, new TrustSelfSignedStrategy()).build();
+            // 只允许使用TLSv1协议  
+            SSLConnectionSocketFactory sslsf = new SSLConnectionSocketFactory(sslcontext, new String[]{"TLSv1"}, null,
+                    SSLConnectionSocketFactory.BROWSER_COMPATIBLE_HOSTNAME_VERIFIER);
+            httpclient = HttpClients.custom().setConnectionManager(httpClientConnectionManager)
+                    .setDefaultRequestConfig(requestConfig)
+                    .setRedirectStrategy(redirectStrategy)
+                    .setRetryHandler(myRetryHandler).setSSLSocketFactory(sslsf).build();
+            // 创建http请求(get方式)  
+            HttpGet httpget = new HttpGet(urlStr);
+
+            CloseableHttpResponse response = httpclient.execute(httpget);
+            try {
+                HttpEntity entity = response.getEntity();
+                LOGG.info("----------------------------------------");
+                LOGG.info(response.getStatusLine());
+                if (entity != null) {
+                    LOGG.info("Response content length: " + entity.getContentLength());
+                    LOGG.info(EntityUtils.toString(entity));
+                    EntityUtils.consume(entity);
+                }
+            } finally {
+                response.close();
+            }
+        } catch (ParseException e) {
+            e.printStackTrace();
+        } catch (IOException e) {
+            e.printStackTrace();
+        } catch (KeyManagementException e) {
+            e.printStackTrace();
+        } catch (NoSuchAlgorithmException e) {
+            e.printStackTrace();
+        } catch (KeyStoreException e) {
+            e.printStackTrace();
+        }
+    }
+
+
+    /**
+     * 发送 post请求访问本地应用并根据传递参数不同返回不同结果 
+     */
+    public void post(String urlString, Map<String, Object> params) {
+        // 创建默认的httpClient实例. 
+        LOGG.info("urlString:=========>" + urlString);
+        CloseableHttpClient httpclient = this.getHttpClient();
+        if ("".equals(urlString) || urlString == null) {
+            return;
+        }
+        // 创建httppost    
+        HttpPost httppost = new HttpPost(urlString);
+        // 创建参数队列    
+        List<NameValuePair> formparams = new ArrayList<NameValuePair>();
+        if (params != null && params.size() > 0) {
+            for (String key : params.keySet()) {
+                formparams.add(new BasicNameValuePair(key, (String) params.get(key)));
+            }
+        }
+        UrlEncodedFormEntity uefEntity;
+        try {
+            uefEntity = new UrlEncodedFormEntity(formparams, "UTF-8");
+            httppost.setEntity(uefEntity);
+            LOGG.info("executing request " + httppost.getURI());
+            CloseableHttpResponse response = httpclient.execute(httppost);
+            try {
+                HttpEntity entity = response.getEntity();
+                if (entity != null) {
+                    EntityUtils.consume(entity);
+                }
+            } finally {
+                response.close();
+            }
+        } catch (ClientProtocolException e) {
+            e.printStackTrace();
+        } catch (UnsupportedEncodingException e1) {
+            e1.printStackTrace();
+        } catch (IOException e) {
+            e.printStackTrace();
+        }
+    }
+
+    public String post(String urlString, JSONObject params) {
+        StringBuilder result = new StringBuilder();
+        // 创建默认的httpClient实例.    
+        CloseableHttpClient httpclient = this.getHttpClient();
+        if ("".equals(urlString) || urlString == null) {
+            return null;
+        }
+        // 创建httppost    
+        HttpPost httppost = new HttpPost(urlString);
+        // 创建参数队列   
+        httppost.addHeader("Content-type", "application/json; charset=utf-8");
+        httppost.setHeader("Accept", "application/json");
+        httppost.setEntity(new StringEntity(params.toJSONString(), Charset.forName("UTF-8")));
+        try {
+
+            LOGG.info("executing request " + httppost.getURI());
+            CloseableHttpResponse response = httpclient.execute(httppost);
+            HttpEntity entity = null;
+            try {
+                int httpCode = response.getStatusLine().getStatusCode();
+                if (httpCode == HttpURLConnection.HTTP_OK && response != null) {
+                    entity = response.getEntity();
+                    //读取服务器返回的json数据(接受json服务器数据)
+                    InputStream inputStream = entity.getContent();
+                    InputStreamReader inputStreamReader = new InputStreamReader(inputStream);
+                    BufferedReader reader = new BufferedReader(inputStreamReader);// 读字符串用的。
+                    String str;
+                    while ((str = reader.readLine()) != null) {
+                        result.append(str);
+                    }
+                    reader.close();
+                    return result.toString();
+                }
+
+            } finally {
+                EntityUtils.consume(entity);
+                response.close();
+            }
+        } catch (ClientProtocolException e) {
+            LOGG.error(e.getMessage(), e);
+        } catch (UnsupportedEncodingException e) {
+            LOGG.error(e.getMessage(), e);
+        } catch (IOException e) {
+            LOGG.error(e.getMessage(), e);
+        }
+        return null;
+    }
+
+    /**
+     * 发送 get请求
+     */
+    public String get(String urlStr) {
+        StringBuilder result = new StringBuilder();
+        CloseableHttpClient httpclient = this.getHttpClient();
+        try {
+            // 创建httpget.
+            HttpGet httpget = new HttpGet(urlStr);
+            LOGG.info("executing request " + httpget.getURI());
+            // 执行get请求.
+            CloseableHttpResponse response = httpclient.execute(httpget);
+            HttpEntity entity = null;
+            try {
+                int httpCode = response.getStatusLine().getStatusCode();
+                if (httpCode == HttpURLConnection.HTTP_OK && response != null) {
+                    entity = response.getEntity();
+                    //读取服务器返回的json数据(接受json服务器数据)
+                    InputStream inputStream = entity.getContent();
+                    InputStreamReader inputStreamReader = new InputStreamReader(inputStream);
+                    BufferedReader reader = new BufferedReader(inputStreamReader);// 读字符串用的。
+                    String str;
+                    while ((str = reader.readLine()) != null) {
+                        result.append(str);
+                    }
+                    reader.close();
+                    return result.toString();
+                }
+
+            } finally {
+                EntityUtils.consume(entity);
+                response.close();
+            }
+        } catch (ClientProtocolException e) {
+            e.printStackTrace();
+        } catch (ParseException e) {
+            e.printStackTrace();
+        } catch (IOException e) {
+            e.printStackTrace();
+        }
+        return null;
+    }
+
+
+}
+	
+	
+

+ 110 - 0
src/main/java/com/hywa/banktest/bankframework/utils/httpclient/HttpClientWrapper.java

@@ -0,0 +1,110 @@
+package com.hywa.banktest.bankframework.utils.httpclient;
+
+import org.apache.commons.httpclient.Cookie;
+import org.apache.commons.httpclient.HttpException;
+
+import java.io.IOException;
+import java.util.Map;
+
+/**
+ * 
+ * 版权所有:2019 贵阳慧云网安科技有限公司
+ * 项目名称:plamsa-common   
+ *
+ * 类描述:封装了HttpClient 往服务器发送请求的接口
+ *  让用户 不适用任何HttpClient 的api 的 
+ *  直接调用该接口就可以实现相应的操作
+ * 类名称:com.elite.common.utils.httpclient.HttpClientWrapper     
+ * 创建人: xiezt 
+ * 创建时间:2016年5月6日 下午4:26:40   
+ * 修改人:
+ * 修改时间:2016年5月6日 下午4:26:40   
+ * 修改备注:   
+ * @version 1.0
+ */
+public interface HttpClientWrapper {
+	/**
+	 * 设置协议头的信息 用户可以根据自己的需求而设定,否则使用默认的设置
+	 * @param headers
+	 */
+	
+	public void addHttpHeader(Map<String, String> headers);
+		
+	
+	/**
+	 * 清除cookie信息
+	 */
+	public void clearCookie();
+
+	/**
+	 * 把一组cookies加到 httpclient 中 
+	 * @param cookies
+	 */
+    
+	public void addCookies(Cookie[] cookies);
+   /**
+    *  增加单个的cookie
+    * @param cookie
+    */
+	public void addCookie(Cookie cookie);
+
+	/**
+	 * 
+	 * @param method
+	 * @param url
+	 * @param params
+	 * @param charset
+	 * @return 返回带编码集的字符串
+	 * @throws HttpException
+	 * @throws IOException
+	 */
+	public String doRequest(MethodType method, String url,
+                            Map<String, String> params, String charset) throws HttpException,
+			IOException;
+ /**
+  * 
+  * @param method
+  * @param url
+  * @param charset
+  * @return 返回带编码集的结果
+  * @throws HttpException
+  * @throws IOException
+  */
+	public String doRequest(MethodType method, String url, String charset)
+			throws HttpException, IOException;
+
+	/**
+	 * 无返回值 实现HttpResponseCallBack接口 对流进行处理封转返回值 外部可以利用到流来得到结果 主要考虑的是多线程下载的情况
+	 * 
+	 * @param method
+	 * @param url
+	 * @param params
+	 * @param charset
+	 * @param is
+	 * @throws HttpException
+	 * @throws IOException
+	 */
+	
+	// HttpResponseCallBack 是设置的一个回调类 ,主要是考虑由于httpClient 返回的流 当连接关闭时流也关闭了
+	// 所以利用回调的方式在流关闭之间嵌入用户代码,来操做流
+	public void doRequest(HttpResponseCallBack callback, MethodType method,
+                          String url, Map<String, String> params, String charset)
+			throws HttpException, IOException;
+
+	/**
+	 * 无返回值 外部可以利用到流来得到结果 主要考虑的是多线程下载的情况
+	 * 
+	 * @param method
+	 * @param url
+	 * @param charset
+	 * @param  callback
+	 * @throws HttpException
+	 * @throws IOException
+	 */
+
+	// HttpResponseCallBack 是设置的一个回调类 ,主要是考虑由于httpClient 返回的流 当连接关闭时流也关闭了
+	// 所以利用回调的方式在流关闭之间嵌入用户代码,来操做流
+	public void doRequest(HttpResponseCallBack callback, MethodType method,
+                          String url, String charset) throws HttpException, IOException;
+
+}

+ 23 - 0
src/main/java/com/hywa/banktest/bankframework/utils/httpclient/HttpResponseCallBack.java

@@ -0,0 +1,23 @@
+package com.hywa.banktest.bankframework.utils.httpclient;
+
+import java.io.IOException;
+import java.io.InputStream;
+
+/**
+ * 
+ * 版权所有:2016-贵州精英天成科技股份有限公司
+ * 项目名称:plamsa-common   
+ *
+ * 类描述:
+ * 类名称:com.elite.common.utils.httpclient.HttpResponseCallBack     
+ * 创建人: xiezt 
+ * 创建时间:2016年5月6日 下午4:27:04   
+ * 修改人:
+ * 修改时间:2016年5月6日 下午4:27:04   
+ * 修改备注:   
+ * @version 1.0
+ */
+public interface HttpResponseCallBack {
+
+	public void processResponse(InputStream responseBody) throws IOException;
+}

+ 24 - 0
src/main/java/com/hywa/banktest/bankframework/utils/httpclient/MethodType.java

@@ -0,0 +1,24 @@
+package com.hywa.banktest.bankframework.utils.httpclient;
+/**
+ * 
+ * 版权所有:2016-贵州精英天成科技股份有限公司
+ * 项目名称:plamsa-common   
+ *
+ * 类描述:把httpclient 发送请求的 方法封装成枚举类型 
+ *  这样可以避免字符串出错的情况
+ *   GET 代表法get 请求 
+ *   POST代表发post 请求 
+ *   等等
+ * 类名称:com.elite.common.utils.httpclient.MethodType     
+ * 创建人: xiezt 
+ * 创建时间:2016年5月6日 下午4:27:13   
+ * 修改人:
+ * 修改时间:2016年5月6日 下午4:27:13   
+ * 修改备注:   
+ * @version 1.0
+ */
+public enum MethodType {
+	
+		GET, POST, DELETE, PUT, TRACE, OPTION
+	
+}

+ 178 - 0
src/main/java/com/hywa/banktest/bankframework/utils/httpclient/SimpleHttpParam.java

@@ -0,0 +1,178 @@
+package com.hywa.banktest.bankframework.utils.httpclient;
+
+import java.util.Collection;
+import java.util.LinkedHashMap;
+import java.util.Map;
+
+/**
+ * 
+ * 版权所有:2016-贵州精英天成科技股份有限公司
+ * 项目名称:plamsa-common   
+ *
+ * 类描述:
+ * 类名称:com.elite.common.utils.httpclient.SimpleHttpParam     
+ * 创建人: xiezt 
+ * 创建时间:2016年5月6日 下午4:27:23   
+ * 修改人:
+ * 修改时间:2016年5月6日 下午4:27:23   
+ * 修改备注:   
+ * @version 1.0
+ */
+public class SimpleHttpParam {
+	
+	/**
+	 * 请求地址
+	 */
+	private String url;
+	/**
+	 * 请求参数
+	 */
+	private Map<String,Object> parameters = new LinkedHashMap<String,Object>();
+	/**
+	 * HTTP请求方式(GET或者POST)
+	 */
+	private String method = SimpleHttpUtils.HTTP_METHOD_GET;
+	/**
+	 * 请求字符集
+	 */
+	private String charSet = SimpleHttpUtils.DEFAULT_CHARSET;
+	/**
+	 * 是否验证服务端证书
+	 */
+	private boolean sslVerify = false;
+	/**
+	 * 最大返回的字节数
+	 */
+	private int maxResultSize = SimpleHttpUtils.MAX_FETCHSIZE;
+	/**
+	 * 请求头
+	 */
+	private Map<String,Object> headers = new LinkedHashMap<String,Object>();
+	/**
+	 * 读超时时间
+	 */
+	private int readTimeout = SimpleHttpUtils.DEFAULT_READ_TIMEOUT;
+	/**
+	 * 连接超时时间
+	 */
+	private int connectTimeout = SimpleHttpUtils.DEFAULT_CONNECT_TIMEOUT;
+	/**
+	 * 如果状态码不等于200,是否不读取返回的字节流
+	 */
+	private boolean ignoreContentIfUnsuccess = true;
+	/**
+	 * 请求报文体,只有当parameters为空,且请求方式为post时才有效
+	 */
+	private String postData;
+	/**
+	 * 客户端本地证书
+	 */
+	private ClientKeyStore clientKeyStore;
+	/**
+	 * 客户端信任的证书
+	 */
+	private TrustKeyStore TrustKeyStore;
+	/**
+	 * 如果需要验证服务端证书,是否验证host与证书匹配
+	 */
+	private boolean hostnameVerify = false;
+	
+	public SimpleHttpParam(String url){
+		this.url = url;
+	}
+	public String getUrl() {
+		return url;
+	}
+	public Map getParameters() {
+		return parameters;
+	}
+	public void addParameter(String key, String value){
+		this.parameters.put(key, value);
+	}
+	public void addParameters(String key, Collection<String> values){
+		this.parameters.put(key, values);
+	}
+	public void setParameters(Map _parameters) {
+		this.parameters.putAll(_parameters);
+	}
+	public String getMethod() {
+		return method;
+	}
+	public void setMethod(String method) {
+		this.method = method;
+	}
+	public String getCharSet() {
+		return charSet;
+	}
+	public void setCharSet(String charSet) {
+		this.charSet = charSet;
+	}
+	public boolean isSslVerify() {
+		return sslVerify;
+	}
+	public void setSslVerify(boolean sslVerify) {
+		this.sslVerify = sslVerify;
+	}
+	public int getMaxResultSize() {
+		return maxResultSize;
+	}
+	public void setMaxResultSize(int maxResultSize) {
+		this.maxResultSize = maxResultSize;
+	}
+	public Map getHeaders() {
+		return headers;
+	}
+	public void addHeader(String key, String value){
+		this.headers.put(key, value);
+	}
+	public void addHeaders(String key, Collection<String> values){
+		this.headers.put(key, values);
+	}
+	public void setHeaders(Map _headers) {
+		this.headers.putAll(_headers);
+	}
+	public int getReadTimeout() {
+		return readTimeout;
+	}
+	public void setReadTimeout(int readTimeout) {
+		this.readTimeout = readTimeout;
+	}
+	public int getConnectTimeout() {
+		return connectTimeout;
+	}
+	public void setConnectTimeout(int connectTimeout) {
+		this.connectTimeout = connectTimeout;
+	}
+	public boolean isIgnoreContentIfUnsuccess() {
+		return ignoreContentIfUnsuccess;
+	}
+	public void setIgnoreContentIfUnsuccess(boolean ignoreContentIfUnsuccess) {
+		this.ignoreContentIfUnsuccess = ignoreContentIfUnsuccess;
+	}
+	public String getPostData() {
+		return postData;
+	}
+	public void setPostData(String postData) {
+		this.postData = postData;
+	}
+	
+	public ClientKeyStore getClientKeyStore() {
+		return clientKeyStore;
+	}
+	public void setClientKeyStore(ClientKeyStore clientKeyStore) {
+		this.clientKeyStore = clientKeyStore;
+	}
+	public TrustKeyStore getTrustKeyStore() {
+		return TrustKeyStore;
+	}
+	public void setTrustKeyStore(TrustKeyStore trustKeyStore) {
+		TrustKeyStore = trustKeyStore;
+	}
+	public boolean isHostnameVerify() {
+		return hostnameVerify;
+	}
+	public void setHostnameVerify(boolean hostnameVerify) {
+		this.hostnameVerify = hostnameVerify;
+	}
+
+}

+ 116 - 0
src/main/java/com/hywa/banktest/bankframework/utils/httpclient/SimpleHttpResult.java

@@ -0,0 +1,116 @@
+
+package com.hywa.banktest.bankframework.utils.httpclient;
+
+import java.util.List;
+import java.util.Map;
+
+/**
+ * 
+ * 版权所有:2016-贵州精英天成科技股份有限公司
+ * 项目名称:plamsa-common   
+ *
+ * 类描述:
+ * 类名称:com.elite.common.utils.httpclient.SimpleHttpResult     
+ * 创建人: admin 
+ * 创建时间:2016年5月6日 下午4:25:17   
+ * 修改人:
+ * 修改时间:2016年5月6日 下午4:25:17   
+ * 修改备注:   
+ * @version 1.0
+ */
+public class SimpleHttpResult {
+	
+	
+	public SimpleHttpResult(int code){
+		this.statusCode = code;
+	}
+	
+	public SimpleHttpResult(int code, String _content){
+		this.statusCode = code;
+		this.content = _content;
+	}
+	
+	public SimpleHttpResult(Exception e){
+		if(e==null){
+			throw new IllegalArgumentException("exception must be specified");
+		}
+		this.statusCode = -1;
+		this.exception = e;
+		this.exceptionMsg = e.getMessage();
+	}
+	/**
+	 * HTTP状态码
+	 */
+	private int statusCode;
+	
+	/**
+	 * HTTP结果
+	 */
+	private String content;
+	
+	private String exceptionMsg;
+	
+	private Exception exception;
+	
+	private Map<String,List<String>> headers;
+	
+	private String contentType;
+	
+	
+	public String getHeaderField(String key){
+		if(headers==null){
+			return null;
+		}
+		List<String> headerValues = headers.get(key);
+		if(headerValues==null || headerValues.isEmpty()){
+			return null;
+		}
+		return headerValues.get(headerValues.size()-1);
+	}
+	
+	public String getContentType(){
+		return contentType;
+	}
+	
+	public int getStatusCode() {
+		return statusCode;
+	}
+
+	public Map<String, List<String>> getHeaders() {
+		return headers;
+	}
+
+
+	public void setHeaders(Map<String, List<String>> headers) {
+		this.headers = headers;
+	}
+
+	public String getContent() {
+		return content;
+	}
+	
+	public void setContent(String content) {
+		this.content = content;
+	}
+
+	public String getExceptionMsg() {
+		return exceptionMsg;
+	}
+	
+	public Exception getException() {
+		return exception;
+	}
+
+	public boolean isSuccess(){
+		return statusCode==200;
+	}
+	
+	public boolean isError(){
+		return exception!=null;
+	}
+	
+
+	public void setContentType(String contentType) {
+		this.contentType = contentType;
+	}
+}

+ 531 - 0
src/main/java/com/hywa/banktest/bankframework/utils/httpclient/SimpleHttpUtils.java

@@ -0,0 +1,531 @@
+package com.hywa.banktest.bankframework.utils.httpclient;
+
+import org.apache.log4j.Logger;
+
+import javax.net.ssl.*;
+import java.io.*;
+import java.lang.reflect.Array;
+import java.net.HttpURLConnection;
+import java.net.URL;
+import java.net.URLDecoder;
+import java.net.URLEncoder;
+import java.nio.charset.Charset;
+import java.security.KeyStore;
+import java.security.cert.CertificateException;
+import java.security.cert.X509Certificate;
+import java.util.*;
+import java.util.Map.Entry;
+
+
+/**
+ * 
+ * 版权所有:2016-贵州精英天成科技股份有限公司
+ * 项目名称:plamsa-common   
+ *
+ * 类描述:
+ * 类名称:com.elite.common.utils.httpclient.SimpleHttpUtils     
+ * 创建人: xiezt 
+ * 创建时间:2016年5月6日 下午4:25:28   
+ * 修改人:
+ * 修改时间:2016年5月6日 下午4:25:28   
+ * 修改备注:   
+ * @version 1.0
+ */
+public class SimpleHttpUtils {
+	private static final Logger logger = Logger.getLogger(SimpleHttpUtils.class);
+
+	/**
+	 * 默认字符编码
+	 */
+	public static final String DEFAULT_CHARSET = "utf-8";
+
+	public static final String HTTP_METHOD_POST = "POST";
+
+	public static final String HTTP_METHOD_GET = "GET";
+	
+	public static final String HTTP_ERROR_MESSAGE = "http_error_message";
+
+	/**
+	 * 默认超时设置(20秒)
+	 */
+	public static final int DEFAULT_READ_TIMEOUT = 20000;
+	
+	public static final int DEFAULT_CONNECT_TIMEOUT = 10000;
+
+
+	public static final String HTTP_PREFIX = "http://";
+
+	public static final String HTTPS_PREFIX = "https://";
+
+	//最多只读取5000字节
+	public static final int MAX_FETCHSIZE = 5000;
+	
+	private static TrustManager[] trustAnyManagers = new TrustManager[]{new TrustAnyTrustManager()};
+	
+	static {
+		System.setProperty("sun.net.inetaddr.ttl", "3600");
+	}
+
+	public static String httpPost(String url, Map params) {
+		return httpRequest(url, params, HTTP_METHOD_POST, DEFAULT_CHARSET, null);
+	}
+
+	public static String httpGet(String url, Map params) {
+		return httpRequest(url, params, HTTP_METHOD_GET, DEFAULT_CHARSET, null);
+	}
+
+	/**
+	 * 以建立HttpURLConnection方式发送请求
+	 * 
+	 *            请求地址
+	 * @param params
+	 *            请求参数
+	 * @param method
+	 *            请求方式
+	 * @param charSet
+	 * @return 通讯失败返回null, 否则返回服务端输出
+	 */
+	public static String httpRequest(String url, Map<String,String> params, String method,
+			String charSet, Map<String,String> headers) {
+		SimpleHttpParam param = new SimpleHttpParam(url);
+		if(null != param){
+			param.setParameters(params);
+		}
+		if(null != headers){
+			param.setHeaders(headers);
+		}
+		param.setCharSet(charSet);
+		param.setMethod(method);
+		SimpleHttpResult result = httpRequest(param);
+		if(result==null || !result.isSuccess()){
+			return null;
+		}else{
+			return result.getContent();
+		}
+	}
+	
+	/**
+	 *
+	 * @return
+	 */
+	public static SimpleHttpResult httpRequest(SimpleHttpParam httpParam) {
+		String url = httpParam.getUrl();
+		Map<String,Object> parameters = httpParam.getParameters();
+		String sMethod = httpParam.getMethod();
+		String charSet = httpParam.getCharSet();
+		boolean sslVerify = httpParam.isSslVerify();
+		int maxResultSize = httpParam.getMaxResultSize();
+		Map<String,Object> headers = httpParam.getHeaders();
+		int readTimeout = httpParam.getReadTimeout();
+		int connectTimeout = httpParam.getConnectTimeout();
+		boolean ignoreContentIfUnsuccess = httpParam.isIgnoreContentIfUnsuccess();
+		boolean hostnameVerify = httpParam.isHostnameVerify();
+		TrustKeyStore trustKeyStore = httpParam.getTrustKeyStore();
+		ClientKeyStore clientKeyStore = httpParam.getClientKeyStore();
+		
+		if (url == null || url.trim().length() == 0) {
+			throw new IllegalArgumentException("invalid url : " + url);
+		}
+		if(maxResultSize<=0){
+			throw new IllegalArgumentException("maxResultSize must be positive : "+maxResultSize);
+		}
+		Charset.forName(charSet);
+		HttpURLConnection urlConn = null;
+		URL destURL = null;
+		
+		String baseUrl = url.trim();
+		if (!baseUrl.toLowerCase().startsWith(HTTPS_PREFIX) && !baseUrl.toLowerCase().startsWith(HTTP_PREFIX)) {
+			baseUrl = HTTP_PREFIX + baseUrl;
+		}
+
+		String method = null;
+		if (sMethod != null) {
+			method = sMethod.toUpperCase();
+		}
+		if (method == null
+				|| !(method.equals(HTTP_METHOD_POST) || method
+						.equals(HTTP_METHOD_GET))) {
+			throw new IllegalArgumentException("invalid http method : "
+					+ method);
+		}
+		
+		int index = baseUrl.indexOf("?");
+		if (index>0){
+			baseUrl = urlEncode(baseUrl, charSet);
+		}else if(index==0){
+			throw new IllegalArgumentException("invalid url : " + url);
+		}
+		
+		String queryString = mapToQueryString(parameters, charSet);
+		String targetUrl = "";
+		if (method.equals(HTTP_METHOD_POST)) {
+			targetUrl = baseUrl;
+		} else {
+			if(index>0){
+				targetUrl = baseUrl +"&" + queryString;
+			}else{
+				targetUrl = baseUrl +"?" + queryString;
+			}
+		}
+		try {
+			destURL = new URL(targetUrl);
+			urlConn = (HttpURLConnection)destURL.openConnection();
+			
+			setSSLSocketFactory(urlConn, sslVerify, hostnameVerify, trustKeyStore, clientKeyStore);
+			       
+			
+			boolean hasContentType = false;
+			boolean hasUserAgent = false;
+			for(String key : headers.keySet()){
+				if("Content-Type".equalsIgnoreCase(key)){
+					hasContentType = true;
+				}
+				if("user-agent".equalsIgnoreCase(key)){
+					hasUserAgent = true;
+				}
+			}
+			if(!hasContentType){
+				headers.put("Content-Type", "application/x-www-form-urlencoded; charset=" + charSet);
+			}
+			if(!hasUserAgent){
+				headers.put("user-agent", "PlatSystem");
+			}
+			
+			if(headers!=null && !headers.isEmpty()){
+				for(Entry<String, Object> entry : headers.entrySet()){
+					String key = entry.getKey();
+					Object value = entry.getValue();
+					List<String> values = makeStringList(value);
+					for(String v : values){
+						urlConn.addRequestProperty(key, v);
+					}
+				}
+			}
+			urlConn.setDoOutput(true);
+			urlConn.setDoInput(true);
+			urlConn.setAllowUserInteraction(false);
+			urlConn.setUseCaches(false);
+			urlConn.setRequestMethod(method);
+			urlConn.setConnectTimeout(connectTimeout);
+			urlConn.setReadTimeout(readTimeout);
+			
+			
+			
+			if (method.equals(HTTP_METHOD_POST)) {
+				String postData = queryString.length()==0?httpParam.getPostData():queryString;
+				if(postData!=null && postData.trim().length()>0){
+					OutputStream os = urlConn.getOutputStream();
+					OutputStreamWriter osw = new OutputStreamWriter(os, charSet);
+					osw.write(postData);
+					osw.flush();
+					osw.close();
+				}
+			}
+
+			int responseCode = urlConn.getResponseCode();
+			Map<String, List<String>> responseHeaders = urlConn.getHeaderFields();
+			String contentType = urlConn.getContentType();
+				
+			SimpleHttpResult result = new SimpleHttpResult(responseCode);
+			result.setHeaders(responseHeaders);
+			result.setContentType(contentType);
+			
+			if(responseCode!=200 && ignoreContentIfUnsuccess){
+				return result;
+			}
+			
+			InputStream is = urlConn.getInputStream();
+			byte[] temp = new byte[1024];
+//			ByteBuffer buffer = ByteBuffer.allocate(maxResultSize);
+			ByteArrayOutputStream baos = new ByteArrayOutputStream();
+			int readBytes = is.read(temp);
+			while(readBytes>0){
+//				if(buffer.remaining()>=readBytes){
+//					buffer.put(temp, 0, readBytes);
+//				}else{
+//					buffer.put(temp, 0, buffer.remaining());
+//					break;
+//				}
+				baos.write(temp, 0, readBytes);
+				readBytes =  is.read(temp);
+			}
+			String resultString = new String(baos.toByteArray(), charSet); //new String(buffer.array(), charSet);
+			baos.close();
+			result.setContent(resultString);
+			return result;
+		} catch (Exception e) {
+			logger.warn("connection error : " + e.getMessage());
+			return new SimpleHttpResult(e);
+		} finally {
+			if (urlConn != null) {
+				urlConn.disconnect();
+			}
+		}
+	}
+	
+	public static String urlEncode(String url, String charSet){
+		if(url==null || url.trim().length()==0){
+			return url;
+		}
+		int splitIndex = url.indexOf("?");
+		if(splitIndex <= 0){
+			return url;
+		}
+		String serviceUrl = url.substring(0, splitIndex);
+		String queryString = url.substring(splitIndex+1, url.length());
+		String newQueryString = "";
+		if(queryString.length()>0){
+			String[] nameValues = queryString.split("&");
+			for(String nameValue : nameValues){
+				int index = nameValue.indexOf("=");
+				String pname = null;
+				String pvalue = null;
+				if(index<0){
+					pname = nameValue;
+					pvalue = "";
+				}
+				else{
+					pname = nameValue.substring(0, index);
+					pvalue = nameValue.substring(index+1, nameValue.length());
+					try {
+						pvalue = URLEncoder.encode(pvalue, charSet);
+					} catch (UnsupportedEncodingException e) {
+						throw new IllegalArgumentException("invalid charset : "+charSet);
+					}
+				}
+				newQueryString += pname +"=" + pvalue + "&";
+			}
+			newQueryString = newQueryString.substring(0, newQueryString.length()-1);
+		}
+		return serviceUrl + "?" + newQueryString;
+	}
+	
+	public static String mapToQueryString(Map parameters, String charSet) {
+		String queryString = "";
+		if (parameters!=null && !parameters.isEmpty()) {
+			Set<Entry> entrySet = parameters.entrySet();
+			for(Entry entry : entrySet){
+				try {
+					String key = entry.getKey().toString();
+					Object value = entry.getValue();
+					List values = makeStringList(value);
+					for(Object v : values){
+						queryString += key + "=" + URLEncoder.encode(v==null?"":v.toString(), charSet) + "&";
+					}
+				} catch (UnsupportedEncodingException e) {
+					throw new IllegalArgumentException("invalid charset : " + charSet);
+				}
+			}
+			if (queryString.length() > 0) {
+				queryString = queryString.substring(0, queryString.length()-1);
+			}
+		}
+		return queryString;
+	}
+
+	public static Map queryStringToMap(String queryString, String charSet) {
+		if (queryString == null) {
+			throw new IllegalArgumentException("queryString must be specified");
+		}
+
+		int index = queryString.indexOf("?");
+		if (index > 0) {
+			queryString = queryString.substring(index + 1);
+		}
+		String[] keyValuePairs = queryString.split("&");
+		Map <String, String>map = new HashMap<String, String>();
+		for (String keyValue : keyValuePairs) {
+			if (keyValue.indexOf("=") == -1) {
+				continue;
+			}
+			String[] args = keyValue.split("=");
+			if (args.length == 2) {
+				try {
+					map.put(args[0], URLDecoder.decode(args[1], charSet));
+				} catch (UnsupportedEncodingException e) {
+					throw new IllegalArgumentException("invalid charset : " + charSet);
+				}
+			}
+			if (args.length == 1) {
+				map.put(args[0], "");
+			}
+		}
+		return map;
+	}
+	
+	private static void setSSLSocketFactory(HttpURLConnection urlConn, boolean sslVerify, boolean hostnameVerify, TrustKeyStore trustCertFactory, ClientKeyStore clientKeyFactory){
+		try{
+			SSLSocketFactory socketFactory = null;
+			if(trustCertFactory!=null || clientKeyFactory!=null || !sslVerify){
+				SSLContext sc = SSLContext.getInstance("SSL");
+				TrustManager[] trustManagers = null;
+				KeyManager[] keyManagers = null;
+				if(trustCertFactory!=null){
+					trustManagers = trustCertFactory.getTrustManagerFactory().getTrustManagers();
+				}
+				if(clientKeyFactory!=null){
+					keyManagers = clientKeyFactory.getKeyManagerFactory().getKeyManagers();
+				}
+				if(!sslVerify){
+					trustManagers = trustAnyManagers;
+					hostnameVerify = false;
+				}
+				sc.init(keyManagers, trustManagers, new java.security.SecureRandom());
+				socketFactory = sc.getSocketFactory();
+			}
+		
+			if(urlConn instanceof HttpsURLConnection){
+				HttpsURLConnection httpsUrlCon = (HttpsURLConnection)urlConn;
+				if(socketFactory!=null){
+					httpsUrlCon.setSSLSocketFactory(socketFactory);
+				}
+				//设置是否验证hostname
+				if(!hostnameVerify){
+					httpsUrlCon.setHostnameVerifier(new TrustAnyHostnameVerifier());
+				}
+			}
+			if(urlConn instanceof com.sun.net.ssl.HttpsURLConnection){
+				com.sun.net.ssl.HttpsURLConnection httpsUrlCon = (com.sun.net.ssl.HttpsURLConnection)urlConn;
+				if(socketFactory!=null){
+					httpsUrlCon.setSSLSocketFactory(socketFactory);
+				}
+				//设置是否验证hostname
+				if(!hostnameVerify){
+					httpsUrlCon.setHostnameVerifier(new TrustAnyHostnameVerifierOld());
+				}
+			}
+		}catch(Exception e){
+			logger.error(e.getMessage(), e);
+		}
+	}
+	
+	private static List<String> makeStringList(Object value){
+    	if (value == null) {
+    		value = "";
+        }
+    	List<String> result = new ArrayList<String>();
+    	if (value.getClass().isArray()) {
+            for (int j = 0; j < Array.getLength(value); j++) {
+            	Object obj = Array.get(value, j);
+            	result.add(obj!=null?obj.toString():"");
+            }
+            return result;
+        }
+    	
+        if (value instanceof Iterator) {
+            Iterator it = (Iterator)value;
+            while(it.hasNext()){
+            	Object obj = it.next();
+            	result.add(obj!=null?obj.toString():"");
+            }
+            return result;
+        }
+        
+        if(value instanceof Collection){
+        	for(Object obj : (Collection)value){
+        		result.add(obj!=null?obj.toString():"");
+        	}
+        	return result;
+        }
+
+        if (value instanceof Enumeration) {
+            Enumeration enumeration = (Enumeration) value;
+            while (enumeration.hasMoreElements()) {
+            	Object obj = enumeration.nextElement();
+            	result.add(obj!=null?obj.toString():"");
+            }
+            return result;
+        }
+        result.add(value.toString());
+        return result;
+    }
+	
+	private static class TrustAnyTrustManager implements X509TrustManager {
+	    
+        public void checkClientTrusted(X509Certificate[] chain, String authType) throws CertificateException {
+        }
+    
+        public void checkServerTrusted(X509Certificate[] chain, String authType) throws CertificateException {
+        }
+    
+        public X509Certificate[] getAcceptedIssuers() {
+            return new X509Certificate[]{};
+        }
+    }
+    
+    private static class TrustAnyHostnameVerifier implements HostnameVerifier {
+        public boolean verify(String hostname, SSLSession session) {
+            return true;
+        }
+    }
+    
+    private static class  TrustAnyHostnameVerifierOld implements com.sun.net.ssl.HostnameVerifier{
+		public boolean verify(String arg0, String arg1) {
+			return true;
+		}
+    }
+    
+    public static ClientKeyStore loadClientKeyStore(String keyStorePath, String keyStorePass, String privateKeyPass){
+    	try{
+    		return loadClientKeyStore(new FileInputStream(keyStorePath), keyStorePass, privateKeyPass);
+    	}catch(Exception e){
+    		logger.error("loadClientKeyFactory fail : "+e.getMessage(), e);
+    		return null;
+    	}
+    }
+    
+    public static ClientKeyStore loadClientKeyStore(InputStream keyStoreStream, String keyStorePass, String privateKeyPass){
+    	try{
+    		KeyManagerFactory kmf = KeyManagerFactory.getInstance("SunX509");
+    		KeyStore ks = KeyStore.getInstance("JKS");
+    		ks.load(keyStoreStream, keyStorePass.toCharArray());
+    		kmf.init(ks, privateKeyPass.toCharArray());
+    		return new ClientKeyStore(kmf);
+    	}catch(Exception e){
+    		logger.error("loadClientKeyFactory fail : "+e.getMessage(), e);
+    		return null;
+    	}
+    }
+    
+    public static TrustKeyStore loadTrustKeyStore(String keyStorePath, String keyStorePass){
+    	try{
+    		return loadTrustKeyStore(new FileInputStream(keyStorePath), keyStorePass);
+    	}catch(Exception e){
+    		logger.error("loadTrustCertFactory fail : "+e.getMessage(), e);
+    		return null;
+    	}
+    }
+    
+    public static TrustKeyStore loadTrustKeyStore(InputStream keyStoreStream, String keyStorePass){
+    	try{
+    		TrustManagerFactory tmf = TrustManagerFactory.getInstance("SunX509");
+    		KeyStore ks = KeyStore.getInstance("JKS");
+    		ks.load(keyStoreStream, keyStorePass.toCharArray());
+    		tmf.init(ks);
+    		return new TrustKeyStore(tmf);
+    	}catch(Exception e){
+    		logger.error("loadTrustCertFactory fail : "+e.getMessage(), e);
+    		return null;
+    	}
+    }
+
+    public int test() throws InterruptedException{
+    	String str = "http://www.scpta.gov.cn/UserPay/BCallback.asp?p1_MerId=10000216814&r0_Cmd=Buy&r1_Code=1&r2_TrxId=418126905762402E&r3_Amt=100.0&r4_Cur=RMB&r5_Pid=2041&r6_Order=BM2041O243605O2184995OZ&r8_MP=&r9_BType=2&ra_Details=&rb_SplitStatus=SPLITED&rc_SourceFee=&rd_TargetFee=&rq_SourceFee=0.0&rq_TargetFee=0.0&rb_BankId=CEB-NET&ro_BankOrderId=2014595416120928&rp_PayDate=20120928172639&peo_checkInDate=&peo_checkOutDate=&hmac=85b92bb7dc10d9d52189008fe1918f45";
+    	for(int i=0; i<10 ;i++ ){
+    	String result = httpPost(str, null);
+    		System.out.println(result);
+    		Thread.currentThread().sleep(1000);
+    	}
+    	return 0;
+    }
+	public static void test2() {
+		
+		SimpleHttpParam http = new SimpleHttpParam("https://www.gdgwpay.com/");
+		http.setConnectTimeout(5000);
+		http.setMethod("POST");
+		SimpleHttpResult request=SimpleHttpUtils.httpRequest(http);
+		String html = request.getContent();
+		System.out.println(html);
+				
+	}
+}

+ 15 - 0
src/main/java/com/hywa/banktest/bankframework/utils/httpclient/TrustKeyStore.java

@@ -0,0 +1,15 @@
+package com.hywa.banktest.bankframework.utils.httpclient;
+
+import javax.net.ssl.TrustManagerFactory;
+
+public class TrustKeyStore {
+	private TrustManagerFactory trustManagerFactory;
+	
+	TrustKeyStore(TrustManagerFactory trustManagerFactory){
+		this.trustManagerFactory = trustManagerFactory;
+	}
+	
+	TrustManagerFactory getTrustManagerFactory(){
+		return trustManagerFactory;
+	}
+}

File diff suppressed because it is too large
+ 144 - 0
src/main/java/com/hywa/banktest/bankframework/utils/rsa/AESCodec.java


+ 129 - 0
src/main/java/com/hywa/banktest/bankframework/utils/rsa/Base64.java

@@ -0,0 +1,129 @@
+package com.hywa.banktest.bankframework.utils.rsa;
+
+import java.io.ByteArrayOutputStream;
+
+/**
+ * 
+ * 版权所有:2016-贵州精英天成科技股份有限公司
+ * 项目名称:plamsa-common   
+ *
+ * 类描述:base64 format encoding & decoding
+ * 类名称:com.elite.common.utils.rsa.Base64     
+ * 创建人: xiezt 
+ * 创建时间:2016年5月6日 下午5:08:57   
+ * 修改人:
+ * 修改时间:2016年5月6日 下午5:08:57   
+ * 修改备注:   
+ * @version 1.0
+ */
+public class Base64 {
+
+	private static char[] base64EncodeChars = new char[] { 'A', 'B', 'C', 'D',
+			'E', 'F', 'G', 'H', 'I', 'J', 'K', 'L', 'M', 'N', 'O', 'P', 'Q',
+			'R', 'S', 'T', 'U', 'V', 'W', 'X', 'Y', 'Z', 'a', 'b', 'c', 'd',
+			'e', 'f', 'g', 'h', 'i', 'j', 'k', 'l', 'm', 'n', 'o', 'p', 'q',
+			'r', 's', 't', 'u', 'v', 'w', 'x', 'y', 'z', '0', '1', '2', '3',
+			'4', '5', '6', '7', '8', '9', '+', '/' };
+
+	private static byte[] base64DecodeChars = new byte[] { -1, -1, -1, -1, -1,
+			-1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1,
+			-1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1,
+			-1, -1, -1, -1, 62, -1, -1, -1, 63, 52, 53, 54, 55, 56, 57, 58, 59,
+			60, 61, -1, -1, -1, -1, -1, -1, -1, 0, 1, 2, 3, 4, 5, 6, 7, 8, 9,
+			10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, -1,
+			-1, -1, -1, -1, -1, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37,
+			38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, -1, -1, -1,
+			-1, -1 };
+
+	private Base64(){
+	}
+
+	public static String encode(byte[] data){
+		StringBuffer sb = new StringBuffer();
+		int len = data.length;
+		int i = 0;
+		int b1, b2, b3;
+
+		while (i < len) {
+			b1 = data[i++] & 0xff;
+			if (i == len) {
+				sb.append(base64EncodeChars[b1 >>> 2]);
+				sb.append(base64EncodeChars[(b1 & 0x3) << 4]);
+				sb.append("==");
+				break;
+			}
+			b2 = data[i++] & 0xff;
+			if (i == len) {
+				sb.append(base64EncodeChars[b1 >>> 2]);
+				sb.append(base64EncodeChars[((b1 & 0x03) << 4)
+						| ((b2 & 0xf0) >>> 4)]);
+				sb.append(base64EncodeChars[(b2 & 0x0f) << 2]);
+				sb.append("=");
+				break;
+			}
+			b3 = data[i++] & 0xff;
+			sb.append(base64EncodeChars[b1 >>> 2]);
+			sb.append(base64EncodeChars[((b1 & 0x03) << 4)
+					| ((b2 & 0xf0) >>> 4)]);
+			sb.append(base64EncodeChars[((b2 & 0x0f) << 2)
+					| ((b3 & 0xc0) >>> 6)]);
+			sb.append(base64EncodeChars[b3 & 0x3f]);
+		}
+		return sb.toString();
+	}
+
+	public static byte[] decode(String str){
+		byte[] data = str.getBytes();
+		int len = data.length;
+		ByteArrayOutputStream buf = new ByteArrayOutputStream(len);
+		int i = 0;
+		int b1, b2, b3, b4;
+
+		while (i < len) {
+
+			/* b1 */
+			do {
+				b1 = base64DecodeChars[data[i++]];
+			} while (i < len && b1 == -1);
+			if (b1 == -1) {
+				break;
+			}
+
+			/* b2 */
+			do {
+				b2 = base64DecodeChars[data[i++]];
+			} while (i < len && b2 == -1);
+			if (b2 == -1) {
+				break;
+			}
+			buf.write(((b1 << 2) | ((b2 & 0x30) >>> 4)));
+
+			/* b3 */
+			do {
+				b3 = data[i++];
+				if (b3 == 61) {
+					return buf.toByteArray();
+				}
+				b3 = base64DecodeChars[b3];
+			} while (i < len && b3 == -1);
+			if (b3 == -1) {
+				break;
+			}
+			buf.write((((b2 & 0x0f) << 4) | ((b3 & 0x3c) >>> 2)));
+
+			/* b4 */
+			do {
+				b4 = data[i++];
+				if (b4 == 61) {
+					return buf.toByteArray();
+				}
+				b4 = base64DecodeChars[b4];
+			} while (i < len && b4 == -1);
+			if (b4 == -1) {
+				break;
+			}
+			buf.write((((b3 & 0x03) << 6) | b4));
+		}
+		return buf.toByteArray();
+	}
+}

+ 429 - 0
src/main/java/com/hywa/banktest/bankframework/utils/rsa/ByteManager.java

@@ -0,0 +1,429 @@
+package com.hywa.banktest.bankframework.utils.rsa;
+
+import java.io.ByteArrayOutputStream;
+import java.io.InputStream;
+import java.io.UnsupportedEncodingException;
+import java.nio.ByteBuffer;
+
+/**
+ * 
+ * 版权所有:2016-贵州精英天成科技股份有限公司
+ * 项目名称:plamsa-common   
+ *
+ * 类描述:字节管理
+ * 类名称:com.elite.common.utils.rsa.ByteManager     
+ * 创建人: xiezt 
+ * 创建时间:2016年5月6日 下午5:09:54   
+ * 修改人:
+ * 修改时间:2016年5月6日 下午5:09:54   
+ * 修改备注:   
+ * @version 1.0
+ */
+public class ByteManager {
+
+	public static final int BUFFER_SIZE = 100;
+
+	public static final byte[] getData(InputStream is, int length,
+			int bufferSize){
+		int lenLoaded = 0;
+		byte[] data = null;
+		ByteBuffer buffer = ByteBuffer.allocate(length);
+		byte[] dataTemp = null;
+
+		while (true) {
+			if (lenLoaded >= length) {
+				break;
+			}
+			if (length - lenLoaded < bufferSize) {
+				bufferSize = length - lenLoaded;
+			}
+			dataTemp = new byte[bufferSize];
+			try {
+				is.read(dataTemp);
+				buffer.put(dataTemp);
+				// Log.d("Test", "dataTemp Size = " + dataTemp.length);
+			} catch (Exception e) {
+//				Log.d("Test", "read Exception = " + e.toString());
+			}
+			lenLoaded += bufferSize;
+		}
+		buffer.flip();
+		data = buffer.array();
+
+		return data;
+	}
+
+	/**
+	 * 从输入流中读取固定长度的数据
+	 * 
+	 * @param is
+	 *            输入流
+	 * @param length
+	 *            数据长度
+	 * @return 输入流中的数据
+	 */
+	public static final byte[] getBytes(InputStream is, int length){
+		byte[] result = null;
+		int lenRead = 0;
+		int lenTemp = 0;
+		// byte[] temp = new byte[length];
+		byte[] temp = new byte[256];
+		ByteArrayOutputStream baos = new ByteArrayOutputStream();
+
+		while (true) {
+			try {
+				lenTemp = is.read(temp);
+				if (lenTemp > 0) {
+					baos.write(temp, 0, lenTemp);
+					lenRead += lenTemp;
+					if (lenRead == length) {
+						break;
+					} else {
+						// temp = new byte[length-lenRead];
+						temp = new byte[256];
+					}
+				}
+			} catch (Exception e) {
+//				Log.e("Test", "getBytes Exception = " + e.toString());
+				break;
+			}
+		}
+		result = baos.toByteArray();
+		return result;
+	}
+
+	// 获取二维字节数组从第二个字节数组到最后一个字节数组的字节长度总和,再转成字节数组
+	public static final byte[] getLengthAll(byte[][] srcData){
+		int length = 0;
+		for (int i = 1; i < srcData.length; i++) {
+			length = length + srcData[i].length;
+		}
+		return intToByte(length);
+	}
+
+	/**
+	 * 从ByteBuffer读取出一个字节数组数据(数据之前有四个字节代表数据的长度)
+	 * 
+	 * @param buffer
+	 *            源ByteBuffer
+	 * @return 字节数组数据
+	 */
+	public static final byte[] getDataWithLength(ByteBuffer buffer){
+		byte[] lengthData = new byte[4];
+		int lengthTemp = 0;
+		byte[] data = null;
+		buffer.get(lengthData);
+		lengthTemp = bytesToInt(lengthData);
+		if (lengthTemp > 0) {
+			data = new byte[lengthTemp];
+			buffer.get(data);
+		}
+		return data;
+	}
+
+	/**
+	 * 从ByteBuffer读取出一个字节数组数据(数据之前有四个字节代表数据的长度)
+	 * 
+	 * @param buffer
+	 *            源ByteBuffer
+	 * @return 字节数组数据
+	 */
+	public static final byte[] getDataWithLength(byte[] srcData){
+		ByteBuffer buffer = ByteBuffer.wrap(srcData);
+		byte[] lengthData = new byte[4];
+		int lengthTemp = 0;
+		byte[] data = null;
+		buffer.get(lengthData);
+		lengthTemp = bytesToInt(lengthData);
+		if (lengthTemp > 0) {
+			data = new byte[lengthTemp];
+			buffer.get(data);
+		}
+		buffer.clear();
+		return data;
+	}
+
+	/**
+	 * 从ByteBuffer读取出一个UTF-8编码的字符串(字符串数据之前有四个字节代表字符串数据的长度)
+	 * 
+	 * @param buffer
+	 *            源ByteBuffer
+	 * @return 字符串
+	 */
+	public static final String getStringWithLength(ByteBuffer buffer){
+		String result = null;
+		byte[] data = getDataWithLength(buffer);
+
+		try {
+			if (data != null) {
+				result = new String(data, "UTF-8").trim();
+			}
+		} catch (Exception e) {
+//			Log.d("Test", "getStringWithLength Length = " + e.toString());
+		}
+		return result;
+	}
+
+	/**
+	 * 获取数据里的所有字符串(每个数据前都有长度)
+	 * 
+	 * @param srcData
+	 *            源数据
+	 * @param length
+	 *            数据里包含的字符串总数
+	 * @return 数据里包含的所有字符
+	 */
+	public static final String[] getAllString(byte[] srcData, int length){
+		String[] allString = new String[length];
+		byte[] lengthData = new byte[4];
+		int lengthTemp = 0;
+		byte[] dataString = null;
+		ByteBuffer buffer = ByteBuffer.wrap(srcData);
+		for (int i = 0; i < length; i++) {
+			buffer.get(lengthData);
+			lengthTemp = bytesToInt(lengthData);
+			if (lengthTemp > 0) {
+				dataString = new byte[lengthTemp];
+				buffer.get(dataString);
+				try {
+					allString[i] = new String(dataString, "UTF-8").trim();
+					// Log.d("Test", "getAllString "+i+" = " + allString[i]);
+				} catch (UnsupportedEncodingException e) {
+//					Log.d("Test", "getAllString Exception = " + e.toString());
+				}
+			}
+		}
+		buffer.clear();
+		return allString;
+	}
+
+	/**
+	 * 获取数据里的所有字符串(每个数据前都有长度)
+	 * 
+	 * @param srcData
+	 *            源数据
+	 * @param length
+	 *            数据里包含的字符串总数
+	 * @return 数据里包含的所有字符
+	 */
+	public static final String[] getAllString(ByteBuffer buffer, int length){
+		String[] allString = new String[length];
+		byte[] lengthData = new byte[4];
+		int lengthTemp = 0;
+		byte[] dataString = null;
+		for (int i = 0; i < length; i++) {
+			buffer.get(lengthData);
+			lengthTemp = bytesToInt(lengthData);
+			if (lengthTemp > 0) {
+				dataString = new byte[lengthTemp];
+				buffer.get(dataString);
+				try {
+					allString[i] = new String(dataString, "UTF-8").trim();
+					// Log.d("Test", "getAllString "+i+" = " + allString[i]);
+				} catch (UnsupportedEncodingException e) {
+//					Log.d("Test", "getAllString Exception = " + e.toString());
+				}
+			}
+		}
+		return allString;
+	}
+
+	/**
+	 * 获取源数据里的所有子数据(每个数据前都有长度)
+	 * 
+	 * @param srcData
+	 *            源数据
+	 * @param length
+	 *            源数据里包含的子数据总数
+	 * @return 源数据里包含的所有字符
+	 */
+	public static final byte[][] getAllData(byte[] srcData, int length){
+		byte[][] allData = new byte[length][];
+		byte[] lengthData = new byte[4];
+		int lengthTemp = 0;
+		byte[] subData = null;
+		ByteBuffer buffer = ByteBuffer.wrap(srcData);
+		for (int i = 0; i < length; i++) {
+			buffer.get(lengthData);
+			lengthTemp = bytesToInt(lengthData);
+			if (lengthTemp > 0) {
+				subData = new byte[lengthTemp];
+				buffer.get(subData);
+				allData[i] = subData;
+			}
+		}
+		buffer.clear();
+		return allData;
+	}
+
+	// 根据缓冲大小分割字节数组
+	public static final byte[][] spliteByteArray(byte[] srcData){
+		int lengthDest = srcData.length % BUFFER_SIZE == 0 ? srcData.length
+				/ BUFFER_SIZE : srcData.length / BUFFER_SIZE + 1;
+		byte[][] destData = new byte[lengthDest][];
+		int lengthTemp = 0;
+		ByteBuffer buffer = ByteBuffer.wrap(srcData);
+		for (int i = 0; i < lengthDest; i++) {
+			if (i == lengthDest - 1) {
+				lengthTemp = srcData.length % BUFFER_SIZE == 0 ? BUFFER_SIZE
+						: srcData.length % BUFFER_SIZE;
+			} else {
+				lengthTemp = BUFFER_SIZE;
+			}
+			destData[i] = new byte[lengthTemp];
+			buffer.get(destData[i]);
+		}
+		buffer.clear();
+		return destData;
+	}
+
+	// 连接字节数组
+	public static final byte[] getIntegrationBytes(byte[][] byteData){
+		byte[] data = null;
+		int lengthData = 0;
+
+		for (int i = 0; i < byteData.length; i++) {
+			if (byteData[i] != null) {
+				lengthData += byteData[i].length;
+			}
+		}
+		ByteBuffer buffer = ByteBuffer.allocate(lengthData);
+
+		for (int i = 0; i < byteData.length; i++) {
+			if (byteData[i] != null) {
+				buffer.put(byteData[i]);
+			}
+		}
+		buffer.flip();
+		data = buffer.array();
+		buffer.clear();
+
+		return data;
+	}
+
+	// 连接字节数组后将总长度加在前面
+	public static final byte[] getIntegrationBytesWithLength(byte[][] byteData){
+		byte[] data = null;
+		int lengthData = 0;
+
+		for (int i = 0; i < byteData.length; i++) {
+			if (byteData[i] != null) {
+				lengthData += byteData[i].length;
+			}
+		}
+
+		ByteBuffer buffer = ByteBuffer.allocate(4 + lengthData);
+
+		byte[] len = intToByte(lengthData);
+
+		buffer.put(len);
+
+		for (int i = 0; i < byteData.length; i++) {
+			if (byteData[i] != null) {
+				buffer.put(byteData[i]);
+			}
+		}
+		buffer.flip();
+		data = buffer.array();
+		buffer.clear();
+
+		return data;
+	}
+
+	// 将字节数组的长度加在前面
+	public static final byte[] getIntegrationBytesWithLength(byte[] byteData){
+		byte[] data = null;
+		int lengthData = byteData.length;
+		ByteBuffer buffer = ByteBuffer.allocate(lengthData + 4);
+		byte[] len = intToByte(lengthData);
+		buffer.put(len);
+		buffer.put(byteData);
+		buffer.flip();
+		data = buffer.array();
+		buffer.clear();
+		return data;
+	}
+
+	// 将字节数组的长度加在前面
+	public static final byte[] getIntegrationBytesWithLength(String info){
+		byte[] byteData = null;
+		try {
+			byteData = info.getBytes("UTF-8");
+		} catch (UnsupportedEncodingException e) {
+//			LogUtil.d("getIntegrationBytesWithLength UnsupportedEncodingException = "
+//					+ e.toString());
+		}
+		byte[] data = null;
+		int lengthData = byteData.length;
+		ByteBuffer buffer = ByteBuffer.allocate(lengthData + 4);
+		byte[] len = intToByte(lengthData);
+		buffer.put(len);
+		buffer.put(byteData);
+		buffer.flip();
+		data = buffer.array();
+		buffer.clear();
+		return data;
+	}
+
+	// 将字符串拼成带数据长度的字节数组
+	public static final byte[] getIntegrationBytes(String[] strData){
+		byte[] data = null;
+		int lengthData = 0;
+		int lengthTemp = 0;
+		byte[][] integrationLength = new byte[strData.length][];
+		byte[][] integrationBytes = new byte[strData.length][];
+		for (int i = 0; i < integrationBytes.length; i++) {
+			if (strData[i] != null) {
+				try {
+					integrationBytes[i] = strData[i].getBytes("UTF-8");
+
+				} catch (UnsupportedEncodingException e) {
+//					Log.d("Test",
+//							"getIntegrationBytes Exception = " + e.toString());
+				}
+				lengthTemp = integrationBytes[i].length;
+				lengthData += lengthTemp;
+				integrationLength[i] = intToByte(lengthTemp);
+				lengthData += integrationLength[i].length;
+			} else {
+				integrationBytes[i] = null;
+				lengthTemp = 0;
+				integrationLength[i] = intToByte(lengthTemp);
+				lengthData += integrationLength[i].length;
+			}
+
+		}
+		ByteBuffer buffer = ByteBuffer.allocate(lengthData);
+		for (int i = 0; i < integrationBytes.length; i++) {
+			if (integrationLength[i] != null) {
+				buffer.put(integrationLength[i]);
+			}
+			if (integrationBytes[i] != null) {
+				buffer.put(integrationBytes[i]);
+			}
+		}
+		buffer.flip();
+		data = buffer.array();
+		buffer.clear();
+		return data;
+	}
+
+	// INT 转成 字节数组
+	public static byte[] intToByte(int i){
+		byte[] bt = new byte[4];
+		bt[0] = (byte) (0xff & i);
+		bt[1] = (byte) ((0xff00 & i) >> 8);
+		bt[2] = (byte) ((0xff0000 & i) >> 16);
+		bt[3] = (byte) ((0xff000000 & i) >> 24);
+		return bt;
+	}
+
+	// 字节数组 转成 INT
+	public static int bytesToInt(byte[] bytes){
+		int num = bytes[0] & 0xFF;
+		num |= ((bytes[1] << 8) & 0xFF00);
+		num |= ((bytes[2] << 16) & 0xFF0000);
+		num |= ((bytes[3] << 24) & 0xFF000000);
+		return num;
+	}
+}

+ 48 - 0
src/main/java/com/hywa/banktest/bankframework/utils/rsa/CipherStream.java

@@ -0,0 +1,48 @@
+package com.hywa.banktest.bankframework.utils.rsa;
+
+import java.io.IOException;
+import java.io.InputStream;
+
+public class CipherStream extends InputStream {
+	private InputStream source;
+	private byte[] key;
+	int len;
+	int cur;
+
+	public CipherStream(InputStream source, byte[] keyS){
+		this.source = source;
+		if (keyS == null || keyS.length < 5) {
+			throw new IllegalArgumentException("The key is null or too short.");
+		}
+
+		this.key = new byte[keyS.length * 2];
+		for (int i = 0; i < keyS.length; i++) {
+			key[i] = (byte) (keyS[i] - i);
+			key[i + keyS.length] = (byte) (keyS[i] + i);
+		}
+
+		len = key.length;
+		cur = 0;
+	}
+
+	@Override
+	public int read() throws IOException{
+		int i = source.read();
+		if (i < 0)
+			return i;
+
+		int k = key[cur];
+
+		int n = (cur + 1) % len;
+
+		int nk = k + key[n];
+
+		key[cur] = (byte) nk;
+
+		int r = (i ^ k) & 0x00ff;
+
+		cur = n;
+
+		return r;
+	}
+}

+ 86 - 0
src/main/java/com/hywa/banktest/bankframework/utils/rsa/DES.java

@@ -0,0 +1,86 @@
+package com.hywa.banktest.bankframework.utils.rsa;
+
+import org.apache.log4j.Logger;
+
+import javax.crypto.Cipher;
+import javax.crypto.SecretKey;
+import javax.crypto.spec.IvParameterSpec;
+import javax.crypto.spec.SecretKeySpec;
+import java.security.spec.AlgorithmParameterSpec;
+
+/**
+ * 
+ * 版权所有:2016-贵州精英天成科技股份有限公司
+ * 项目名称:plamsa-common   
+ *
+ * 类描述:
+ * 类名称:com.elite.common.utils.rsa.DES     
+ * 创建人: xiezt 
+ * 创建时间:2016年5月6日 下午5:10:30   
+ * 修改人:
+ * 修改时间:2016年5月6日 下午5:10:30   
+ * 修改备注:   
+ * @version 1.0
+ */
+public class DES {
+
+	// public static final String DES_ALGORITHM = "DES/CBC/PKCS5Padding";
+	// 若采用NoPadding模式,data长度必须是8的倍数
+	public static final String DES_ALGORITHM = "DES/CBC/NoPadding";
+
+	private static Logger logger = Logger.getLogger(DES.class);
+
+	/**
+	 * DES-CBC模式加密
+	 * 
+	 * @param plainData
+	 *            明文
+	 * @param keyData
+	 *            密钥
+	 * @param ivData
+	 *            初始化向量
+	 * @return 密文
+	 */
+	public static final byte[] encryptCBC(byte[] plainData, byte[] keyData, byte[] ivData) {
+		byte[] encryptData = null;
+
+		try {
+			Cipher cipher = Cipher.getInstance(DES_ALGORITHM);
+			AlgorithmParameterSpec paramSpec = new IvParameterSpec(ivData);
+			SecretKey key = new SecretKeySpec(keyData, "DES");// key
+			cipher.init(Cipher.ENCRYPT_MODE, key, paramSpec);
+			encryptData = cipher.doFinal(plainData);
+		} catch (Exception e) {
+			logger.error(e);
+		}
+
+		return encryptData;
+	}
+
+	/**
+	 * DES-CBC模式解密
+	 * 
+	 * @param plainData
+	 *            密文
+	 * @param keyData
+	 *            密钥
+	 * @param ivData
+	 *            初始化向量
+	 * @return 明文
+	 */
+	public static final byte[] decryptCBC(byte[] encryptData, byte[] keyData, byte[] ivData) {
+		byte[] plainData = null;
+
+		try {
+			Cipher cipher = Cipher.getInstance(DES_ALGORITHM);
+			AlgorithmParameterSpec paramSpec = new IvParameterSpec(ivData);
+			SecretKey key = new SecretKeySpec(keyData, "DES");// key
+			cipher.init(Cipher.DECRYPT_MODE, key, paramSpec);
+			plainData = cipher.doFinal(encryptData);
+		} catch (Exception e) {
+			logger.error(e);
+		}
+		return plainData;
+	}
+
+}

+ 124 - 0
src/main/java/com/hywa/banktest/bankframework/utils/rsa/DESede.java

@@ -0,0 +1,124 @@
+package com.hywa.banktest.bankframework.utils.rsa;
+
+import javax.crypto.Cipher;
+import javax.crypto.KeyGenerator;
+import javax.crypto.SecretKey;
+import javax.crypto.SecretKeyFactory;
+import javax.crypto.spec.DESedeKeySpec;
+import java.nio.ByteBuffer;
+import java.security.Key;
+
+/**
+ * 
+ * 版权所有:2016-贵州精英天成科技股份有限公司
+ * 项目名称:plamsa-common   
+ *
+ * 类描述:
+ * 类名称:com.elite.common.utils.rsa.DESede     
+ * 创建人: xiezt 
+ * 创建时间:2016年5月6日 下午5:10:49   
+ * 修改人:
+ * 修改时间:2016年5月6日 下午5:10:49   
+ * 修改备注:   
+ * @version 1.0
+ */
+public class DESede {
+
+	/**
+	 * 对称加密DESede密钥算法 JAVA 6 支持长度为112和168位 Bouncy Castle支持密钥长度为128位和192位
+	 */
+	public static final String KEY_ALGORITHM = "DESede";
+
+	/**
+	 * 加解密算法/工作模式/填充方式NoPadding JAVA 6 支持DESede/ECB/PKCS5Padding填充方式 Bouncy
+	 * Castle支持PKCS7Padding填充方式
+	 */
+	public static final String CIPHER_ALGORITHM = "DESede/ECB/NoPadding";
+
+	// public static final String CIPHER_ALGORITHM = "DESede/ECB/PKCS5Padding";
+
+	// Bouncy Castle算法提供者
+	// public static final String PROVIDER_BOUNCY_CASTOLE = "BC";
+
+	// 将C#的字节数组转换成JAVA字节数组
+	public static byte[] convertByte(int[] keyInt) {
+		byte[] keyByte = new byte[keyInt.length];
+		for (int i = 0; i < keyByte.length; i++) {
+			if (keyInt[i] > 127) {
+				keyByte[i] = (byte) (keyInt[i] - 256);
+			} else {
+				keyByte[i] = (byte) keyInt[i];
+			}
+		}
+		return keyByte;
+	}
+
+	// 生成密钥
+	public static byte[] initKey() throws Exception {
+		KeyGenerator kg = KeyGenerator.getInstance(KEY_ALGORITHM);
+		// KeyGenerator kg = KeyGenerator.getInstance(KEY_ALGORITHM);
+		kg.init(192);
+		SecretKey secretKey = kg.generateKey();
+		return secretKey.getEncoded();
+	}
+
+	// 转换密钥
+	private static final Key toKey(byte[] key) throws Exception {
+		DESedeKeySpec dks = new DESedeKeySpec(key);
+		SecretKeyFactory keyFactory = SecretKeyFactory.getInstance(KEY_ALGORITHM);
+		return keyFactory.generateSecret(dks);
+	}
+
+	// 加密数据
+	public static byte[] encrypt(byte[] data, byte[] key) throws Exception {
+		if (key.length < 24) {
+			key = convertKey(key);
+		}
+		Key k = toKey(key);
+		Cipher cipher = Cipher.getInstance(KEY_ALGORITHM);
+		// Cipher cipher = Cipher.getInstance(KEY_ALGORITHM);
+		cipher.init(Cipher.ENCRYPT_MODE, k);
+		return cipher.doFinal(data);
+	}
+
+	// 解密数据
+	public static byte[] decrypt(byte[] data, byte[] key) throws Exception {
+		if (key.length < 24) {
+			key = convertKey(key);
+		}
+		Key k = toKey(key);
+		Cipher cipher = Cipher.getInstance(CIPHER_ALGORITHM);
+		// Cipher cipher = Cipher.getInstance(KEY_ALGORITHM);
+		cipher.init(Cipher.DECRYPT_MODE, k);
+		return cipher.doFinal(data);
+	}
+
+	public static byte[] decryptPck(byte[] data, byte[] key) throws Exception {
+		if (key.length < 24) {
+			key = convertKey(key);
+		}
+		Key k = toKey(key);
+		Cipher cipher = Cipher.getInstance("DESede/ECB/PKCS5Padding");
+		//IvParameterSpec ips = new IvParameterSpec(data);
+		// Cipher cipher = Cipher.getInstance(KEY_ALGORITHM); // DESede/ECB/PKCS5Padding
+		cipher.init(Cipher.DECRYPT_MODE, k);
+		return cipher.doFinal(data);
+	}
+
+	// 将16字节的密钥转换成24字节
+	public static byte[] convertKey(byte[] srcKey) {
+		byte[] destKey = null;
+
+		byte[] keyFirst = new byte[8];
+		ByteBuffer buffer = ByteBuffer.wrap(srcKey);
+		buffer.get(keyFirst);
+		buffer.clear();
+		buffer = ByteBuffer.allocate(24);
+		buffer.put(srcKey);
+		buffer.put(keyFirst);
+		buffer.flip();
+		destKey = buffer.array();
+		buffer.clear();
+		return destKey;
+	}
+}

+ 76 - 0
src/main/java/com/hywa/banktest/bankframework/utils/rsa/HexCodec.java

@@ -0,0 +1,76 @@
+package com.hywa.banktest.bankframework.utils.rsa;
+
+/**
+ * 
+ * 版权所有:2016-贵州精英天成科技股份有限公司
+ * 项目名称:plamsa-common   
+ *
+ * 类描述:Utility class to perform HEX encoding/decoding of values
+ * 类名称:com.elite.common.utils.rsa.HexCodec     
+ * 创建人: xiezt 
+ * 创建时间:2016年5月6日 下午5:11:34   
+ * 修改人:
+ * 修改时间:2016年5月6日 下午5:11:34   
+ * 修改备注:   
+ * @version 1.0
+ */
+public class HexCodec {
+
+	static final char[] HEX = new char[] { '0', '1', '2', '3', '4', '5', '6', '7', '8', '9', 'A', 'B', 'C', 'D', 'E', 'F' };
+
+	public static String hexEncode(byte[] buffer) {
+		if (buffer.length == 0) {
+			return "";
+		}
+		int holder = 0;
+		char[] chars = new char[buffer.length * 2];
+		for (int i = 0; i < buffer.length; i++) {
+			holder = (buffer[i] & 0xf0) >> 4;
+			chars[i * 2] = HEX[holder];
+			holder = buffer[i] & 0x0f;
+			chars[(i * 2) + 1] = HEX[holder];
+		}
+		return new String(chars);
+	}
+
+	public static byte[] hexDecode(String hex) {
+		// A null string returns an empty array
+		if (hex == null || hex.length() == 0) {
+			return new byte[0];
+		} else if (hex.length() < 3) {
+			return new byte[] { (byte) (Integer.parseInt(hex, 16) & 0xff) };
+		}
+		// Adjust accordingly for odd-length strings
+		int count = hex.length();
+		int nibble = 0;
+		if (count % 2 != 0) {
+			count++;
+			nibble = 1;
+		}
+		byte[] buf = new byte[count / 2];
+		char c = 0;
+		int holder = 0;
+		int pos = 0;
+		for (int i = 0; i < buf.length; i++) {
+			for (int z = 0; z < 2 && pos < hex.length(); z++) {
+				c = hex.charAt(pos++);
+				if (c >= 'A' && c <= 'F') {
+					c -= 55;
+				} else if (c >= '0' && c <= '9') {
+					c -= 48;
+				} else if (c >= 'a' && c <= 'f') {
+					c -= 87;
+				}
+				if (nibble == 0) {
+					holder = c << 4;
+				} else {
+					holder |= c;
+					buf[i] = (byte) holder;
+				}
+				nibble = 1 - nibble;
+			}
+		}
+		return buf;
+	}
+
+}

+ 113 - 0
src/main/java/com/hywa/banktest/bankframework/utils/rsa/MD5.java

@@ -0,0 +1,113 @@
+package com.hywa.banktest.bankframework.utils.rsa;
+
+
+
+import com.hywa.banktest.bankframework.utils.string.StringUtil;
+import org.apache.commons.codec.digest.DigestUtils;
+import org.apache.log4j.Logger;
+
+import java.io.UnsupportedEncodingException;
+import java.security.MessageDigest;
+import java.security.NoSuchAlgorithmException;
+
+/**
+ * MD5工具类
+ * 版权所有:2016-贵州精英天成科技股份有限公司
+ * 项目名称:plamsa-common   
+ *
+ * 类描述:
+ * 类名称:com.elite.common.utils.rsa.MD5     
+ * 创建人: xiezt 
+ * 创建时间:2016年5月6日 下午5:11:54   
+ * 修改人:
+ * 修改时间:2016年5月6日 下午5:11:54   
+ * 修改备注:   
+ * @version 1.0
+ */
+public class MD5 {
+
+	private static Logger logger = Logger.getLogger(MD5.class);
+
+	/**
+	 * 获取MD5消息摘要
+	 * 
+	 * @param data
+	 *            源数据
+	 * @return MD5消息摘要
+	 */
+	public static byte[] getMD5(byte[] data) {
+		byte[] md5 = null;
+		try {
+			MessageDigest md = MessageDigest.getInstance("MD5");
+			md5 = md.digest(data);
+		} catch (Exception e) {
+		}
+		return md5;
+	}
+
+	/*
+	 * MD5字符串
+	 */
+	public static String getMD5Str(String str) {
+		MessageDigest messageDigest = null;
+
+		try {
+			messageDigest = MessageDigest.getInstance("MD5");
+			messageDigest.reset();
+			if (!StringUtil.isEmpty(str)) {
+				messageDigest.update(str.getBytes("UTF-8"));
+			}
+		} catch (NoSuchAlgorithmException e) {
+			logger.error(e);
+		} catch (UnsupportedEncodingException e) {
+			logger.error(e);
+		}
+
+		byte[] byteArray = messageDigest.digest();
+
+		StringBuffer md5StrBuff = new StringBuffer();
+
+		for (int i = 0; i < byteArray.length; i++) {
+			if (Integer.toHexString(0xFF & byteArray[i]).length() == 1)
+				md5StrBuff.append("0").append(Integer.toHexString(0xFF & byteArray[i]));
+			else
+				md5StrBuff.append(Integer.toHexString(0xFF & byteArray[i]));
+		}
+		return md5StrBuff.toString();
+	}
+
+	/*
+	 * MD5字符串
+	 */
+	public static String getMD5Str(byte[] data) {
+		MessageDigest messageDigest = null;
+
+		try {
+			messageDigest = MessageDigest.getInstance("MD5");
+
+			messageDigest.reset();
+
+			messageDigest.update(data);
+		} catch (NoSuchAlgorithmException e) {
+			// LogUtil.e("NoSuchAlgorithmException = " + e.toString());
+		}
+
+		byte[] byteArray = messageDigest.digest();
+
+		StringBuffer md5StrBuff = new StringBuffer();
+
+		for (int i = 0; i < byteArray.length; i++) {
+			if (Integer.toHexString(0xFF & byteArray[i]).length() == 1)
+				md5StrBuff.append("0").append(Integer.toHexString(0xFF & byteArray[i]));
+			else
+				md5StrBuff.append(Integer.toHexString(0xFF & byteArray[i]));
+		}
+		return md5StrBuff.toString().toUpperCase();
+	}
+
+	public static void main(String[] args){
+		System.out.println(MD5.getMD5Str("gysjcjk_yw_JY_123"));
+		System.out.println(DigestUtils.md5Hex("chenjianhua").toUpperCase());
+		
+	}
+}

+ 42 - 0
src/main/java/com/hywa/banktest/bankframework/utils/rsa/PinTool.java

@@ -0,0 +1,42 @@
+package com.hywa.banktest.bankframework.utils.rsa;
+
+
+/**
+ * 
+ * 版权所有:2016-贵州精英天成科技股份有限公司
+ * 项目名称:plamsa-common   
+ *
+ * 类描述:密码转pin
+ * 类名称:com.elite.common.utils.rsa.PinTool     
+ * 创建人: xiezt 
+ * 创建时间:2016年5月6日 下午5:12:46   
+ * 修改人:
+ * 修改时间:2016年5月6日 下午5:12:46   
+ * 修改备注:   
+ * @version 1.0
+ */
+public class PinTool {
+	
+	public static synchronized byte[] pin2Block(String aPin) {
+
+		byte[] pinBlock = new byte[8];
+		pinBlock[0] = (byte) aPin.length();
+		int intValue = Integer.valueOf(aPin);
+		int k = 1000000;
+		for (int i = 0; i < aPin.length(); i += 2) {
+			byte b1 = (byte) (((intValue / (k / 10)) << 4) & 0xf0);
+			byte b2 = (byte) ((intValue / (k / 100)) % 10);
+			pinBlock[i / 2 + 1] = (byte) (b1 + b2);
+			intValue = intValue % (k / 100);
+			k = k / 100;
+
+		}
+		pinBlock[4] = (byte) 0xff;
+		pinBlock[5] = (byte) 0xff;
+		pinBlock[6] = (byte) 0xff;
+		pinBlock[7] = (byte) 0xff;
+
+		return pinBlock;
+	}
+
+}

+ 334 - 0
src/main/java/com/hywa/banktest/bankframework/utils/rsa/RSACoder.java

@@ -0,0 +1,334 @@
+package com.hywa.banktest.bankframework.utils.rsa;
+
+import javax.crypto.BadPaddingException;
+import javax.crypto.Cipher;
+import javax.crypto.IllegalBlockSizeException;
+import javax.crypto.NoSuchPaddingException;
+import java.io.ByteArrayOutputStream;
+import java.io.IOException;
+import java.security.*;
+import java.security.interfaces.RSAPrivateKey;
+import java.security.interfaces.RSAPublicKey;
+import java.security.spec.InvalidKeySpecException;
+import java.security.spec.PKCS8EncodedKeySpec;
+import java.security.spec.X509EncodedKeySpec;
+import java.util.HashMap;
+import java.util.Map;
+
+/**
+ * 
+ * 版权所有:2016-贵州精英天成科技股份有限公司
+ * 项目名称:plamsa-common   
+ *
+ * 类描述:RSA加密方式
+ * 类名称:com.elite.common.utils.rsa.RSACoder     
+ * 创建人: xiezt 
+ * 创建时间:2016年5月6日 下午5:13:25   
+ * 修改人:
+ * 修改时间:2016年5月6日 下午5:13:25   
+ * 修改备注:   
+ * @version 1.0
+ */
+public class RSACoder {
+	public static final String KEY_ALGORITHM = "RSA"; // 加密方式
+	// 数字签名 签名/验证算法
+	private static final String SIGNATURE_ALGORRITHM = "SHA1withRSA";
+	// 公钥变量名
+	private static final String PUBLIC_KEY = "RSAPublicKey";
+	// 私钥变量名
+	private static final String PRIVATE_KEY = "RSAPrivateKey";
+	// RSA密钥长度,默认为1024,密钥长度必须是64的倍数,范围在512~65526位之间
+	private static final int KEY_SIZE = 1024;
+	// RSA最大加密明文大小
+	private static final int MAX_ENCRYPT_BLOCK = 117;
+	// RSA最大解密密文大小
+	private static final int MAX_DECRYPT_BLOCK = 128;
+
+	/**
+	 * 生成密钥
+	 * 
+	 * @return 密钥Map
+	 * @throws NoSuchAlgorithmException
+	 */
+	public static Map<String, String> generateKey() throws NoSuchAlgorithmException {
+		// 实例化实钥对生成器
+		KeyPairGenerator keyPairGen = KeyPairGenerator.getInstance(KEY_ALGORITHM);
+		// 初始化密钥对生成器
+		keyPairGen.initialize(KEY_SIZE, new SecureRandom());
+		// 生成密钥对
+		KeyPair keyPair = keyPairGen.generateKeyPair();
+		// 公钥
+		RSAPublicKey publicKey = (RSAPublicKey) keyPair.getPublic();
+		// 私钥
+		RSAPrivateKey privateKey = (RSAPrivateKey) keyPair.getPrivate();
+		// 封装密钥
+		Map<String, String> keyMap = new HashMap<String, String>(2);
+		keyMap.put(PUBLIC_KEY, Base64.encode(publicKey.getEncoded()));
+		keyMap.put(PRIVATE_KEY, Base64.encode(privateKey.getEncoded()));
+		return keyMap;
+	}
+
+	/**
+	 * 私钥加密
+	 * 
+	 * @param data
+	 *            待加密数据
+	 * @param key
+	 *            私钥
+	 * @return String 加密数据
+	 * @throws NoSuchAlgorithmException
+	 * @throws InvalidKeySpecException
+	 * @throws NoSuchPaddingException
+	 * @throws InvalidKeyException
+	 * @throws BadPaddingException
+	 * @throws IllegalBlockSizeException
+	 * @throws IOException
+	 */
+	public static String encryptByPrivateKey(String data, String key) throws NoSuchAlgorithmException, InvalidKeySpecException, NoSuchPaddingException, InvalidKeyException, IllegalBlockSizeException,
+			BadPaddingException, IOException {
+		byte[] keybyte = Base64.decode(key);
+		// 取得私钥 PKCS8EncodedKeySpec封装私钥的类
+		PKCS8EncodedKeySpec pkcs8KeySpec = new PKCS8EncodedKeySpec(keybyte);
+		KeyFactory keyFactory = KeyFactory.getInstance(KEY_ALGORITHM);
+		// 生成私钥
+		PrivateKey privateKey = keyFactory.generatePrivate(pkcs8KeySpec);
+		// 对数据加密
+		Cipher cipher = Cipher.getInstance(KEY_ALGORITHM);
+		cipher.init(Cipher.ENCRYPT_MODE, privateKey);
+		byte[] databyte = data.getBytes();
+		int inputLen = databyte.length;
+		ByteArrayOutputStream out = new ByteArrayOutputStream();
+		int offSet = 0;
+		byte[] cache;
+		int i = 0;
+		while (inputLen - offSet > 0) {
+			if (inputLen - offSet > MAX_ENCRYPT_BLOCK) {
+				cache = cipher.doFinal(databyte, offSet, MAX_ENCRYPT_BLOCK);
+			} else {
+				cache = cipher.doFinal(databyte, offSet, inputLen - offSet);
+			}
+			out.write(cache);
+			i++;
+			offSet = i * MAX_ENCRYPT_BLOCK;
+		}
+		byte[] encbyte = out.toByteArray();
+		String enc = Base64.encode(encbyte);
+		out.close();
+		return enc;
+	}
+
+	/**
+	 * 公钥加密
+	 * 
+	 * @param data
+	 *            待加密数据
+	 * @param key
+	 *            公钥
+	 * @return String 加密数据
+	 * @throws NoSuchAlgorithmException
+	 * @throws InvalidKeySpecException
+	 * @throws NoSuchPaddingException
+	 * @throws InvalidKeyException
+	 * @throws BadPaddingException
+	 * @throws IllegalBlockSizeException
+	 * @throws IOException
+	 */
+	public static String encryptByPublicKey(String data, String key) throws NoSuchAlgorithmException, InvalidKeySpecException, NoSuchPaddingException, InvalidKeyException, IllegalBlockSizeException,
+			BadPaddingException, IOException {
+		byte[] keybyte = Base64.decode(key);
+		// 取得公钥 X509EncodedKeySpec封装公钥的类
+		X509EncodedKeySpec x509KeySpec = new X509EncodedKeySpec(keybyte);
+		KeyFactory keyFactory = KeyFactory.getInstance(KEY_ALGORITHM);
+		// 生成公钥
+		PublicKey publicKey = keyFactory.generatePublic(x509KeySpec);
+		// 对数据加密
+		Cipher cipher = Cipher.getInstance(KEY_ALGORITHM);
+		cipher.init(Cipher.ENCRYPT_MODE, publicKey);
+		byte[] databyte = data.getBytes();
+		int inputLen = databyte.length;
+		ByteArrayOutputStream out = new ByteArrayOutputStream();
+		int offSet = 0;
+		byte[] cache;
+		int i = 0;
+		while (inputLen - offSet > 0) {
+			if (inputLen - offSet > MAX_ENCRYPT_BLOCK) {
+				cache = cipher.doFinal(databyte, offSet, MAX_ENCRYPT_BLOCK);
+			} else {
+				cache = cipher.doFinal(databyte, offSet, inputLen - offSet);
+			}
+			out.write(cache);
+			i++;
+			offSet = i * MAX_ENCRYPT_BLOCK;
+		}
+		byte[] encbyte = out.toByteArray();
+		String enc = Base64.encode(encbyte);
+		out.close();
+		return enc;
+	}
+
+	/**
+	 * 私钥解密
+	 * 
+	 * @param data
+	 *            待解密数据
+	 * @param key
+	 *            私钥
+	 * @return String 解密数据
+	 * @throws NoSuchAlgorithmException
+	 * @throws InvalidKeySpecException
+	 * @throws NoSuchPaddingException
+	 * @throws InvalidKeyException
+	 * @throws BadPaddingException
+	 * @throws IllegalBlockSizeException
+	 * @throws IOException
+	 */
+	public static String decryptByPrivateKey(String data, String key) throws NoSuchAlgorithmException, InvalidKeySpecException, NoSuchPaddingException, InvalidKeyException, IllegalBlockSizeException,
+			BadPaddingException, IOException {
+		byte[] keybyte = Base64.decode(key);
+		// 取得私钥 PKCS8EncodedKeySpec封装私钥的类
+		PKCS8EncodedKeySpec pkcs8KeySpec = new PKCS8EncodedKeySpec(keybyte);
+		KeyFactory keyFactory = KeyFactory.getInstance(KEY_ALGORITHM);
+		// 生成私钥
+		PrivateKey privateKey = keyFactory.generatePrivate(pkcs8KeySpec);
+		// 对数据解密
+		Cipher cipher = Cipher.getInstance(KEY_ALGORITHM);
+		cipher.init(Cipher.DECRYPT_MODE, privateKey);
+		byte[] databyte = Base64.decode(data);
+		int inputLen = databyte.length;
+		ByteArrayOutputStream out = new ByteArrayOutputStream();
+		int offSet = 0;
+		byte[] cache;
+		int i = 0;
+		while (inputLen - offSet > 0) {
+			if (inputLen - offSet > MAX_DECRYPT_BLOCK) {
+				cache = cipher.doFinal(databyte, offSet, MAX_DECRYPT_BLOCK);
+			} else {
+				cache = cipher.doFinal(databyte, offSet, inputLen - offSet);
+			}
+			out.write(cache);
+			i++;
+			offSet = i * MAX_DECRYPT_BLOCK;
+		}
+		byte[] decbyte = out.toByteArray();
+		String dec = new String(decbyte);
+		out.close();
+		return dec;
+	}
+
+	/**
+	 * 公钥解密
+	 * 
+	 * @param data
+	 *            待解密数据
+	 * @param key
+	 *            公钥
+	 * @return String 解密数据
+	 * @throws NoSuchAlgorithmException
+	 * @throws InvalidKeySpecException
+	 * @throws NoSuchPaddingException
+	 * @throws InvalidKeyException
+	 * @throws BadPaddingException
+	 * @throws IllegalBlockSizeException
+	 * @throws IOException
+	 */
+	public static String decryptByPublicKey(String data, String key) throws NoSuchAlgorithmException, InvalidKeySpecException, NoSuchPaddingException, InvalidKeyException, IllegalBlockSizeException,
+			BadPaddingException, IOException {
+		byte[] keybyte = Base64.decode(key);
+		// 取得公钥 X509EncodedKeySpec封装公钥的类
+		X509EncodedKeySpec x509KeySpec = new X509EncodedKeySpec(keybyte);
+		KeyFactory keyFactory = KeyFactory.getInstance(KEY_ALGORITHM);
+		// 生成公钥
+		PublicKey publicKey = keyFactory.generatePublic(x509KeySpec);
+		// 对数据解密
+		Cipher cipher = Cipher.getInstance(KEY_ALGORITHM);
+		cipher.init(Cipher.DECRYPT_MODE, publicKey);
+		byte[] databyte = Base64.decode(data);
+		int inputLen = databyte.length;
+		ByteArrayOutputStream out = new ByteArrayOutputStream();
+		int offSet = 0;
+		byte[] cache;
+		int i = 0;
+		while (inputLen - offSet > 0) {
+			if (inputLen - offSet > MAX_DECRYPT_BLOCK) {
+				cache = cipher.doFinal(databyte, offSet, MAX_DECRYPT_BLOCK);
+			} else {
+				cache = cipher.doFinal(databyte, offSet, inputLen - offSet);
+			}
+			out.write(cache);
+			i++;
+			offSet = i * MAX_DECRYPT_BLOCK;
+		}
+		byte[] decbyte = out.toByteArray();
+		String dec = new String(decbyte);
+		out.close();
+		return dec;
+	}
+
+	/**
+	 * 私钥签名
+	 * 
+	 * @param data
+	 *            待签名的加密数据
+	 * @param privateKey
+	 *            私钥
+	 * @return String 数字签名
+	 * @throws NoSuchAlgorithmException
+	 * @throws InvalidKeySpecException
+	 * @throws InvalidKeyException
+	 * @throws SignatureException
+	 */
+	public static String sign(String data, String privateKey) throws NoSuchAlgorithmException, InvalidKeySpecException, InvalidKeyException, SignatureException {
+		byte[] privateKeyByte = Base64.decode(privateKey);
+		// 转接私钥材料
+		PKCS8EncodedKeySpec pkcs8KeySpec = new PKCS8EncodedKeySpec(privateKeyByte);
+		// 实例化密钥工厂
+		KeyFactory keyFactory = KeyFactory.getInstance(KEY_ALGORITHM);
+		// 取私钥对象
+		PrivateKey priKey = keyFactory.generatePrivate(pkcs8KeySpec);
+		// 实例化Signature
+		Signature signature = Signature.getInstance(SIGNATURE_ALGORRITHM);
+		// 初始化Signature
+		signature.initSign(priKey);
+		// 更新
+		signature.update(Base64.decode(data));
+		// 签名
+		byte[] signbyte = signature.sign();
+		String signstr = Base64.encode(signbyte);
+		return signstr;
+	}
+
+	/**
+	 * 公钥校验
+	 * 
+	 * @param data
+	 *            待校验数据
+	 * @param publicKey
+	 *            公钥
+	 * @param sign
+	 *            数字签名
+	 * @return
+	 * @throws NoSuchAlgorithmException
+	 * @throws InvalidKeySpecException
+	 * @throws InvalidKeyException
+	 * @throws SignatureException
+	 */
+	public static boolean verify(String data, String publicKey, String sign) throws NoSuchAlgorithmException, InvalidKeySpecException, InvalidKeyException, SignatureException {
+		byte[] publicKeyByte = Base64.decode(publicKey);
+		// 转接公钥材料
+		X509EncodedKeySpec x509KeySpec = new X509EncodedKeySpec(publicKeyByte);
+		// 实例化密钥工厂
+		KeyFactory keyFactory = KeyFactory.getInstance(KEY_ALGORITHM);
+		// 生成公钥
+		PublicKey pubKey = keyFactory.generatePublic(x509KeySpec);
+		// 实例化Signature
+		Signature signature = Signature.getInstance(SIGNATURE_ALGORRITHM);
+		// 初始化Signature
+		signature.initVerify(pubKey);
+		// 更新
+		signature.update(Base64.decode(data));
+		// 验证
+		boolean isVerify = signature.verify(Base64.decode(sign));
+		return isVerify;
+	}
+
+}

+ 283 - 0
src/main/java/com/hywa/banktest/bankframework/utils/rsa/RSAEncrpt.java

@@ -0,0 +1,283 @@
+package com.hywa.banktest.bankframework.utils.rsa;
+
+import org.apache.log4j.Logger;
+
+import javax.crypto.BadPaddingException;
+import javax.crypto.Cipher;
+import javax.crypto.IllegalBlockSizeException;
+import javax.crypto.NoSuchPaddingException;
+import java.io.BufferedReader;
+import java.io.IOException;
+import java.io.InputStream;
+import java.io.InputStreamReader;
+import java.security.*;
+import java.security.interfaces.RSAPrivateKey;
+import java.security.interfaces.RSAPublicKey;
+import java.security.spec.InvalidKeySpecException;
+import java.security.spec.PKCS8EncodedKeySpec;
+import java.security.spec.X509EncodedKeySpec;
+
+public class RSAEncrpt {
+
+	private static Logger logger = Logger.getLogger(RSAEncrpt.class);
+
+	/**
+	 * 私钥
+	 */
+	private RSAPrivateKey privateKey;
+
+	/**
+	 * 公钥
+	 */
+	private RSAPublicKey publicKey;
+
+	/**
+	 * 字节数据转字符串专用集合
+	 */
+	private static final char[] HEX_CHAR = { '0', '1', '2', '3', '4', '5', '6', '7', '8', '9', 'a', 'b', 'c', 'd', 'e', 'f' };
+
+	/**
+	 * 获取私钥
+	 * 
+	 * @return 当前的私钥对象
+	 */
+	public RSAPrivateKey getPrivateKey() {
+		return privateKey;
+	}
+
+	/**
+	 * 获取公钥
+	 * 
+	 * @return 当前的公钥对象
+	 */
+	public RSAPublicKey getPublicKey() {
+		return publicKey;
+	}
+
+	/**
+	 * 随机生成密钥对
+	 */
+	public void genKeyPair() {
+		KeyPairGenerator keyPairGen = null;
+		try {
+			keyPairGen = KeyPairGenerator.getInstance("RSA");
+		} catch (NoSuchAlgorithmException e) {
+			logger.error(e);
+		}
+		keyPairGen.initialize(1024, new SecureRandom());
+		KeyPair keyPair = keyPairGen.generateKeyPair();
+		this.privateKey = (RSAPrivateKey) keyPair.getPrivate();
+		this.publicKey = (RSAPublicKey) keyPair.getPublic();
+	}
+
+	/**
+	 * 从文件中输入流中加载公钥
+	 * 
+	 * @param in
+	 *            公钥输入流
+	 * @throws Exception
+	 *             加载公钥时产生的异常
+	 */
+	public void loadPublicKey(InputStream in) throws Exception {
+		try {
+			BufferedReader br = new BufferedReader(new InputStreamReader(in));
+			String readLine = null;
+			StringBuilder sb = new StringBuilder();
+			while ((readLine = br.readLine()) != null) {
+				if (readLine.charAt(0) == '-') {
+					continue;
+				} else {
+					sb.append(readLine);
+					sb.append('\r');
+				}
+			}
+			loadPublicKey(sb.toString());
+		} catch (IOException e) {
+			throw new Exception("公钥数据流读取错误");
+		} catch (NullPointerException e) {
+			throw new Exception("公钥输入流为空");
+		}
+	}
+
+	/**
+	 * 从字符串中加载公钥
+	 * 
+	 * @param publicKeyStr
+	 *            公钥数据字符串
+	 * @throws Exception
+	 *             加载公钥时产生的异常
+	 */
+	public void loadPublicKey(String publicKeyStr) throws Exception {
+		try {
+			byte[] buffer = Base64.decode(publicKeyStr);
+			KeyFactory keyFactory = KeyFactory.getInstance("RSA");
+			X509EncodedKeySpec keySpec = new X509EncodedKeySpec(buffer);
+			this.publicKey = (RSAPublicKey) keyFactory.generatePublic(keySpec);
+		} catch (NoSuchAlgorithmException e) {
+			throw new Exception("无此算法");
+		} catch (InvalidKeySpecException e) {
+			throw new Exception("公钥非法");
+		} catch (NullPointerException e) {
+			throw new Exception("公钥数据为空");
+		}
+	}
+
+	/**
+	 * 从文件中加载私钥
+	 * 
+	 * @param keyFileName
+	 *            私钥文件名
+	 * @return 是否成功
+	 * @throws Exception
+	 */
+	public void loadPrivateKey(InputStream in) throws Exception {
+		try {
+			BufferedReader br = new BufferedReader(new InputStreamReader(in));
+			String readLine = null;
+			StringBuilder sb = new StringBuilder();
+			while ((readLine = br.readLine()) != null) {
+				if (readLine.charAt(0) == '-') {
+					continue;
+				} else {
+					sb.append(readLine);
+					sb.append('\r');
+				}
+			}
+			loadPrivateKey(sb.toString());
+		} catch (IOException e) {
+			throw new Exception("私钥数据读取错误");
+		} catch (NullPointerException e) {
+			throw new Exception("私钥输入流为空");
+		}
+	}
+
+	public void loadPrivateKey(String privateKeyStr) throws Exception {
+		try {
+			byte[] buffer = Base64.decode(privateKeyStr);
+			PKCS8EncodedKeySpec keySpec = new PKCS8EncodedKeySpec(buffer);
+			KeyFactory keyFactory = KeyFactory.getInstance("RSA");
+			this.privateKey = (RSAPrivateKey) keyFactory.generatePrivate(keySpec);
+		} catch (NoSuchAlgorithmException e) {
+			throw new Exception("无此算法");
+		} catch (InvalidKeySpecException e) {
+			throw new Exception("私钥非法");
+		} catch (NullPointerException e) {
+			throw new Exception("私钥数据为空");
+		}
+	}
+
+	/**
+	 * 加密过程
+	 * 
+	 * @param publicKey
+	 *            公钥
+	 * @param plainTextData
+	 *            明文数据
+	 * @return
+	 * @throws Exception
+	 *             加密过程中的异常信息
+	 */
+	public byte[] encrypt(RSAPublicKey publicKey, byte[] plainTextData) throws Exception {
+
+		Cipher cipher = null;
+		if (publicKey == null) {
+			throw new Exception("加密公钥为空, 请设置");
+		}
+
+		try {
+			cipher = Cipher.getInstance("RSA");
+			cipher.init(Cipher.ENCRYPT_MODE, publicKey);
+			byte[] output = cipher.doFinal(plainTextData);
+			return output;
+		} catch (NoSuchAlgorithmException e) {
+			throw new Exception("无此加密算法");
+		} catch (NoSuchPaddingException e) {
+			logger.error(e);
+			return null;
+		} catch (InvalidKeyException e) {
+			throw new Exception("加密公钥非法,请检查");
+		} catch (IllegalBlockSizeException e) {
+			throw new Exception("明文长度非法");
+		} catch (BadPaddingException e) {
+			throw new Exception("明文数据已损坏");
+		}
+	}
+
+	public byte[] encryptBigData(RSAPublicKey publicKey, byte[] plainTextData) throws Exception {
+		byte[][] splitedData = ByteManager.spliteByteArray(plainTextData);
+		byte[][] encryptSplited = new byte[splitedData.length][];
+
+		for (int i = 0; i < splitedData.length; i++) {
+			encryptSplited[i] = encrypt(publicKey, splitedData[i]);
+		}
+		byte[] encryptData = ByteManager.getIntegrationBytes(encryptSplited);
+		return encryptData;
+	}
+
+	/**
+	 * 解密过程
+	 * 
+	 * @param privateKey
+	 *            私钥
+	 * @param cipherData
+	 *            密文数据
+	 * @return 明文
+	 * @throws Exception
+	 *             解密过程中的异常信息
+	 */
+	public byte[] decrypt(RSAPrivateKey privateKey, byte[] cipherData) throws Exception {
+		if (privateKey == null) {
+			throw new Exception("解密私钥为空, 请设置");
+		}
+		Cipher cipher = null;
+		try {
+			cipher = Cipher.getInstance("RSA");
+			cipher.init(Cipher.DECRYPT_MODE, privateKey);
+			byte[] output = cipher.doFinal(cipherData);
+			return output;
+		} catch (NoSuchAlgorithmException e) {
+			throw new Exception("无此解密算法");
+		} catch (NoSuchPaddingException e) {
+			logger.error(e);
+			return null;
+		} catch (InvalidKeyException e) {
+			throw new Exception("解密私钥非法,请检查");
+		} catch (IllegalBlockSizeException e) {
+			throw new Exception("密文长度非法");
+		} catch (BadPaddingException e) {
+			throw new Exception("密文数据已损坏");
+		}
+	}
+
+	public byte[] deEncryptBigData(RSAPrivateKey privateKey, byte[] cipherData) throws Exception {
+		byte[][] splitedData = ByteManager.spliteByteArray(cipherData);
+		byte[][] encryptSplited = new byte[splitedData.length][];
+
+		for (int i = 0; i < splitedData.length; i++) {
+			encryptSplited[i] = decrypt(privateKey, splitedData[i]);
+		}
+		byte[] plainData = ByteManager.getIntegrationBytes(encryptSplited);
+		return plainData;
+	}
+
+	/**
+	 * 字节数据转十六进制字符串
+	 * 
+	 * @param data
+	 *            输入数据
+	 * @return 十六进制内容
+	 */
+	public static String byteArrayToString(byte[] data) {
+		StringBuilder stringBuilder = new StringBuilder();
+		for (int i = 0; i < data.length; i++) {
+			// 取出字节的高四位 作为索引得到相应的十六进制标识符 注意无符号右移
+			stringBuilder.append(HEX_CHAR[(data[i] & 0xf0) >>> 4]);
+			// 取出字节的低四位 作为索引得到相应的十六进制标识符
+			stringBuilder.append(HEX_CHAR[(data[i] & 0x0f)]);
+			if (i < data.length - 1) {
+				stringBuilder.append(' ');
+			}
+		}
+		return stringBuilder.toString();
+	}
+}

File diff suppressed because it is too large
+ 382 - 0
src/main/java/com/hywa/banktest/bankframework/utils/rsa/RSAUtils.java


+ 72 - 0
src/main/java/com/hywa/banktest/bankframework/utils/rsa/RsaSign.java

@@ -0,0 +1,72 @@
+package com.hywa.banktest.bankframework.utils.rsa;
+
+import org.apache.log4j.Logger;
+
+import java.security.KeyFactory;
+import java.security.PrivateKey;
+import java.security.PublicKey;
+import java.security.spec.PKCS8EncodedKeySpec;
+import java.security.spec.X509EncodedKeySpec;
+
+/**
+ * RSA工具类
+ * 版权所有:2016-贵州精英天成科技股份有限公司
+ * 项目名称:plamsa-common   
+ *
+ * 类描述:
+ * 类名称:com.elite.common.utils.rsa.RsaSign     
+ * 创建人: xiezt 
+ * 创建时间:2016年5月6日 下午5:15:05   
+ * 修改人:
+ * 修改时间:2016年5月6日 下午5:15:05   
+ * 修改备注:   
+ * @version 1.0
+ */
+public class RsaSign {
+
+	private static Logger logger = Logger.getLogger(RsaSign.class);
+
+	public static final String SIGN_ALGORITHMS = "SHA1WithRSA";
+
+	public static String sign(String content, String privateKey) {
+		String charset = "utf-8";
+		try {
+			PKCS8EncodedKeySpec priPKCS8 = new PKCS8EncodedKeySpec(Base64.decode(privateKey));
+			KeyFactory keyf = KeyFactory.getInstance("RSA");
+			PrivateKey priKey = keyf.generatePrivate(priPKCS8);
+
+			java.security.Signature signature = java.security.Signature.getInstance(SIGN_ALGORITHMS);
+
+			signature.initSign(priKey);
+			signature.update(content.getBytes(charset));
+
+			byte[] signed = signature.sign();
+
+			return Base64.encode(signed);
+		} catch (Exception e) {
+			logger.error(e);
+		}
+		return null;
+	}
+
+	public static boolean doCheck(String content, String sign, String publicKey) {
+		try {
+			KeyFactory keyFactory = KeyFactory.getInstance("RSA");
+			byte[] encodedKey = Base64.decode(publicKey);
+			PublicKey pubKey = keyFactory.generatePublic(new X509EncodedKeySpec(encodedKey));
+
+			java.security.Signature signature = java.security.Signature.getInstance(SIGN_ALGORITHMS);
+
+			signature.initVerify(pubKey);
+			signature.update(content.getBytes("utf-8"));
+
+			boolean bverify = signature.verify(Base64.decode(sign));
+			return bverify;
+
+		} catch (Exception e) {
+			logger.error(e);
+		}
+
+		return false;
+	}
+}

+ 147 - 0
src/main/java/com/hywa/banktest/bankframework/utils/string/Sign.java

@@ -0,0 +1,147 @@
+package com.hywa.banktest.bankframework.utils.string;
+
+import org.apache.commons.codec.digest.DigestUtils;
+
+import java.io.UnsupportedEncodingException;
+import java.security.SignatureException;
+import java.util.*;
+
+/**
+ * 
+ * 版权所有:2016-贵州精英天成科技股份有限公司
+ * 项目名称:plamsa-common   
+ *
+ * 类描述:功能:公用函数类(生成签名数据)
+ * 类名称:com.elite.common.utils.string.Sign     
+ * 创建人: xiezt 
+ * 创建时间:2016年5月6日 下午4:56:01   
+ * 修改人:
+ * 修改时间:2016年5月6日 下午4:56:01   
+ * 修改备注:   
+ * @version 1.0
+ */
+
+public class Sign {
+
+	// 字符编码格式 目前支持 gbk 或 utf-8
+	public static final String INPUT_CHARSET = "utf-8";
+
+	// 签名方式
+	public static final String SIGN_TYPE = "MD5";
+
+	/**
+	 * 生成要请求给支付的秘钥
+	 * 
+	 * @param sParaTemp
+	 *            请求前的参数数组
+	 * @return String
+	 */
+	public static String buildRequestPara(Map<String, String> sParaTemp, String key) {
+		// 除去数组中的空值和签名参数
+		Map<String, String> sPara = Sign.paraFilter(sParaTemp);
+		// 生成签名结果
+		String mysign = buildRequestMysign(sPara, key);
+		return mysign;
+	}
+
+	/**
+	 * 生成签名结果
+	 * 
+	 * @param sPara
+	 *            要签名的数组
+	 * @return 签名结果字符串
+	 */
+	public static String buildRequestMysign(Map<String, String> sPara, String key) {
+		String prestr = Sign.createLinkString(sPara); // 把数组所有元素,按照“参数=参数值”的模式用“&”字符拼接成字符串
+		String mysign = "";
+		if (Sign.SIGN_TYPE.equals("MD5")) {
+			mysign = Sign.sign(prestr, key, Sign.INPUT_CHARSET);
+		}
+		return mysign;
+	}
+
+	/**
+	 * 除去数组中的空值和签名参数
+	 * 
+	 * @param sArray
+	 *            签名参数组
+	 * @return 去掉空值与签名参数后的新签名参数组
+	 */
+	public static Map<String, String> paraFilter(Map<String, String> sArray) {
+		Map<String, String> result = new LinkedHashMap<String, String>();
+		if (sArray == null || sArray.size() <= 0) {
+			return result;
+		}
+		for (String key : sArray.keySet()) {
+			String value = sArray.get(key);
+			if (value == null || "".equals(value)) {
+				continue;
+			}
+			result.put(key, value);
+		}
+		return result;
+	}
+
+	/**
+	 * 把数组所有元素排序,并按照“参数=参数值”的模式用“&”字符拼接成字符串
+	 * 
+	 * @param params
+	 *            需要排序并参与字符拼接的参数组
+	 * @return 拼接后字符串
+	 */
+	public static String createLinkString(Map<String, String> params) {
+		List<String> keys = new ArrayList<String>(params.keySet());
+		Collections.sort(keys);
+		StringBuffer prestr = new StringBuffer("");
+		for (int i = 0; i < keys.size(); i++) {
+			String key = keys.get(i);
+			String value = params.get(key);
+
+			if (i == keys.size() - 1) {// 拼接时,不包括最后一个&字符
+				prestr.append(key)//
+						.append("=")//
+						.append(value);
+			} else {
+				prestr.append(key)//
+						.append("=")//
+						.append(value)//
+						.append("&");
+			}
+		}
+		return prestr.toString();
+	}
+
+	/**
+	 * 签名字符串
+	 * 
+	 * @param text
+	 *            需要签名的字符串
+	 * @param key
+	 *            密钥
+	 * @param input_charset
+	 *            编码格式
+	 * @return 签名结果
+	 */
+	public static String sign(String text, String key, String input_charset) {
+		text = text + key;
+		return DigestUtils.md5Hex(getContentBytes(text, input_charset));
+	}
+
+	/**
+	 * @param content
+	 * @param charset
+	 * @return
+	 * @throws SignatureException
+	 * @throws UnsupportedEncodingException
+	 */
+	private static byte[] getContentBytes(String content, String charset) {
+		if (charset == null || "".equals(charset)) {
+			return content.getBytes();
+		}
+		try {
+			return content.getBytes(charset);
+		} catch (UnsupportedEncodingException e) {
+			throw new RuntimeException("MD5签名过程中出现错误,指定的编码集不对,您目前指定的编码集是:" + charset);
+		}
+	}
+}

+ 160 - 0
src/main/java/com/hywa/banktest/bankframework/utils/string/StrUtil.java

@@ -0,0 +1,160 @@
+package com.hywa.banktest.bankframework.utils.string;
+
+import org.apache.commons.lang3.StringUtils;
+import org.apache.commons.logging.Log;
+import org.apache.commons.logging.LogFactory;
+
+import java.util.UUID;
+import java.util.regex.Matcher;
+import java.util.regex.Pattern;
+
+/**
+ * 
+ * 版权所有:2016-贵州精英天成科技股份有限公司
+ * 项目名称:plamsa-common   
+ *
+ * 类描述:字符串工具类.
+ * 类名称:com.elite.common.utils.string.StrUtil     
+ * 创建人: xiezt 
+ * 创建时间:2016年5月6日 下午4:59:20   
+ * 修改人:
+ * 修改时间:2016年5月6日 下午4:59:20   
+ * 修改备注:   
+ * @version 1.0
+ */
+public final class StrUtil {
+
+	/**
+	 * logger.
+	 */
+	private static final Log LOGGER = LogFactory.getLog(StrUtil.class);
+	
+	/**
+	 * 私有构造方法,将该工具类设为单例模式.
+	 */
+	private StrUtil() {}
+
+	/**
+	 * 获取去掉横线的长度为32的UUID串.
+	 * 
+	 * @return uuid.
+	 */
+	public static String get32UUID() {
+		return UUID.randomUUID().toString().replace("-", "");
+	}
+
+	/**
+	 * 获取带横线的长度为36的UUID串.
+	 * 
+	 * @return uuid.
+	 */
+	public static String get36UUID() {
+		return UUID.randomUUID().toString();
+	}
+	
+	/**
+	 * 验证一个字符串是否完全由纯数字组成的字符串,当字符串为空时也返回false.
+	 *
+	 * @param str 要判断的字符串 .
+	 * @return true or false .
+	 */
+	public static boolean isNumeric(String str) {
+		if (StringUtils.isBlank(str)){
+			return false;
+		}else{
+			return str.matches("\\d*");
+		}
+	}
+	
+	/**
+	 * 获取字符串长度,当字符串为空时返回0.
+	 * @param str .
+	 * @return length .
+	 */
+	public static int strLength(String str){
+		if (StringUtils.isBlank(str)){
+			return 0;
+		}else{
+			return str.length();
+		}
+	}
+	
+	/**
+	 * 获取字符串的长度,如果有中文,则每个中文字符计为3位 ,当字符串为空时返回0.
+	 * 
+	 * @param str 字符串 .
+	 * @return 字符串的长度 .
+	 */
+	public static int strLengthCn(String str)
+	{
+		if (StringUtils.isBlank(str)){
+			return 0;
+		}
+		int valueLength = 0;
+		final String chinese = "[\u0391-\uFFE5]";
+		/* 获取字段值的长度,如果含中文字符,则每个中文字符长度为2,否则为1 */
+		for (int num = 0; num < str.length(); num++){
+			/* 获取一个字符 */
+			final String temp = str.substring(num, num + 1);
+			/* 判断是否为中文字符 */
+			if (temp.matches(chinese)){
+				/* 中文字符长度为3 */
+				valueLength += 3;
+			} else{
+				/* 其他字符长度为1 */
+				valueLength += 1;
+			}
+		}
+		return valueLength;
+	}
+	
+	/**
+	 * 校验E-mail格式是否正确,为空时返回false.<br/>
+	 * @return true or false .
+	 */
+	public static boolean isEmail(String email) {
+		if (StringUtils.isBlank(email)){
+			return false;
+		}
+		String regex = "^\\s*\\w+(?:\\.{0,1}[\\w-]+)*@[a-zA-Z0-9]+(?:[-.][a-zA-Z0-9]+)*\\.[a-zA-Z]+\\s*$";
+		Pattern p = Pattern.compile(regex);
+		Matcher m = p.matcher(email);
+		return m.find();
+	}
+	
+	/**
+	 * 去除html代码(HTML过滤还可以使用jsoup工具包进行处理).
+	 * @param inputString 含html标签的字符串 .
+	 * @return 文本字符串 .
+	 */
+	public static String htmlToText(String inputString) {
+		String htmlStr = inputString; // 含html标签的字符串
+		try {
+			// 定义script的正则表达式{或<script[^>]*?>[\\s\\S]*?<\\/script>
+			String regEx_script = "<[\\s]*?script[^>]*?>[\\s\\S]*?<[\\s]*?\\/[\\s]*?script[\\s]*?>";
+			// 定义style的正则表达式{或<style[^>]*?>[\\s\\S]*?<\\/style>
+			String regEx_style = "<[\\s]*?style[^>]*?>[\\s\\S]*?<[\\s]*?\\/[\\s]*?style[\\s]*?>";
+			String regEx_html = "<[^>]+>"; // 定义HTML标签的正则表达式
+			String patternStr = "\\s+";
+			// 过滤script标签
+			Pattern p_script = Pattern.compile(regEx_script, Pattern.CASE_INSENSITIVE);
+			Matcher m_script = p_script.matcher(htmlStr);
+			htmlStr = m_script.replaceAll("");
+			// 过滤style标签
+			Pattern p_style = Pattern.compile(regEx_style, Pattern.CASE_INSENSITIVE);
+			Matcher m_style = p_style.matcher(htmlStr);
+			htmlStr = m_style.replaceAll("");
+			// 过滤html标签
+			Pattern p_html = Pattern.compile(regEx_html, Pattern.CASE_INSENSITIVE);
+			Matcher m_html = p_html.matcher(htmlStr);
+			htmlStr = m_html.replaceAll("");
+			// 过滤空格
+			Pattern p_ba = Pattern.compile(patternStr, Pattern.CASE_INSENSITIVE);
+			Matcher m_ba = p_ba.matcher(htmlStr);
+			htmlStr = m_ba.replaceAll("");
+		} catch (Exception e) {
+			LOGGER.error("=== HtmlToText exception: " + e.getMessage());
+		}
+		return htmlStr; // 返回文本字符串
+	}
+}

+ 586 - 0
src/main/java/com/hywa/banktest/bankframework/utils/string/StringTools.java

@@ -0,0 +1,586 @@
+
+package com.hywa.banktest.bankframework.utils.string;
+
+
+import com.hywa.banktest.bankframework.utils.validate.ValidateUtils;
+import org.apache.log4j.Logger;
+import org.springframework.util.DigestUtils;
+
+import java.io.ByteArrayOutputStream;
+import java.io.IOException;
+import java.io.InputStream;
+import java.io.UnsupportedEncodingException;
+import java.text.DecimalFormat;
+import java.text.Format;
+import java.util.Arrays;
+import java.util.List;
+
+
+public final class StringTools {
+
+	private static Logger logger = Logger.getLogger(StringTools.class);
+
+	/**
+	 * 判断某个字符串是否包含在某个数组中。如果数组为null则返回false
+	 * 
+	 * @param str
+	 * @param array
+	 * @return
+	 */
+	public static boolean isContainsString(String str, String[] array) {
+		if (array == null) {
+			return false;
+		}
+		for (String s : array) {
+			if (s.equals(str)) {
+				return true;
+			}
+		}
+		return false;
+	}
+
+	private StringTools() {
+	}
+
+	private static final char hex[] = { '0', '1', '2', '3', '4', '5', '6', '7', '8', '9', 'a', 'b', 'c', 'd', 'e', 'f' };
+	private static final Format numformat = new DecimalFormat("#.##");
+	private static final String zeros = "00000000000000000000";
+
+	/**
+	 * 需要进行过滤并替换的sql字符
+	 */
+	private static final String[][] sqlhandles = { { "'", "''" }, { "\\\\", "\\\\\\\\" } };
+
+	public static String listingString(Object data) {
+		return listingString(data, true);
+	}
+
+	public static String listingString(Object data, boolean snapped) {
+		StringBuilder sb = new StringBuilder(100);
+		sb.append(data.getClass().getSimpleName()).append("[");
+		try {
+			boolean flag = false;
+			boolean isstring = true;
+			Object obj = null;
+			String str = "";
+			for (java.lang.reflect.Method m : data.getClass().getDeclaredMethods()) {
+				if ((m.getName().startsWith("get") || m.getName().startsWith("is")) && m.getParameterTypes().length == 0) {
+					int l = m.getName().startsWith("get") ? 3 : 2;
+					obj = m.invoke(data);
+					if (snapped && obj == null)
+						continue;
+					isstring = obj instanceof String;
+					if (!isstring && snapped) {
+						if (obj instanceof Number && ((Number) obj).intValue() == 0)
+							continue;
+						if (obj instanceof Boolean && ((Boolean) obj) == false)
+							continue;
+					}
+					str = isstring ? ("\"" + obj + "\"") : String.valueOf(obj);
+					if (flag)
+						sb.append(", ");
+					sb.append(m.getName().substring(l).toLowerCase()).append("=").append(str);
+					flag = true;
+				}
+			}
+		} catch (Exception e) {
+			logger.error(e);
+		}
+		sb.append("]");
+		return sb.toString();
+	}
+
+	public static String subString(String t, int size) {
+		if (t == null)
+			return null;
+		int hansize = size * 3 / 2;
+		int len = hansize;
+		if (t.length() > size) {
+			int p = 0;
+			for (int i = 0; i < hansize && i < t.length(); i++) {
+				if (t.charAt(i) > 127)
+					p++;
+			}
+			len -= p * 2 / 3;
+			if (len < size)
+				len = size;
+			if (t.length() <= len)
+				return t;
+			return t.substring(0, len) + "...";
+		}
+		return t;
+	}
+
+	/**
+	 * 返回全局唯一序列号,模拟Sql Server的newid()函数功能
+	 */
+	public static String createSequence() {
+		return java.util.UUID.randomUUID().toString().replace("-", "");
+	}
+
+	/**
+	 * 转换成用B,KB,MB,GB,TB单位来表示的大小
+	 */
+	public static String formatFileLength(long sizes) {
+		if (sizes < 0)
+			sizes = 0;
+		String str = "";
+		if (sizes < 1024) { // 小于1KB
+			str += "" + sizes + "B";
+		} else if (sizes < 1024 * 1024) { // 小于1MB
+			str += "" + numformat.format(sizes / 1024.0) + "K";
+		} else if (sizes < 1024 * 1024 * 1024) { // 小于1GB
+			str += "" + numformat.format(sizes / (1024 * 1024.0)) + "M";
+		} else if (sizes < 1024 * 1024 * 1024 * 1024L) { // 小于1TB
+			str += "" + numformat.format(sizes / (1024 * 1024 * 1024.0)) + "G";
+		} else { // 大于1TB
+			str += "" + numformat.format(sizes / (1024 * 1024 * 1024 * 1024.0)) + "T";
+		}
+		for (int i = 0; i < 8 - str.length(); i++) {
+			str = " " + str;
+		}
+		return str;
+	}
+
+	/**
+	 * 把指定byte数组转换成16进制的字符串
+	 */
+	public static String toHexString(byte[] bytes) {
+		StringBuilder sb = new StringBuilder(bytes.length * 2);
+		for (byte b : bytes) {
+			sb.append(hex[((b >> 4) & 0xF)]).append(hex[((b >> 0) & 0xF)]);
+		}
+		return sb.toString();
+	}
+
+	/**
+	 * 把指定16进制的字符串转换成byte数组
+	 */
+	public static byte[] hexStringToBytes(String inString) {
+		int fromLen = inString.length();
+		int toLen = (fromLen + 1) / 2;
+		final byte[] b = new byte[toLen];
+		for (int i = 0; i < toLen; i++) {
+			b[i] = (byte) hexPairToInt(inString.substring(i * 2, (i + 1) * 2));
+		}
+		return b;
+	}
+
+	/**
+	 * 将数组进行排序然后再组成字符串
+	 * 
+	 * @param totalStringList
+	 * @return
+	 */
+	public static String ArrayToSortString(List<String> totalStringList) {
+		StringBuffer str = new StringBuffer("");
+
+		if (totalStringList != null && totalStringList.size() > 0) {
+			String[] strs = totalStringList.toArray(new String[totalStringList.size()]);
+			Arrays.sort(strs);
+			for (String s : strs) {
+				str.append(s);
+			}
+		}
+		return str.toString();
+	}
+
+	/**
+	 * 把指定cid字符串转换成byte数组
+	 */
+	public static byte[] convertStringCid2Bytes(String sCid) {
+		byte[] cid = new byte[20];
+		for (int i = 0; i < cid.length; i++) {
+			cid[i] = (byte) Integer.parseInt(sCid.substring(i * 2, i * 2 + 2), 16);
+		}
+		return cid;
+	}
+
+	/**
+	 * 在指定字符串数组里查找指定字符串,找到则返回索引号,找不到返回-1
+	 */
+	public static int search(String no, String[] noes) {
+		for (int i = 0; i < noes.length; i++) {
+			if (no.equals(noes[i]))
+				return i;
+		}
+		return -1;
+	}
+
+	private static int hexPairToInt(String inString) {
+		String digits = "0123456789abcdef";
+		String s = inString.toLowerCase();
+		int n = 0;
+		int thisDigit = 0;
+		int sLen = s.length();
+		if (sLen > 2)
+			sLen = 2;
+		for (int i = 0; i < sLen; i++) {
+			thisDigit = digits.indexOf(s.substring(i, i + 1));
+			if (thisDigit < 0)
+				throw new NumberFormatException();
+			if (i == 0)
+				thisDigit *= 0x10;
+			n += thisDigit;
+		}
+		return n;
+	}
+
+	public static String read(InputStream in, String charset) throws IOException {
+		int pos = -1;
+		byte[] buf = new byte[1024 * 8];
+		ByteArrayOutputStream out = new ByteArrayOutputStream();
+		while ((pos = in.read(buf)) != -1) {
+			out.write(buf, 0, pos);
+		}
+		return (charset == null) ? new String(out.toByteArray()) : new String(out.toByteArray(), charset);
+	}
+
+	public static String read(InputStream in) throws IOException {
+		return read(in, null);
+	}
+
+	/**
+	 * 转换成js代码
+	 */
+	public static final String escapeJs(String unicode) {
+		return org.apache.commons.lang3.StringEscapeUtils.escapeEcmaScript(unicode);
+	}
+
+	/**
+	 * 对字符进行URL编码。客户端使用js的decodeURIComponent进行解码
+	 * 
+	 * @param str
+	 *            字符串源码
+	 * @return URL编码后的字符串
+	 */
+	public static String encodeURL(String str) {
+		try {
+			return java.net.URLEncoder.encode(str, "utf-8").replaceAll("\\+", "%20");
+		} catch (Exception ex) {
+			return "";
+		}
+	}
+
+	/**
+	 * 对url进行解码
+	 * 
+	 * @param str
+	 * @return
+	 */
+	public static String decodeURL(String str) {
+		try {
+			return java.net.URLDecoder.decode(str, "utf-8");
+		} catch (Exception ex) {
+			return "";
+		}
+	}
+
+	/**
+	 * 转换成html代码
+	 */
+	public static final String escapeHtml(String unicode) {
+		return org.apache.commons.lang3.StringEscapeUtils.escapeHtml4(unicode);
+	}
+
+	/**
+	 * 判断字符串是否为空
+	 */
+	public static boolean isEmpty(String str) {
+		return str == null || str.trim().isEmpty();
+	}
+
+	/**
+	 * 判断字符串是否为非空
+	 */
+	public static boolean isNotEmpty(String str) {
+		return str != null && !str.trim().isEmpty();
+	}
+
+	/**
+	 * 将字符串中可能包含有非法的sql字符进行过滤,例如过滤'。
+	 * 
+	 * @param str
+	 *            需要进行过滤的字符串
+	 * @return 过滤后的安全字符串
+	 */
+	public static final String escapeSql(String str) {
+		if (str == null) {
+			return "";
+		}
+		for (String[] ss : sqlhandles) {
+			str = str.replaceAll(ss[0], ss[1]);
+		}
+		return str;
+	}
+
+	/**
+	 * 将数值转换成特定长度的字符串
+	 * 
+	 * @param value
+	 * @param length
+	 * @return
+	 */
+	public static String toLenString(long value, int length) {
+		String val = value + "";
+		if (val.length() > length) {
+			try {
+				throw new Exception("定义的长度小于数值的长度。");
+			} catch (Exception e) {
+				logger.error(e);
+			}
+		}
+		if (val.length() < length) {
+			return zeros.substring(0, length - val.length()) + val;
+		} else {
+			return val;
+		}
+	}
+
+	/**
+	 * 将字符串中可能包含有非法的sql字符进行过滤,例如过滤'。
+	 * 
+	 * @param obj
+	 *            过滤对象
+	 * @return 过滤后的安全字符串
+	 */
+	public static final String escapeSql(Object obj) {
+		if (obj == null) {
+			return "";
+		}
+		return escapeSql(obj.toString());
+	}
+
+	/**
+	 * 将对象安全转换成int类型,失败时返回0
+	 * 
+	 * @param o
+	 *            目标对象
+	 * @return int数字
+	 */
+	public static int safeToInt(Object o) {
+		int rs = 0;
+		try {
+			rs = Integer.parseInt(o.toString());
+		} catch (Exception ex) {
+			rs = 0;
+		}
+		return rs;
+	}
+
+	/**
+	 * 将对象安全转换成short类型
+	 * 
+	 * @param o
+	 *            目标对象
+	 * @return short数字
+	 */
+	public static int safeToShort(Object o) {
+		short rs = 0;
+		try {
+			rs = Short.parseShort(o.toString());
+		} catch (Exception ex) {
+			rs = 0;
+		}
+		return rs;
+	}
+
+	/**
+	 * 将对象安全转换成long类型
+	 * 
+	 * @param o
+	 *            目标对象
+	 * @return long数字
+	 */
+	public static long safeToLong(Object o) {
+		long rs = 0;
+		try {
+			rs = Long.parseLong(o.toString());
+		} catch (Exception ex) {
+			rs = 0;
+		}
+		return rs;
+	}
+
+	/**
+	 * 将对象安全转换成double类型
+	 * 
+	 * @param o
+	 *            目标对象
+	 * @return double数字
+	 */
+	public static double safeToDouble(Object o) {
+		double rs = 0;
+		try {
+			rs = Double.parseDouble(o.toString());
+		} catch (Exception ex) {
+			rs = 0;
+		}
+		return rs;
+	}
+
+	/**
+	 * 得到系统的时间戳
+	 */
+	public static String getTradeSn() {
+		return "" + new java.util.Date().getTime();
+	}
+
+	/**
+	 * 尝试将对象转换成double类型,如果失败时也不抛出异常而返回0
+	 * 
+	 * @param fieldValue
+	 * @return
+	 */
+	public static double tryParseDouble(Object fieldValue) {
+		try {
+			double rs = (Double) fieldValue;
+			return rs;
+		} catch (Exception ex) {
+			try {
+				return Double.parseDouble(fieldValue.toString());
+			} catch (Exception exx) {
+				return 0;
+			}
+		}
+	}
+
+	/**
+	 * 用md5算法对字符串进行加密
+	 * 
+	 * @param source
+	 * @param key
+	 * @return
+	 */
+	public static String encodeByMD5(String source, String key) {
+		if (source == null)
+			return null;
+		try {
+			return DigestUtils.md5DigestAsHex((source + key).getBytes("UTF-8"));
+		} catch (UnsupportedEncodingException e) {
+			return "";
+		}
+	}
+
+	/**
+	 * 将手机号码中的中间四位转换成*
+	 * 
+	 * @param src
+	 * @return
+	 */
+	public static String phoneChange(String src) {
+		if (src == null || src.trim().length() <= 0) {
+			return "";
+		}
+		StringBuffer tempStr = new StringBuffer();
+		int srcLength = src.length();
+		for (int i = 0; i < srcLength; i++) {
+			if (i > 2 && i < 7) {
+				tempStr.append("*");
+			} else {
+				tempStr.append(src.charAt(i));
+			}
+		}
+		return tempStr.toString();
+	}
+
+	/**
+	 * 将银行卡号限前4后3中间用****填充
+	 * 
+	 * 
+	 * @param src
+	 * @return
+	 */
+	public static String bankNoChange(String src) {
+		if (src == null || src.trim().length() <= 0) {
+			return "";
+		}
+		return src.substring(0, 4) + "****" + src.substring(src.length() - 3, src.length());
+	}
+
+	/**
+	 * 将真实姓名限前**后1个名字
+	 * 
+	 * 
+	 * @param src
+	 * @return
+	 */
+	public static String realNameChange(String src) {
+		if (src == null || src.trim().length() <= 0) {
+			return "";
+		}
+		return "**" + src.charAt(src.length() - 1);
+	}
+
+	/**
+	 * 将收款人按长度前面用**显示
+	 * 
+	 * @param src
+	 * @return
+	 */
+	public static String PayeeNameChange(String src) {
+		if (src == null || src.trim().length() <= 0) {
+			return "";
+		}
+		StringBuffer mark = new StringBuffer("");
+		if (src.trim().length() > 7) {
+			for (int i = 0; i < src.trim().length() - 4; i++) {
+				mark.append("*");
+			}
+			return src.substring(0, 4) + mark;
+		}
+		if (src.trim().length() > 3) {
+			for (int i = 0; i < src.trim().length() - 2; i++) {
+				mark.append("*");
+			}
+			return src.substring(0, 2) + mark;
+		}
+		if (src.trim().length() > 1) {
+			for (int i = 0; i < src.trim().length() - 1; i++) {
+				mark.append("*");
+			}
+			return src.substring(0, 1) + mark;
+		}
+		return src.substring(0, 1) + "*";
+	}
+
+	/**
+	 * 将身份证号限前4后4中间用****填充
+	 * 
+	 * 
+	 * @param src
+	 * @return
+	 */
+	public static String idCardChange(String src) {
+		if (src == null || src.trim().length() <= 0) {
+			return "";
+		}
+		return src.substring(0, 4) + "****" + src.substring(src.length() - 4, src.length());
+	}
+
+	/**
+	 * 将email限前4后4中间用****填充
+	 * 
+	 * 
+	 * @param src
+	 * @return
+	 */
+	public static String emailChange(String src) {
+		if (src == null || src.trim().length() <= 0) {
+			return "";
+		}
+		return src.substring(0, 4) + "****" + src.substring(src.length() - 4, src.length());
+	}
+
+	/**
+	 * 去空格
+	 * 
+	 * @param param
+	 * @return
+	 */
+	public static String stringToTrim(String param) {
+		return ValidateUtils.isEmpty(param) ? "" : param.trim();
+
+	}
+
+}

+ 540 - 0
src/main/java/com/hywa/banktest/bankframework/utils/string/StringUtil.java

@@ -0,0 +1,540 @@
+package com.hywa.banktest.bankframework.utils.string;
+
+import java.text.DecimalFormat;
+import java.text.DecimalFormatSymbols;
+import java.text.ParseException;
+import java.text.SimpleDateFormat;
+import java.util.*;
+
+/**
+ * 
+ * 版权所有:2016-贵州精英天成科技股份有限公司
+ * 项目名称:plamsa-common   
+ *
+ * 类描述:字符串工具类
+ * 类名称:com.elite.common.utils.string.StringUtil     
+ * 创建人: xiezt 
+ * 创建时间:2016年5月6日 下午4:58:47   
+ * 修改人:
+ * 修改时间:2016年5月6日 下午4:58:47   
+ * 修改备注:   
+ * @version 1.0
+ */
+public class StringUtil extends StringUtilParent {
+	/**
+	 * 判断字符串是否为空
+	 * 
+	 * @param str
+	 * @return
+	 */
+	public static boolean isNotNull(String str) {
+		if (str != null && !"".equals(str.trim())) {
+			return true;
+		} else {
+			return false;
+		}
+	}
+
+	/**
+	 * 判断对象是否为空
+	 * 
+	 * @param str
+	 * @return
+	 */
+	public static boolean isNotNull(Object obj) {
+		if (obj != null && obj.toString() != null && !"".equals(obj.toString().trim())) {
+			return true;
+		} else {
+			return false;
+		}
+	}
+
+	/**
+	 * 判断字符串是否为空(自动截取首尾空白)
+	 * 
+	 * @param str
+	 *            源字符串
+	 * @return
+	 */
+	public static boolean isEmpty(String str) {
+		return isEmpty(str, true);
+	}
+
+	/**
+	 * 判断字符串是否为空
+	 * 
+	 * @param str
+	 *            源字符串
+	 * @param trim
+	 *            是否截取首尾空白
+	 * @return
+	 */
+	public static boolean isEmpty(String str, boolean trim) {
+		return str == null ? true : "".equals(str.trim());
+	}
+
+	/**
+	 * @param str
+	 *            the string need to be parsed
+	 * @param delim
+	 *            the delimiter to seperate created by zqf at 6/1/2013
+	 */
+	public static String[] parseToArray(String str, String delim) {
+		ArrayList arr = new ArrayList();
+		StringTokenizer st = new StringTokenizer(str, delim);
+		while (st.hasMoreTokens()) {
+			arr.add(st.nextToken());
+		}
+		String[] ret = new String[arr.size()];
+		for (int i = 0; i < arr.size(); i++) {
+			ret[i] = (String) arr.get(i);
+		}
+		return ret;
+	}
+
+	/**
+	 * replace a old substring with rep in str
+	 * 
+	 * @param str
+	 *            the string need to be replaced
+	 * @param old
+	 *            the string need to be removed
+	 * @param rep
+	 *            the string to be inserted
+	 * @return string replaced
+	 */
+	public static String replace(String str, String old, String rep) {
+		if ((str == null) || (old == null) || (rep == null)) {// if one is null
+																// return ""
+			return "";
+		}
+		int index = str.indexOf(old);
+		if ((index < 0) || "".equals(old)) { // if no old string found or
+												// nothing to replace,return the
+												// origin
+			return str;
+		}
+		StringBuffer strBuf = new StringBuffer(str);
+		while (index >= 0) { // found old part
+			strBuf.delete(index, index + old.length());
+			strBuf.insert(index, rep);
+			index = strBuf.toString().indexOf(old);
+		}
+		return strBuf.toString();
+	}
+
+	/**
+	 * 带逗号分隔的数字转换为NUMBER类型
+	 * 
+	 * @param str
+	 * @return
+	 * @throws ParseException
+	 */
+	public static Number stringToNumber(String str) throws ParseException {
+		if (str == null || "".equals(str)) {
+			return null;
+		}
+		DecimalFormatSymbols dfs = new DecimalFormatSymbols();
+		dfs.setDecimalSeparator('.');
+		dfs.setGroupingSeparator(',');
+		dfs.setMonetaryDecimalSeparator('.');
+		DecimalFormat df = new DecimalFormat("###,###,###,###.##", dfs);
+		return df.parse(str);
+	}
+
+	public static String getExtensionName(String filename) {
+		if ((filename != null) && (filename.length() > 0)) {
+			int dot = filename.lastIndexOf('.');
+			if ((dot > -1) && (dot < (filename.length() - 1))) {
+				return filename.substring(dot + 1);
+			}
+		}
+		return filename;
+	}
+
+	/**
+	 * 用于字符串替换
+	 * 
+	 * @param target
+	 *            目标对象 需要替换的字符串
+	 * @param replacement
+	 *            要替换的字符串
+	 * @param value
+	 *            替换的值
+	 * @return
+	 */
+	public static String replacement(String target, String replacement, String value) {
+		if (target != null)
+			return target.replace(replacement, value);
+		return null;
+	}
+
+	/**
+	 * 判断字符串是否为数字
+	 * 
+	 * @param str
+	 * @return
+	 */
+	public static boolean isNumeric(String str) {
+		if (str == null || str.length() == 0) {
+			return false;
+		}
+		for (int i = 0; i < str.length(); i++) {
+			if (!Character.isDigit(str.charAt(i))) {
+				return false;
+			}
+		}
+		return true;
+	}
+
+	/**
+	 * 计算指定时间与当前时间的差
+	 * 
+	 * @param date
+	 * @return
+	 */
+	public static String convDateToString(Date date) {
+		Long time = new Date().getTime() - date.getTime();
+		Long min = time / 1000 / 60;
+		if (min < 5) {
+			return "刚刚";
+		} else if (min >= 5 && min < 60) {
+			return min + "分钟之前";
+		} else if (min >= 60 && min < 1440) {
+			return min / 60 + "小时之前";
+		} else if (min >= 1440 && min < 10080) {
+			return min / 60 / 24 + "天之前";
+		} else if (min >= 10080 && min < 40320) {
+			return min / 60 / 24 / 7 + "周之前";
+		} else if (min >= 40320 && min < 525600) {
+			return min / 60 / 24 / 7 / 4 + "月之前";
+		} else if (min >= 525600) {
+			return min / 60 / 24 / 365 + "年之前";
+		}
+		return null;
+	}
+
+	/**
+	 * @description 获取当前服务器日期
+	 * @return
+	 */
+	public static String getCurrdate(String formatStr) {
+		Calendar cal = Calendar.getInstance();
+		SimpleDateFormat formatter = new SimpleDateFormat(formatStr);
+		String mDateTime = formatter.format(cal.getTime());
+		return mDateTime;
+	}
+
+	/**
+	 * 将Object值转换成Double类型
+	 * 
+	 * @param value
+	 * @return
+	 */
+	public static double getDoubleByObj(Object value) {
+		if (value == null) {
+			return 0;
+		}
+		return Double.valueOf(String.valueOf(value));
+	}
+
+	/**
+	 * 将Object值转换成Float类型
+	 * 
+	 * @param value
+	 * @return
+	 */
+	public static float getFloatByObj(Object value) {
+		if (value == null) {
+			return 0;
+		}
+		return Float.valueOf(String.valueOf(value));
+	}
+
+	/**
+	 * 将Object值转换成Integer类型
+	 * 
+	 * @param value
+	 * @return
+	 */
+	public static Integer getIntegerByObj(Object value) {
+		if (value == null) {
+			return 0;
+		}
+		return Integer.valueOf(String.valueOf(value));
+	}
+
+	/**
+	 * 解析字符串 ---> 去掉字符串中回车、换行、空格
+	 * 
+	 * @param str
+	 *            被解析字符串
+	 * @return String 解析后的字符串
+	 */
+	public static String parse(String str) {
+		return str.replaceAll("\n", "").replaceAll("chr(13)", "").replaceAll(" ", "");
+	}
+
+	public static Integer[] Str2Integers(String value) {
+		if (null == value || !org.springframework.util.StringUtils.hasText(value)) {
+			return null;
+		}
+		String[] values = value.split(",");
+		Integer[] v = new Integer[values.length];
+		for (int i = 0; i < values.length; i++) {
+			v[i] = Integer.parseInt(values[i]);
+		}
+		return v;
+	}
+
+	public static String[] Str2Strings(String value) {
+		if (null == value || !org.springframework.util.StringUtils.hasText(value)) {
+			return null;
+		}
+		String[] values = value.split(",");
+		String[] v = new String[values.length];
+		for (int i = 0; i < values.length; i++) {
+			v[i] = values[i];
+		}
+		return v;
+	}
+
+	public static int strFormateInt(Object obj) {
+		if (isNotNull(obj)) {
+			return "是".equals(obj) ? 1 : 0;
+		} else {
+			return 0;
+		}
+	}
+
+	/**
+	 * 获取UUID
+	 * 
+	 * @return UUID
+	 */
+	public static String getUUID() {
+
+		return (UUID.randomUUID() + "").replaceAll("-", "");
+	}
+
+	/**
+	 * 将字符串转移为ASCII码
+	 * 
+	 * @param cnStr
+	 * @return
+	 */
+	public static String getCnASCII(String cnStr) {
+		StringBuffer strBuf = new StringBuffer();
+		byte[] bGBK = cnStr.getBytes();
+		for (int i = 0; i < bGBK.length; i++) {
+			// System.out.println(Integer.toHexString(bGBK[i]&0xff));
+			strBuf.append(Integer.toHexString(bGBK[i] & 0xff));
+		}
+		return strBuf.toString();
+	}
+
+	/**
+	 * 
+	 * @param initCode
+	 *            初始化编码
+	 * @param length
+	 *            需要生成编码长度
+	 * @param ind
+	 *            地增量
+	 * @return 递增后的编码
+	 */
+	public static String getNextCode(String initCode, int length, int ind) {
+		Integer temp = Integer.parseInt(initCode);
+		temp = temp + ind;
+		String tempCode = temp.toString();
+		int tempLen = 0;
+		if (tempCode.length() < length) {
+			tempLen = length - tempCode.length();
+		}
+		for (int i = 0; i < tempLen; i++) {
+			tempCode = "0" + tempCode;
+		}
+		return tempCode;
+	}
+
+	public static int switchNumber(String str) {
+		char c = str.charAt(0);
+		int temp = 0;
+		switch (c) {
+		// 数值
+		case '〇':
+		case '零':
+			temp = 0;
+			break;
+		case '一':
+			temp = 1;
+			break;
+		case '二':
+			temp = 2;
+			break;
+		case '三':
+			temp = 3;
+			break;
+		case '四':
+			temp = 4;
+			break;
+		case '五':
+			temp = 5;
+			break;
+		case '六':
+			temp = 6;
+			break;
+		case '七':
+			temp = 7;
+			break;
+		case '八':
+			temp = 8;
+			break;
+		case '九':
+			temp = 9;
+			break;
+		// 单位,前缀是单数字
+		case '十':
+			temp = 10;
+			break;
+		}
+		return temp;
+	}
+
+	/**
+	 * 中文数字转换为阿拉伯数
+	 * 
+	 * @param String
+	 *            s
+	 */
+	public static int cnNumToInt(String s) {
+		int result = 0;
+		int yi = 1;// 记录高级单位
+		int wan = 1;// 记录高级单位
+		int ge = 1;// 记录单位
+		char c = s.charAt(0);
+		int temp = 0;// 记录数值
+		switch (c) {
+		// 数值
+		case '〇':
+		case '零':
+			temp = 0;
+			break;
+		case '一':
+			temp = 1 * ge * wan * yi;
+			ge = 1;
+			break;
+		case '二':
+			temp = 2 * ge * wan * yi;
+			ge = 1;
+			break;
+		case '三':
+			temp = 3 * ge * wan * yi;
+			ge = 1;
+			break;
+		case '四':
+			temp = 4 * ge * wan * yi;
+			ge = 1;
+			break;
+		case '五':
+			temp = 5 * ge * wan * yi;
+			ge = 1;
+			break;
+		case '六':
+			temp = 6 * ge * wan * yi;
+			ge = 1;
+			break;
+		case '七':
+			temp = 7 * ge * wan * yi;
+			ge = 1;
+			break;
+		case '八':
+			temp = 8 * ge * wan * yi;
+			ge = 1;
+			break;
+		case '九':
+			temp = 9 * ge * wan * yi;
+			ge = 1;
+			break;
+		// 单位,前缀是单数字
+		case '十':
+			ge = 10;
+			break;
+		case '百':
+			ge = 100;
+			break;
+		case '千':
+			ge = 1000;
+			break;
+		// 高级单位,前缀可以是多个数字
+		case '万':
+			wan = 10000;
+			ge = 1;
+			break;
+		case '亿':
+			yi = 100000000;
+			wan = 1;
+			ge = 1;
+			break;
+		default:
+			return -1;
+		}
+		result += temp;
+		if (ge > 1) {
+			result += 1 * ge * wan * yi;
+		}
+		return result;
+	}
+
+	public static String geneStrAry(String str, String splits) {
+		if (StringUtil.isEmpty(str))
+			return "";
+		String[] ary = str.split(splits);
+		StringBuffer sb = new StringBuffer("");
+		for (int i = 0; i < ary.length; i++) {
+			sb.append("'");
+			sb.append(ary[i]);
+			sb.append("'");
+			if (i < ary.length - 1)
+				sb.append(",");
+		}
+		return sb.toString();
+	}
+
+	public static boolean equals(String str1, String str2) {
+		return str1 == null ? false : str2 == null ? true : str1.equals(str2);
+	}
+
+	public static boolean equalsIgnoreCase(String str1, String str2) {
+		return str1 == null ? false : str2 == null ? true : str1.equalsIgnoreCase(str2);
+	}
+
+	/**
+	 * 
+	 * @param obj
+	 *            传数值类型的obj
+	 * @param format
+	 * @return
+	 */
+	public static String decimalFormat(Object obj) {
+		if (null == obj)
+			return "";
+		DecimalFormat df = new DecimalFormat("0.00");
+		return df.format(obj);
+	}
+
+	/**
+	 * 
+	 * @param obj
+	 *            传数值类型的obj
+	 * @param format
+	 * @return
+	 */
+	public static String decimalFormat(Object obj, String format) {
+		if (null == obj)
+			return "";
+		DecimalFormat df = new DecimalFormat(format);
+		return df.format(obj);
+	}
+
+}

File diff suppressed because it is too large
+ 1 - 0
src/main/java/com/hywa/banktest/bankframework/utils/string/StringUtilParent.java


File diff suppressed because it is too large
+ 89 - 0
src/main/java/com/hywa/banktest/bankframework/utils/validate/IDCardUtils.java


+ 33 - 0
src/main/java/com/hywa/banktest/bankframework/utils/validate/RegularUtil.java

@@ -0,0 +1,33 @@
+package com.hywa.banktest.bankframework.utils.validate;
+
+import java.util.regex.Pattern;
+
+/**
+ * 
+ * 版权所有:2016-贵州精英天成科技股份有限公司
+ * 项目名称:plamsa-common   
+ *
+ * 类描述:正则表达式验证
+ * 类名称:com.elite.common.utils.validate.RegularUtil     
+ * 创建人: xiezt 
+ * 创建时间:2016年5月6日 下午4:48:50   
+ * 修改人:
+ * 修改时间:2016年5月6日 下午4:48:50   
+ * 修改备注:   
+ * @version 1.0
+ */
+public class RegularUtil {
+
+	/**
+	 * 正则表达式验证
+	 * @Title: validatePattern
+	 * @Description: TODO(这里用一句话描述这个方法的作用)
+	 * @param regular
+	 * @param input
+	 * @return
+	 */
+	public static Boolean validatePattern(String regular, String input) {
+		Pattern p = Pattern.compile(regular);
+		return p.matcher(input).matches();
+	}
+}

File diff suppressed because it is too large
+ 618 - 0
src/main/java/com/hywa/banktest/bankframework/utils/validate/ValidateUtils.java


+ 121 - 0
src/main/java/com/hywa/banktest/common/AjaxJson.java

@@ -0,0 +1,121 @@
+package com.hywa.banktest.common;
+
+import com.alibaba.fastjson.JSON;
+
+import java.util.Collection;
+
+
+/**
+ * 请求返回 数据封装
+ * by  yfw 
+ * */
+
+public class AjaxJson {
+
+	public static final Integer SUCCESS = 0;
+	public static final Integer FAILURE = 1;
+	public static final String  MSGSUCCESS = "操作成功!";
+	public static final String  MSGFAILURE = "操作失败!";
+	public static final String DEAL_CLEARING_APPLY_SUCCESS="处理客户打款请求成功!";
+	
+	/**
+	 * code 0:成功 ,1:失败
+	 * */
+	private Integer code = SUCCESS;
+	
+	/**
+	 * 返回提示消息
+	 * **/
+	private String msg = "success";
+	/**
+	 * 返回对象数据
+	 *
+	 * */
+	private Object data;
+	/**
+	 * 
+	 * 总条数
+	 * 选填
+	 * */
+	private  Integer  total =SUCCESS;
+
+	public void setTotal(Integer total) {
+		this.total = total;
+	}
+
+	public AjaxJson(Object data){
+		this.data = data;
+		
+	}
+	
+	public AjaxJson(Object data, Integer total){
+		this.data = data;
+		this.total = total;
+		
+	}
+	
+
+	public AjaxJson(Integer code, String msg, Object data) {
+		super();
+		this.code = code;
+		this.msg = msg;
+		this.data = data;
+	}
+
+	
+	public AjaxJson(Integer code, String msg) {
+		super();
+		this.code = code;
+		this.msg = msg;
+	}
+
+	public AjaxJson(ResponseEnum responseEnum){
+		super();
+		this.code=  responseEnum.getCode();
+		this.msg = responseEnum.getMsg();
+	}
+	
+	public AjaxJson(){}
+	
+	@Override
+	public String toString() {
+		
+		if(null ==this.data) {
+			this.data = new StringBuilder("当前数据为空!");
+		}
+		return "AjaxJson [code=" + code + ", msg=" + msg + ", data=" +JSON.toJSONString(data) + ", total=" + total + "]";
+	}
+
+
+
+	public Integer getCode() {
+		return code;
+	}
+
+	public String getMsg() {
+		return msg;
+	}
+
+	public Object getData() {
+		return data;
+	}
+
+	public Integer getTotal() {
+		
+		//外部赋值的情况
+		if(this.total > 0 ) {
+			return this.total;
+		}
+		
+		//TODO 集合数据处理
+		if(data instanceof Collection<?>){
+			Collection<?> collection = (Collection<?>)data;
+			if(null !=collection && !collection.isEmpty()){
+				int size = collection.size();
+				this.total = size;
+			}
+		}
+		return this.total;
+	}
+	
+}

+ 21 - 0
src/main/java/com/hywa/banktest/common/ApplyClearingForm.java

@@ -0,0 +1,21 @@
+package com.hywa.banktest.common;
+
+import lombok.Data;
+
+import java.io.Serializable;
+
+@Data
+public class ApplyClearingForm  implements Serializable {
+
+    /**
+     * 签名字符串
+     */
+    private String signStr;
+
+    /**
+     * 清款记录ID
+     */
+    private String recordId;
+
+    private String companyType;
+}

+ 23 - 0
src/main/java/com/hywa/banktest/common/BaseMapper.java

@@ -0,0 +1,23 @@
+package com.hywa.banktest.common;
+
+import java.util.List;
+import java.util.Map;
+
+public interface BaseMapper<T,PK> {
+    int deleteByPrimaryKey(PK id);
+
+    int insert(T record);
+
+    int insertSelective(T record);
+
+    T selectByPrimaryKey(PK id);
+
+    int updateByPrimaryKeySelective(T record);
+
+    int updateByPrimaryKey(T record);
+
+    List<Map> selectByParentId(Long parentId);
+
+    List<T> selectByName(String selfName);
+
+}

+ 24 - 0
src/main/java/com/hywa/banktest/common/BaseService.java

@@ -0,0 +1,24 @@
+package com.hywa.banktest.common;
+
+import java.util.List;
+import java.util.Map;
+
+public interface BaseService<T,PK> {
+
+    int deleteById(PK id);
+
+    int insertByModel(T record);
+
+    int insertSelectiveModel(T record);
+
+    T queryById(PK id);
+
+    int updateByIdSelective(T record);
+
+    int updateById(T record);
+
+    List<Map> queryListByParentId(PK parentId);
+
+    List<T> queryModelByName(String name);
+
+}

+ 36 - 0
src/main/java/com/hywa/banktest/common/OrderInfoClearingForm.java

@@ -0,0 +1,36 @@
+package com.hywa.banktest.common;
+
+import com.hywa.banktest.entity.BaseVO;
+
+/**
+ * @ClassName OrderInfoClearingForm
+ * @Description: TODO
+ * @Author qb
+ * @Date 2020/5/14
+ * @Version V1.0
+ * @ProjectName gzcarbon2.0
+ **/
+
+public class OrderInfoClearingForm extends BaseVO {
+
+    private String orderId;
+    private String recordId;
+
+
+
+    public String getOrderId() {
+        return orderId;
+    }
+
+    public void setOrderId(String orderId) {
+        this.orderId = orderId;
+    }
+
+    public String getRecordId() {
+        return recordId;
+    }
+
+    public void setRecordId(String recordId) {
+        this.recordId = recordId;
+    }
+}

+ 37 - 0
src/main/java/com/hywa/banktest/common/ResponseEnum.java

@@ -0,0 +1,37 @@
+package com.hywa.banktest.common;
+
+/**
+ * @ClassName ResponseEnum
+ * @Description: TODO
+ * @Author qb
+ * @Date 2020/5/14
+ * @Version V1.0
+ * @ProjectName gzcarbon2.0
+ **/
+public enum ResponseEnum {
+    SUCCESS(0,"请求成功"),
+    FAIL(500,"系统错误"),
+    REQNUMNULL(501,"请求值为空"),
+    CHECKFAIL(502,"签名验证不通过"),
+    NODATA(503,"没有对应的清分数据"),
+    ERROREQUEST(504,"非法请求"),
+    CLEARMONEYERROR(505,"清分钱不对应")
+    ;
+
+    private Integer code;
+    private String msg;
+
+    ResponseEnum(int code,String msg){
+        this.code = code;
+        this.msg =msg;
+
+    }
+
+    public int getCode() {
+        return code;
+    }
+
+    public String getMsg() {
+        return msg;
+    }
+}

+ 41 - 0
src/main/java/com/hywa/banktest/common/ValidateSignUtils.java

@@ -0,0 +1,41 @@
+package com.hywa.banktest.common;
+
+import com.hywa.banktest.bankframework.utils.rsa.RSAUtils;
+import org.springframework.beans.factory.annotation.Value;
+import org.springframework.stereotype.Component;
+
+@Component("signUtils")
+public class ValidateSignUtils {
+    @Value("${ras.target.pub.key}")
+    private String targerPubKey;
+    @Value("${ras.private.key}")
+    private String privateKey;
+    @Value("${ras.public.key}")
+    private String publicKey;
+
+    @Value("${carbon.ras.privatekey}")
+    private String carbonPrivateKey;
+
+    private static final String CHARSET="UTF-8";
+
+    public boolean signVerify(String minStr,String signStr) throws Exception{
+        if(null!=signStr && !"".equals(signStr)){
+           return RSAUtils.verify(minStr.getBytes(CHARSET),targerPubKey,signStr);
+        }
+        return false;
+    }
+
+    public String sign(String minStr) throws Exception{
+        if(null!=minStr && !"".equals(minStr)){
+            return RSAUtils.sign(minStr.getBytes(CHARSET),privateKey);
+        }
+        return null;
+    }
+
+    public String signCarbon(String minStr) throws Exception{
+        if(null!=minStr && !"".equals(minStr)){
+            return RSAUtils.sign(minStr.getBytes(CHARSET),carbonPrivateKey);
+        }
+        return null;
+    }
+}

+ 31 - 0
src/main/java/com/hywa/banktest/config/ActiveRecord.java

@@ -0,0 +1,31 @@
+package com.hywa.banktest.config;
+
+import javax.annotation.PostConstruct;
+import javax.sql.DataSource;
+import org.springframework.beans.factory.annotation.Autowired;
+import org.springframework.stereotype.Component;
+import com.hywa.banktest.model._MappingKit;
+import com.jfinal.kit.PathKit;
+import com.jfinal.plugin.activerecord.ActiveRecordPlugin;
+import com.jfinal.template.source.ClassPathSourceFactory;
+
+
+@Component
+public class ActiveRecord {
+
+	@Autowired
+	DataSource dataSource;
+	
+	@PostConstruct
+	public void init(){
+		ActiveRecordPlugin arp = new ActiveRecordPlugin(dataSource);
+		arp.stop();
+		_MappingKit.mapping(arp);
+		//arp.setBaseSqlTemplatePath(PathKit.getRootClassPath() + "/sql");
+		arp.getEngine().setSourceFactory(new ClassPathSourceFactory());
+		arp.addSqlTemplate("/sql/all.sql");
+		arp.setShowSql(true);
+		arp.start();
+	}
+	
+}

+ 164 - 0
src/main/java/com/hywa/banktest/config/DruidDBConfig.java

@@ -0,0 +1,164 @@
+package com.hywa.banktest.config;
+
+import com.alibaba.druid.filter.Filter;
+import com.alibaba.druid.pool.DruidDataSource;
+import com.alibaba.druid.support.http.StatViewServlet;
+import com.alibaba.druid.support.http.WebStatFilter;
+import com.alibaba.druid.wall.WallConfig;
+import com.alibaba.druid.wall.WallFilter;
+import org.slf4j.Logger;
+import org.slf4j.LoggerFactory;
+import org.springframework.beans.factory.annotation.Autowired;
+import org.springframework.beans.factory.annotation.Value;
+import org.springframework.boot.web.servlet.FilterRegistrationBean;
+import org.springframework.boot.web.servlet.ServletRegistrationBean;
+import org.springframework.context.annotation.Bean;
+import org.springframework.context.annotation.Configuration;
+import org.springframework.context.annotation.DependsOn;
+import org.springframework.context.annotation.Primary;
+
+import javax.sql.DataSource;
+import java.sql.SQLException;
+import java.util.ArrayList;
+import java.util.List;
+
+/**
+ * Created by PrimaryKey on 17/2/4.
+ */
+@SuppressWarnings("AlibabaRemoveCommentedCode")
+@Configuration
+public class DruidDBConfig {
+    private Logger logger = LoggerFactory.getLogger(DruidDBConfig.class);
+    @Value("${spring.datasource.url}")
+    private String dbUrl;
+
+    @Value("${spring.datasource.username}")
+    private String username;
+
+    @Value("${spring.datasource.password}")
+    private String password;
+
+    @Value("${spring.datasource.driver-class-name}")
+    private String driverClassName;
+
+    @Value("${spring.datasource.initialSize}")
+    private int initialSize;
+
+    @Value("${spring.datasource.minIdle}")
+    private int minIdle;
+
+    @Value("${spring.datasource.maxActive}")
+    private int maxActive;
+
+    @Value("${spring.datasource.maxWait}")
+    private int maxWait;
+
+    @Value("${spring.datasource.timeBetweenEvictionRunsMillis}")
+    private int timeBetweenEvictionRunsMillis;
+
+    @Value("${spring.datasource.minEvictableIdleTimeMillis}")
+    private int minEvictableIdleTimeMillis;
+
+    @Value("${spring.datasource.validationQuery}")
+    private String validationQuery;
+
+    @Value("${spring.datasource.testWhileIdle}")
+    private boolean testWhileIdle;
+
+    @Value("${spring.datasource.testOnBorrow}")
+    private boolean testOnBorrow;
+
+    @Value("${spring.datasource.testOnReturn}")
+    private boolean testOnReturn;
+
+    @Value("${spring.datasource.poolPreparedStatements}")
+    private boolean poolPreparedStatements;
+
+    @Value("${spring.datasource.maxPoolPreparedStatementPerConnectionSize}")
+    private int maxPoolPreparedStatementPerConnectionSize;
+
+    @Value("${spring.datasource.filters}")
+    private String filters;
+
+    @Value("{spring.datasource.connectionProperties}")
+    private String connectionProperties;
+
+    @Autowired
+    private WallFilter wallFilter;
+
+    @Bean(initMethod = "init", destroyMethod = "close")   //声明其为Bean实例
+    @Primary  //在同样的DataSource中,首先使用被标注的DataSource
+    public DataSource dataSource() {
+        DruidDataSource datasource = new DruidDataSource();
+
+        datasource.setUrl(this.dbUrl);
+        datasource.setUsername(username);
+        datasource.setPassword(password);
+        datasource.setDriverClassName(driverClassName);
+
+        //configuration
+        datasource.setInitialSize(initialSize);
+        datasource.setMinIdle(minIdle);
+        datasource.setMaxActive(maxActive);
+        datasource.setMaxWait(maxWait);
+        datasource.setTimeBetweenEvictionRunsMillis(timeBetweenEvictionRunsMillis);
+        datasource.setMinEvictableIdleTimeMillis(minEvictableIdleTimeMillis);
+        datasource.setValidationQuery(validationQuery);
+        datasource.setTestWhileIdle(testWhileIdle);
+        datasource.setTestOnBorrow(testOnBorrow);
+        datasource.setTestOnReturn(testOnReturn);
+
+        List<Filter> filterss = new ArrayList<>();
+        filterss.add(wallFilter);
+        datasource.setProxyFilters(filterss);
+
+        datasource.setPoolPreparedStatements(poolPreparedStatements);
+        datasource.setMaxPoolPreparedStatementPerConnectionSize(maxPoolPreparedStatementPerConnectionSize);
+        try {
+            datasource.setFilters(filters);
+        } catch (SQLException e) {
+            logger.error("druid configuration initialization filter", e);
+        }
+        datasource.setConnectionProperties(connectionProperties);
+
+        return datasource;
+    }
+
+    @Bean
+    public ServletRegistrationBean druidServlet() {
+        ServletRegistrationBean reg = new ServletRegistrationBean();
+        reg.setServlet(new StatViewServlet());
+        reg.addUrlMappings("/druid/*");
+        reg.addInitParameter("allow", ""); //白名单
+        return reg;
+    }
+
+    @Bean
+    public FilterRegistrationBean filterRegistrationBean() {
+        FilterRegistrationBean filterRegistrationBean = new FilterRegistrationBean();
+        filterRegistrationBean.setFilter(new WebStatFilter());
+        filterRegistrationBean.addUrlPatterns("/*");
+        filterRegistrationBean.addInitParameter("exclusions", "*.js,*.gif,*.jpg,*.png,*.css,*.ico,/druid/*");
+        filterRegistrationBean.addInitParameter("profileEnable", "true");
+        filterRegistrationBean.addInitParameter("principalCookieName","USER_COOKIE");
+        filterRegistrationBean.addInitParameter("principalSessionName","USER_SESSION");
+        filterRegistrationBean.addInitParameter("DruidWebStatFilter","/*");
+        return filterRegistrationBean;
+    }
+    @Bean(name = "wallFilter")
+    @DependsOn("wallConfig")
+    public WallFilter wallFilter(WallConfig wallConfig){
+        WallFilter wallFilter = new WallFilter();
+        wallFilter.setConfig(wallConfig);
+        return wallFilter;
+    }
+
+    @Bean(name = "wallConfig")
+    public WallConfig wallConfig(){
+        WallConfig wallConfig = new WallConfig();
+        wallConfig.setMultiStatementAllow(true);//允许一次执行多条语句
+        wallConfig.setNoneBaseStatementAllow(true);//允许一次执行多条语句
+        return wallConfig;
+    }
+}
+

BIN
src/main/java/com/hywa/banktest/config/碳汇资金代发请算请求.png


+ 198 - 0
src/main/java/com/hywa/banktest/controller/ApplyClearingController.java

@@ -0,0 +1,198 @@
+package com.hywa.banktest.controller;
+
+import com.alibaba.fastjson.JSONObject;
+import com.hywa.banktest.bankframework.utils.StringUtils;
+import com.hywa.banktest.common.*;
+import com.hywa.banktest.entity.CheckBankVO;
+import com.hywa.banktest.entity.GetBankNo;
+import com.hywa.banktest.entity.TransRequest;
+import com.hywa.banktest.service.CarbonBankService;
+import com.hywa.banktest.service.OrderInfoService;
+import lombok.extern.slf4j.Slf4j;
+import org.springframework.beans.factory.annotation.Autowired;
+import org.springframework.beans.factory.annotation.Value;
+import org.springframework.web.bind.annotation.PostMapping;
+import org.springframework.web.bind.annotation.RequestBody;
+import org.springframework.web.bind.annotation.RequestMapping;
+import org.springframework.web.bind.annotation.RestController;
+
+import java.util.Calendar;
+
+@Slf4j
+@RestController
+@RequestMapping(value = "/clearing")
+public class ApplyClearingController  {
+
+    @Autowired
+    private ValidateSignUtils validateSignUtils;
+
+    @Autowired
+    private OrderInfoService orderInfoService;
+
+    @Autowired
+    private CarbonBankService carbonBankService;
+    @Value("spring.datasource.url")
+    private String url;
+    @PostMapping(value = "/apply")
+    public AjaxJson apply(@RequestBody ApplyClearingForm form){
+        log.info("form==============>{}",form);
+        if(null!=form && !"".equals(form.getSignStr())){
+            // 验证字符串签名
+            try {
+                if(validateSignUtils.signVerify(form.getRecordId(),form.getSignStr())){
+                	// 开始打款
+                    orderInfoService.dealClearingRecordByRid(form.getRecordId(), form.getCompanyType());
+                    return new AjaxJson(AjaxJson.SUCCESS ,AjaxJson.DEAL_CLEARING_APPLY_SUCCESS);
+                }else{
+                    return new AjaxJson(AjaxJson.FAILURE,AjaxJson.MSGFAILURE);
+                }
+            } catch (Exception e) {
+                log.info("validateSignUtils signVerify is error");
+                return new AjaxJson(AjaxJson.FAILURE,"validateSignUtils signVerify is error");
+            }
+        }
+        return new AjaxJson(AjaxJson.FAILURE,"验证字符串参数未传,请检查接口参数");
+    }
+
+
+    @PostMapping("/orApply")
+    public AjaxJson applyByOrderId(@RequestBody OrderInfoClearingForm orderInfoClearingForm){
+
+        Calendar cal= Calendar.getInstance();
+        int h=cal.get(Calendar.HOUR_OF_DAY);
+        if (h>21){
+            return new AjaxJson(ResponseEnum.ERROREQUEST);
+        }
+        log.info("orderInfoForm订单请求划款>>>>>{}", JSONObject.toJSONString(orderInfoClearingForm));
+        if (orderInfoClearingForm.getTimeStamp() == null){
+            return new AjaxJson(ResponseEnum.REQNUMNULL);
+        }
+        long time = orderInfoClearingForm.getTimeStamp();
+        long timeStamp = getTimeStamp(time);
+        if (timeStamp>60000){
+            return new AjaxJson(ResponseEnum.ERROREQUEST);
+        }
+
+        // 先进行值判断是否为空
+        if (StringUtils.isEmpty(orderInfoClearingForm.getOrderId())){
+
+            return new AjaxJson(ResponseEnum.REQNUMNULL);
+        }
+        if (StringUtils.isEmpty(orderInfoClearingForm.getSignStr())){
+
+            return new AjaxJson(ResponseEnum.REQNUMNULL);
+        }
+        //组装数据
+        boolean flag = false;
+        //验证字符串签名
+        try {
+            flag = validateSignUtils.signVerify(time+"|"+orderInfoClearingForm.getRecordId()+"|"+orderInfoClearingForm.getOrderId(), orderInfoClearingForm.getSignStr());
+        } catch (Exception e) {
+            return new AjaxJson(ResponseEnum.FAIL);
+        }
+        if (flag){
+
+            int i = orderInfoService.dealClearingRecordByRid(orderInfoClearingForm.getRecordId(),orderInfoClearingForm.getCompanyType());
+            if (i==2){
+                return new AjaxJson(ResponseEnum.CLEARMONEYERROR);
+            }
+            return new AjaxJson(ResponseEnum.SUCCESS);
+        }
+        return new AjaxJson(ResponseEnum.CHECKFAIL);
+
+    }
+
+    @PostMapping("/check")
+    public AjaxJson checkBankNo(@RequestBody CheckBankVO checkBankVO){
+        checkBankVO.setCompanyType("1");
+        log.info("------请求银行卡验证---{}",JSONObject.toJSONString(checkBankVO));
+        if (checkBankVO.getTimeStamp()==null||StringUtils.isEmpty(checkBankVO.getSignStr())){
+            return new AjaxJson(AjaxJson.FAILURE,AjaxJson.MSGFAILURE);
+        }
+        long timeStamp = checkBankVO.getTimeStamp();
+        long sc = getTimeStamp(timeStamp);
+        if (sc>60000){
+            return new AjaxJson(AjaxJson.FAILURE,AjaxJson.MSGFAILURE);
+        }
+        String strSign = checkBankVO.getSignStr();
+        String farmerPid = checkBankVO.getFarmerPid();
+        String farmerAccount = checkBankVO.getFarmerAccount();
+        if (StringUtils.isEmpty(farmerAccount)||StringUtils.isEmpty(farmerPid)){
+            return new AjaxJson(AjaxJson.FAILURE,AjaxJson.MSGFAILURE);
+        }
+        boolean flag = false;
+        try {
+            flag = validateSignUtils.signVerify(timeStamp + "|" + farmerPid + "|" + farmerAccount, strSign);
+        } catch (Exception e) {
+            log.info("------系统异常---{}",JSONObject.toJSONString(checkBankVO));
+            return new AjaxJson(AjaxJson.FAILURE,AjaxJson.MSGFAILURE);
+        }
+        if (flag){
+
+           return carbonBankService.checkBankCard(checkBankVO);
+        }
+        return  new AjaxJson(ResponseEnum.CHECKFAIL);
+
+
+    }
+
+    @PostMapping("/bankNum")
+    public AjaxJson getBankNum(@RequestBody GetBankNo getBankNo){
+        log.info("------请求银行卡余额数量---{}",JSONObject.toJSONString(getBankNo));
+        if (getBankNo==null||StringUtils.isEmpty(getBankNo.getSignStr())){
+            return new AjaxJson(AjaxJson.FAILURE,AjaxJson.MSGFAILURE);
+        }
+        long timeStamp = getBankNo.getTimeStamp();
+        long sc = getTimeStamp(timeStamp);
+        if (sc>60000){
+            return new AjaxJson(AjaxJson.FAILURE,AjaxJson.MSGFAILURE);
+        }
+        String strSign = getBankNo.getSignStr();
+        boolean flag = false;
+        try {
+            flag = validateSignUtils.signVerify(timeStamp + "|gzth$12345", strSign);
+        } catch (Exception e) {
+            log.info("------系统异常---{}",JSONObject.toJSONString(getBankNo));
+            return new AjaxJson(AjaxJson.FAILURE,AjaxJson.MSGFAILURE);
+        }
+        if (flag){
+            return carbonBankService.findCardNumMoney(getBankNo);
+
+        }
+        return  new AjaxJson(ResponseEnum.CHECKFAIL);
+
+
+    }
+    public long getTimeStamp(long timeStamp){
+        long endTime = System.currentTimeMillis();
+        long sc = endTime - timeStamp;
+        return sc;
+    }
+
+    public AjaxJson getApp(@RequestBody TransRequest transRequest) {
+
+        // 先进行值判断是否为空
+        if (StringUtils.isEmpty(transRequest.getRecord())){
+
+            return new AjaxJson(AjaxJson.FAILURE ,AjaxJson.MSGFAILURE);
+        }
+        if (StringUtils.isEmpty(transRequest.getSignStr())){
+
+            return new AjaxJson(AjaxJson.FAILURE ,AjaxJson.MSGFAILURE);
+        }
+        //组装数据
+        boolean flag = false;
+        //验证字符串签名
+        try {
+            flag = validateSignUtils.signVerify(transRequest.getRecord()+"|"+transRequest.getTransVos().size(), transRequest.getSignStr());
+        } catch (Exception e) {
+            return new AjaxJson(ResponseEnum.FAIL);
+        }
+        if (flag){
+            return new AjaxJson(AjaxJson.SUCCESS ,AjaxJson.DEAL_CLEARING_APPLY_SUCCESS);
+        }
+        return new AjaxJson(AjaxJson.FAILURE ,AjaxJson.MSGFAILURE);
+
+    }
+}
+

+ 37 - 0
src/main/java/com/hywa/banktest/dao/ClearingRecordDetailMapper.java

@@ -0,0 +1,37 @@
+package com.hywa.banktest.dao;
+
+import com.hywa.banktest.common.BaseMapper;
+import com.hywa.banktest.entity.ClearingRecordDetail;
+import org.apache.ibatis.annotations.Param;
+
+import java.util.List;
+
+/**
+ * @author xiezt
+ */
+public interface ClearingRecordDetailMapper extends BaseMapper<ClearingRecordDetail,String> {
+
+    /**
+     * 通过清款记录Id查询清款记录明细
+     * @param fkId
+     * @return
+     */
+    List<ClearingRecordDetail> getClearingRecordDetailFkId(@Param("id") String fkId);
+
+    int updateClearingRecordCompanyId(@Param("clearId") String clearId,@Param("code") String code);
+
+    /**
+     * 更新清款记录明细信息
+     * @param detail
+     * @return
+     */
+    int updateClearingRecordDetailInfoByRid(ClearingRecordDetail detail);
+
+    /**
+     * 批量更新清款订单明细名单
+     * @param detailList
+     * @return
+     */
+    int batchUpdateCleearingRecordDetail(List<ClearingRecordDetail> detailList);
+
+}

+ 16 - 0
src/main/java/com/hywa/banktest/dao/ClearingRecordMapper.java

@@ -0,0 +1,16 @@
+package com.hywa.banktest.dao;
+
+import com.hywa.banktest.common.BaseMapper;
+import com.hywa.banktest.entity.ClearingRecord;
+import org.apache.ibatis.annotations.Param;
+
+import java.util.List;
+
+public interface ClearingRecordMapper extends BaseMapper<ClearingRecord,String> {
+    /**
+     * 获取清款ftp上传文件名
+     * @param checkTime
+     * @return
+     */
+    List<String> getBankClearingFilesByTimed(@Param("checkTime") String checkTime);
+}

+ 49 - 0
src/main/java/com/hywa/banktest/dao/OrderInfoMapper.java

@@ -0,0 +1,49 @@
+package com.hywa.banktest.dao;
+
+import com.hywa.banktest.bankframework.pack.TransVo;
+import com.hywa.banktest.common.BaseMapper;
+import com.hywa.banktest.entity.OrderInfo;
+import org.apache.ibatis.annotations.Param;
+
+import java.math.BigDecimal;
+import java.util.List;
+import java.util.Map;
+
+public interface OrderInfoMapper extends BaseMapper<OrderInfo,String> {
+
+    int updateOrderStatusByFarmerId(Map params);
+
+    /**
+     * 查询可
+     * @param map
+     * @return
+     */
+    List<Map> queryTransFarmerOrderInfo(Map map);
+
+    /**
+     * 查询有订单记录农户信息,为验证测试打款使用
+     * @return
+     */
+    List<Map> queryTransFarmerForTest();
+
+
+    /**
+     * 批量更新订单详情信息状态,通过清款明细ID
+     * @param list
+     * @return
+     */
+    int batchUpdateOrderInfo(List<TransVo> list);
+
+    /**
+     * 由于发送银行打款请求失败,批量更新订单详情信息
+     * @param list
+     * @return
+     */
+    int batchUpdateOrderInfoForFail(List<TransVo> list);
+
+    int updateAllClearDetail(List<TransVo> list);
+
+
+    BigDecimal clearingMoney(@Param("ids") List<String> ids);
+
+}

+ 8 - 0
src/main/java/com/hywa/banktest/dao/PaymentLogMapper.java

@@ -0,0 +1,8 @@
+package com.hywa.banktest.dao;
+
+import com.hywa.banktest.common.BaseMapper;
+import com.hywa.banktest.entity.PaymentLog;
+
+public interface PaymentLogMapper extends BaseMapper<PaymentLog,Integer> {
+
+}

+ 11 - 0
src/main/java/com/hywa/banktest/dao/PaymentRecordMapper.java

@@ -0,0 +1,11 @@
+package com.hywa.banktest.dao;
+
+import com.hywa.banktest.common.BaseMapper;
+import com.hywa.banktest.entity.PaymentRecord;
+
+import java.util.List;
+
+public interface PaymentRecordMapper extends BaseMapper<PaymentRecord,Integer> {
+
+    int batchInsertModel(List<PaymentRecord> list);
+}

+ 15 - 0
src/main/java/com/hywa/banktest/dao/TreeOrdersMapper.java

@@ -0,0 +1,15 @@
+package com.hywa.banktest.dao;
+
+
+import com.hywa.banktest.entity.TreeOrder;
+
+public interface TreeOrdersMapper {
+
+
+
+
+    TreeOrder selectByPrimaryKey(String id);
+
+
+
+}

+ 33 - 0
src/main/java/com/hywa/banktest/entity/BaseVO.java

@@ -0,0 +1,33 @@
+package com.hywa.banktest.entity;
+
+import java.io.Serializable;
+
+public class BaseVO implements Serializable {
+    private String signStr;
+    private Long timeStamp;
+    private String companyType;
+
+    public String getCompanyType() {
+        return companyType;
+    }
+
+    public void setCompanyType(String companyType) {
+        this.companyType = companyType;
+    }
+
+    public String getSignStr() {
+        return signStr;
+    }
+
+    public void setSignStr(String signStr) {
+        this.signStr = signStr;
+    }
+
+    public Long getTimeStamp() {
+        return timeStamp;
+    }
+
+    public void setTimeStamp(Long timeStamp) {
+        this.timeStamp = timeStamp;
+    }
+}

+ 50 - 0
src/main/java/com/hywa/banktest/entity/CheckBankVO.java

@@ -0,0 +1,50 @@
+package com.hywa.banktest.entity;
+
+public class CheckBankVO extends BaseVO{
+    private String farmerId;
+    private String farmerAccount;
+    private String farmerName;
+    private String farmerAccType;
+    private String farmerPid;
+
+
+    public String getFarmerId() {
+        return farmerId;
+    }
+
+    public void setFarmerId(String farmerId) {
+        this.farmerId = farmerId;
+    }
+
+    public String getFarmerAccount() {
+        return farmerAccount;
+    }
+
+    public void setFarmerAccount(String farmerAccount) {
+        this.farmerAccount = farmerAccount;
+    }
+
+    public String getFarmerName() {
+        return farmerName;
+    }
+
+    public void setFarmerName(String farmerName) {
+        this.farmerName = farmerName;
+    }
+
+    public String getFarmerAccType() {
+        return farmerAccType;
+    }
+
+    public void setFarmerAccType(String farmerAccType) {
+        this.farmerAccType = farmerAccType;
+    }
+
+    public String getFarmerPid() {
+        return farmerPid;
+    }
+
+    public void setFarmerPid(String farmerPid) {
+        this.farmerPid = farmerPid;
+    }
+}

+ 96 - 0
src/main/java/com/hywa/banktest/entity/ClearingRecord.java

@@ -0,0 +1,96 @@
+package com.hywa.banktest.entity;
+
+import java.math.BigDecimal;
+import java.util.Date;
+
+public class ClearingRecord {
+    private String id;
+
+    private String clearingUser;
+
+    private Date clearingTimed;
+
+    private BigDecimal clearingMoney;
+
+    private Integer clearingNum;
+
+    private String bankClearingStatus;
+
+    private String bankClearingMsg;
+
+    private String bankClearingFile;
+
+    private Integer status;
+
+    public String getId() {
+        return id;
+    }
+
+    public void setId(String id) {
+        this.id = id == null ? null : id.trim();
+    }
+
+    public String getClearingUser() {
+        return clearingUser;
+    }
+
+    public void setClearingUser(String clearingUser) {
+        this.clearingUser = clearingUser == null ? null : clearingUser.trim();
+    }
+
+    public Date getClearingTimed() {
+        return clearingTimed;
+    }
+
+    public void setClearingTimed(Date clearingTimed) {
+        this.clearingTimed = clearingTimed;
+    }
+
+    public BigDecimal getClearingMoney() {
+        return clearingMoney;
+    }
+
+    public void setClearingMoney(BigDecimal clearingMoney) {
+        this.clearingMoney = clearingMoney;
+    }
+
+    public Integer getClearingNum() {
+        return clearingNum;
+    }
+
+    public void setClearingNum(Integer clearingNum) {
+        this.clearingNum = clearingNum;
+    }
+
+    public String getBankClearingStatus() {
+        return bankClearingStatus;
+    }
+
+    public void setBankClearingStatus(String bankClearingStatus) {
+        this.bankClearingStatus = bankClearingStatus == null ? null : bankClearingStatus.trim();
+    }
+
+    public String getBankClearingMsg() {
+        return bankClearingMsg;
+    }
+
+    public void setBankClearingMsg(String bankClearingMsg) {
+        this.bankClearingMsg = bankClearingMsg == null ? null : bankClearingMsg.trim();
+    }
+
+    public String getBankClearingFile() {
+        return bankClearingFile;
+    }
+
+    public void setBankClearingFile(String bankClearingFile) {
+        this.bankClearingFile = bankClearingFile == null ? null : bankClearingFile.trim();
+    }
+
+    public Integer getStatus() {
+        return status;
+    }
+
+    public void setStatus(Integer status) {
+        this.status = status;
+    }
+}

+ 126 - 0
src/main/java/com/hywa/banktest/entity/ClearingRecordDetail.java

@@ -0,0 +1,126 @@
+package com.hywa.banktest.entity;
+
+import java.math.BigDecimal;
+import java.util.Date;
+
+public class ClearingRecordDetail {
+    private String id;
+
+    private String fkClearingId;
+
+    private String fkFarmerId;
+
+    private String farmerName;
+
+    private String farmerAccount;
+
+    private String farmerPid;
+
+    private BigDecimal clearingMoneyDetail;
+
+    private Integer clearingState;
+
+    private Date clearingTimed;
+
+    private String bankReceiptFile;
+
+    private String bankDealState;
+
+    private String bankDealMsg;
+
+    public String getId() {
+        return id;
+    }
+
+    public void setId(String id) {
+        this.id = id == null ? null : id.trim();
+    }
+
+    public String getFkClearingId() {
+        return fkClearingId;
+    }
+
+    public void setFkClearingId(String fkClearingId) {
+        this.fkClearingId = fkClearingId == null ? null : fkClearingId.trim();
+    }
+
+    public String getFkFarmerId() {
+        return fkFarmerId;
+    }
+
+    public void setFkFarmerId(String fkFarmerId) {
+        this.fkFarmerId = fkFarmerId == null ? null : fkFarmerId.trim();
+    }
+
+    public String getFarmerName() {
+        return farmerName;
+    }
+
+    public void setFarmerName(String farmerName) {
+        this.farmerName = farmerName == null ? null : farmerName.trim();
+    }
+
+    public String getFarmerAccount() {
+        return farmerAccount;
+    }
+
+    public void setFarmerAccount(String farmerAccount) {
+        this.farmerAccount = farmerAccount == null ? null : farmerAccount.trim();
+    }
+
+    public String getFarmerPid() {
+        return farmerPid;
+    }
+
+    public void setFarmerPid(String farmerPid) {
+        this.farmerPid = farmerPid == null ? null : farmerPid.trim();
+    }
+
+    public BigDecimal getClearingMoneyDetail() {
+        return clearingMoneyDetail;
+    }
+
+    public void setClearingMoneyDetail(BigDecimal clearingMoneyDetail) {
+        this.clearingMoneyDetail = clearingMoneyDetail;
+    }
+
+    public Integer getClearingState() {
+        return clearingState;
+    }
+
+    public void setClearingState(Integer clearingState) {
+        this.clearingState = clearingState;
+    }
+
+    public Date getClearingTimed() {
+        return clearingTimed;
+    }
+
+    public void setClearingTimed(Date clearingTimed) {
+        this.clearingTimed = clearingTimed;
+    }
+
+    public String getBankReceiptFile() {
+        return bankReceiptFile;
+    }
+
+    public void setBankReceiptFile(String bankReceiptFile) {
+        this.bankReceiptFile = bankReceiptFile == null ? null : bankReceiptFile.trim();
+    }
+
+    public String getBankDealState() {
+        return bankDealState;
+    }
+
+    public void setBankDealState(String bankDealState) {
+        this.bankDealState = bankDealState == null ? null : bankDealState.trim();
+    }
+
+    public String getBankDealMsg() {
+        return bankDealMsg;
+    }
+
+    public void setBankDealMsg(String bankDealMsg) {
+        this.bankDealMsg = bankDealMsg == null ? null : bankDealMsg.trim();
+    }
+}

+ 5 - 0
src/main/java/com/hywa/banktest/entity/GetBankNo.java

@@ -0,0 +1,5 @@
+package com.hywa.banktest.entity;
+
+public class GetBankNo extends BaseVO{
+    private String password;
+}

+ 238 - 0
src/main/java/com/hywa/banktest/entity/OrderInfo.java

@@ -0,0 +1,238 @@
+package com.hywa.banktest.entity;
+
+import java.io.Serializable;
+import java.math.BigDecimal;
+import java.util.Date;
+
+public class OrderInfo implements Serializable {
+
+    private String id;
+
+    private String code;
+
+    private String orderId;
+
+    private String certificateNo;
+
+    private Date gainTime;
+
+    private String certificateimageb;
+
+    private String certificateimagea;
+
+    private String treeId;
+
+    private BigDecimal price;
+
+    private String createId;
+
+    private Date createDate;
+
+    private String updateId;
+
+    private Date updateDate;
+
+    private Integer enable;
+
+    private Integer isDel;
+
+    private String transId;
+
+    private Date paymentDate;
+
+    private String orderNo;
+
+    private String transfile;
+
+    private String transretfile;
+
+    private String transcode;
+
+    private String transmsg;
+
+    private Integer isSend;
+
+    public String getId() {
+        return id;
+    }
+
+    public void setId(String id) {
+        this.id = id == null ? null : id.trim();
+    }
+
+    public String getCode() {
+        return code;
+    }
+
+    public void setCode(String code) {
+        this.code = code == null ? null : code.trim();
+    }
+
+    public String getOrderId() {
+        return orderId;
+    }
+
+    public void setOrderId(String orderId) {
+        this.orderId = orderId == null ? null : orderId.trim();
+    }
+
+    public String getCertificateNo() {
+        return certificateNo;
+    }
+
+    public void setCertificateNo(String certificateNo) {
+        this.certificateNo = certificateNo == null ? null : certificateNo.trim();
+    }
+
+    public Date getGainTime() {
+        return gainTime;
+    }
+
+    public void setGainTime(Date gainTime) {
+        this.gainTime = gainTime;
+    }
+
+    public String getCertificateimageb() {
+        return certificateimageb;
+    }
+
+    public void setCertificateimageb(String certificateimageb) {
+        this.certificateimageb = certificateimageb == null ? null : certificateimageb.trim();
+    }
+
+    public String getCertificateimagea() {
+        return certificateimagea;
+    }
+
+    public void setCertificateimagea(String certificateimagea) {
+        this.certificateimagea = certificateimagea == null ? null : certificateimagea.trim();
+    }
+
+    public String getTreeId() {
+        return treeId;
+    }
+
+    public void setTreeId(String treeId) {
+        this.treeId = treeId == null ? null : treeId.trim();
+    }
+
+    public BigDecimal getPrice() {
+        return price;
+    }
+
+    public void setPrice(BigDecimal price) {
+        this.price = price;
+    }
+
+    public String getCreateId() {
+        return createId;
+    }
+
+    public void setCreateId(String createId) {
+        this.createId = createId == null ? null : createId.trim();
+    }
+
+    public Date getCreateDate() {
+        return createDate;
+    }
+
+    public void setCreateDate(Date createDate) {
+        this.createDate = createDate;
+    }
+
+    public String getUpdateId() {
+        return updateId;
+    }
+
+    public void setUpdateId(String updateId) {
+        this.updateId = updateId == null ? null : updateId.trim();
+    }
+
+    public Date getUpdateDate() {
+        return updateDate;
+    }
+
+    public void setUpdateDate(Date updateDate) {
+        this.updateDate = updateDate;
+    }
+
+    public Integer getEnable() {
+        return enable;
+    }
+
+    public void setEnable(Integer enable) {
+        this.enable = enable;
+    }
+
+    public Integer getIsDel() {
+        return isDel;
+    }
+
+    public void setIsDel(Integer isDel) {
+        this.isDel = isDel;
+    }
+
+    public String getTransId() {
+        return transId;
+    }
+
+    public void setTransId(String transId) {
+        this.transId = transId == null ? null : transId.trim();
+    }
+
+    public Date getPaymentDate() {
+        return paymentDate;
+    }
+
+    public void setPaymentDate(Date paymentDate) {
+        this.paymentDate = paymentDate;
+    }
+
+    public String getOrderNo() {
+        return orderNo;
+    }
+
+    public void setOrderNo(String orderNo) {
+        this.orderNo = orderNo == null ? null : orderNo.trim();
+    }
+
+    public String getTransfile() {
+        return transfile;
+    }
+
+    public void setTransfile(String transfile) {
+        this.transfile = transfile == null ? null : transfile.trim();
+    }
+
+    public String getTransretfile() {
+        return transretfile;
+    }
+
+    public void setTransretfile(String transretfile) {
+        this.transretfile = transretfile == null ? null : transretfile.trim();
+    }
+
+    public String getTranscode() {
+        return transcode;
+    }
+
+    public void setTranscode(String transcode) {
+        this.transcode = transcode == null ? null : transcode.trim();
+    }
+
+    public String getTransmsg() {
+        return transmsg;
+    }
+
+    public void setTransmsg(String transmsg) {
+        this.transmsg = transmsg == null ? null : transmsg.trim();
+    }
+
+    public Integer getIsSend() {
+        return isSend;
+    }
+
+    public void setIsSend(Integer isSend) {
+        this.isSend = isSend;
+    }
+}

+ 65 - 0
src/main/java/com/hywa/banktest/entity/PaymentLog.java

@@ -0,0 +1,65 @@
+package com.hywa.banktest.entity;
+
+import java.util.Date;
+
+public class PaymentLog {
+    private Integer sid;
+
+    private Integer paymentNum;
+
+    private Float paymentMoney;
+
+    private String responesStatus;
+
+    private String responesMsg;
+
+    private Date createTime;
+
+    public Integer getSid() {
+        return sid;
+    }
+
+    public void setSid(Integer sid) {
+        this.sid = sid;
+    }
+
+    public Integer getPaymentNum() {
+        return paymentNum;
+    }
+
+    public void setPaymentNum(Integer paymentNum) {
+        this.paymentNum = paymentNum;
+    }
+
+    public Float getPaymentMoney() {
+        return paymentMoney;
+    }
+
+    public void setPaymentMoney(Float paymentMoney) {
+        this.paymentMoney = paymentMoney;
+    }
+
+    public String getResponesStatus() {
+        return responesStatus;
+    }
+
+    public void setResponesStatus(String responesStatus) {
+        this.responesStatus = responesStatus == null ? null : responesStatus.trim();
+    }
+
+    public String getResponesMsg() {
+        return responesMsg;
+    }
+
+    public void setResponesMsg(String responesMsg) {
+        this.responesMsg = responesMsg == null ? null : responesMsg.trim();
+    }
+
+    public Date getCreateTime() {
+        return createTime;
+    }
+
+    public void setCreateTime(Date createTime) {
+        this.createTime = createTime;
+    }
+}

+ 76 - 0
src/main/java/com/hywa/banktest/entity/PaymentRecord.java

@@ -0,0 +1,76 @@
+package com.hywa.banktest.entity;
+
+import java.io.Serializable;
+import java.util.Date;
+
+public class PaymentRecord implements Serializable {
+    private Integer sid;
+
+    private String targetFarmerId;
+
+    private String targetFarmerName;
+
+    private String targetFarmerCardId;
+
+    private Date paymentTime;
+
+    private Integer paymentStatus;
+
+    private String paymentMsg;
+
+    public Integer getSid() {
+        return sid;
+    }
+
+    public void setSid(Integer sid) {
+        this.sid = sid;
+    }
+
+    public String getTargetFarmerId() {
+        return targetFarmerId;
+    }
+
+    public void setTargetFarmerId(String targetFarmerId) {
+        this.targetFarmerId = targetFarmerId == null ? null : targetFarmerId.trim();
+    }
+
+    public String getTargetFarmerName() {
+        return targetFarmerName;
+    }
+
+    public void setTargetFarmerName(String targetFarmerName) {
+        this.targetFarmerName = targetFarmerName == null ? null : targetFarmerName.trim();
+    }
+
+    public String getTargetFarmerCardId() {
+        return targetFarmerCardId;
+    }
+
+    public void setTargetFarmerCardId(String targetFarmerCardId) {
+        this.targetFarmerCardId = targetFarmerCardId == null ? null : targetFarmerCardId.trim();
+    }
+
+    public Date getPaymentTime() {
+        return paymentTime;
+    }
+
+    public void setPaymentTime(Date paymentTime) {
+        this.paymentTime = paymentTime;
+    }
+
+    public Integer getPaymentStatus() {
+        return paymentStatus;
+    }
+
+    public void setPaymentStatus(Integer paymentStatus) {
+        this.paymentStatus = paymentStatus;
+    }
+
+    public String getPaymentMsg() {
+        return paymentMsg;
+    }
+
+    public void setPaymentMsg(String paymentMsg) {
+        this.paymentMsg = paymentMsg == null ? null : paymentMsg.trim();
+    }
+}

+ 45 - 0
src/main/java/com/hywa/banktest/entity/TransRequest.java

@@ -0,0 +1,45 @@
+package com.hywa.banktest.entity;
+
+import com.hywa.banktest.bankframework.pack.TransVo;
+
+import java.io.Serializable;
+import java.util.List;
+
+/**
+ * @ClassName TransResquest
+ * @Description: TODO
+ * @Author qb
+ * @Date 2020/5/19
+ * @Version V1.0
+ * @ProjectName gzcarbon2.0
+ **/
+
+public class TransRequest implements Serializable {
+   private String record;
+   private String signStr;
+   private List<TransVo> transVos;
+
+    public String getRecord() {
+        return record;
+    }
+
+    public void setRecord(String record) {
+        this.record = record;
+    }
+
+    public String getSignStr() {
+        return signStr;
+    }
+
+    public void setSignStr(String signStr) {
+        this.signStr = signStr;
+    }
+
+    public List<TransVo> getTransVos() {
+        return transVos;
+    }
+
+    public void setTransVos(List<TransVo> transVos) {
+        this.transVos = transVos;
+    }
+}

+ 44 - 0
src/main/java/com/hywa/banktest/entity/TransResponse.java

@@ -0,0 +1,44 @@
+package com.hywa.banktest.entity;
+
+import com.hywa.banktest.bankframework.pack.Dlmaps;
+
+import java.io.Serializable;
+
+/**
+ * @ClassName TransResponse
+ * @Description: TODO
+ * @Author qb
+ * @Date 2020/5/19
+ * @Version V1.0
+ * @ProjectName gzcarbon2.0
+ **/
+
+public class TransResponse implements Serializable {
+    private String code;
+    private String msg;
+    private Dlmaps data;
+
+    public String getCode() {
+        return code;
+    }
+
+    public void setCode(String code) {
+        this.code = code;
+    }
+
+    public String getMsg() {
+        return msg;
+    }
+
+    public void setMsg(String msg) {
+        this.msg = msg;
+    }
+
+    public Dlmaps getData() {
+        return data;
+    }
+
+    public void setData(Dlmaps data) {
+        this.data = data;
+    }
+}

+ 281 - 0
src/main/java/com/hywa/banktest/entity/TreeOrder.java

@@ -0,0 +1,281 @@
+package com.hywa.banktest.entity;
+
+import java.math.BigDecimal;
+import java.util.Date;
+
+public class TreeOrder {
+    /** 主键*/
+    private String id;
+
+    /** 订单名称*/
+    private String code;
+
+    /** 证书编号*/
+    private String certificateNo;
+
+    /** 获取证日期*/
+    private Date gainTime;
+
+    /** 证书反面*/
+    private String certificateimageb;
+
+    /** 证书正面*/
+    private String certificateimagea;
+
+    /** 对应的购买者id*/
+    private String customerId;
+
+    /** 总价格*/
+    private BigDecimal totalPrice;
+
+    /** 创建人*/
+    private String createId;
+
+    /** 创建时间*/
+    private Date createDate;
+
+    /** 修改人*/
+    private String updateId;
+
+    /** 修改时间*/
+    private Date updateDate;
+
+    /** 状态:3、农户已经收到钱;2、待支付;1、已支付;0、未购;4、审核拒绝*/
+    private Integer enable;
+
+    /** 是否删除  0:未删除   1:已删除*/
+    private Integer isDel;
+
+    /** 微信支付订单号*/
+    private String transId;
+
+    /** 支付完成时间*/
+    private Date paymentDate;
+
+    /** 一起购id*/
+    private String togetherId;
+
+    /** 订单类型  0:个人  1:对公打款订单(未审核)  2:对公打款订单(待付款)  3:对公打款订单(确认打款)*/
+    private String orderType;
+
+    /** 总数量*/
+    private Long treeNum;
+
+    /** */
+    private String describe;
+
+    /** */
+    private String companyId;
+
+    /** 支付方式 offlinePay对公打款支付   wxPay微信支付*/
+    private String payMode;
+
+    /** 0: 微信购买 1: 个人实名  2 : 单位实名 */
+    private Integer isReal;
+
+    /** 审核备注信息*/
+    private String cerRemark;
+
+    /** 用户备注*/
+    private String customerRemark;
+
+    public String getId() {
+        return id;
+    }
+
+    public void setId(String id) {
+        this.id = id == null ? null : id.trim();
+    }
+
+    public String getCode() {
+        return code;
+    }
+
+    public void setCode(String code) {
+        this.code = code == null ? null : code.trim();
+    }
+
+    public String getCertificateNo() {
+        return certificateNo;
+    }
+
+    public void setCertificateNo(String certificateNo) {
+        this.certificateNo = certificateNo == null ? null : certificateNo.trim();
+    }
+
+    public Date getGainTime() {
+        return gainTime;
+    }
+
+    public void setGainTime(Date gainTime) {
+        this.gainTime = gainTime;
+    }
+
+    public String getCertificateimageb() {
+        return certificateimageb;
+    }
+
+    public void setCertificateimageb(String certificateimageb) {
+        this.certificateimageb = certificateimageb == null ? null : certificateimageb.trim();
+    }
+
+    public String getCertificateimagea() {
+        return certificateimagea;
+    }
+
+    public void setCertificateimagea(String certificateimagea) {
+        this.certificateimagea = certificateimagea == null ? null : certificateimagea.trim();
+    }
+
+    public String getCustomerId() {
+        return customerId;
+    }
+
+    public void setCustomerId(String customerId) {
+        this.customerId = customerId == null ? null : customerId.trim();
+    }
+
+    public BigDecimal getTotalPrice() {
+        return totalPrice;
+    }
+
+    public void setTotalPrice(BigDecimal totalPrice) {
+        this.totalPrice = totalPrice;
+    }
+
+    public String getCreateId() {
+        return createId;
+    }
+
+    public void setCreateId(String createId) {
+        this.createId = createId == null ? null : createId.trim();
+    }
+
+    public Date getCreateDate() {
+        return createDate;
+    }
+
+    public void setCreateDate(Date createDate) {
+        this.createDate = createDate;
+    }
+
+    public String getUpdateId() {
+        return updateId;
+    }
+
+    public void setUpdateId(String updateId) {
+        this.updateId = updateId == null ? null : updateId.trim();
+    }
+
+    public Date getUpdateDate() {
+        return updateDate;
+    }
+
+    public void setUpdateDate(Date updateDate) {
+        this.updateDate = updateDate;
+    }
+
+    public Integer getEnable() {
+        return enable;
+    }
+
+    public void setEnable(Integer enable) {
+        this.enable = enable;
+    }
+
+    public Integer getIsDel() {
+        return isDel;
+    }
+
+    public void setIsDel(Integer isDel) {
+        this.isDel = isDel;
+    }
+
+    public String getTransId() {
+        return transId;
+    }
+
+    public void setTransId(String transId) {
+        this.transId = transId == null ? null : transId.trim();
+    }
+
+    public Date getPaymentDate() {
+        return paymentDate;
+    }
+
+    public void setPaymentDate(Date paymentDate) {
+        this.paymentDate = paymentDate;
+    }
+
+    public String getTogetherId() {
+        return togetherId;
+    }
+
+    public void setTogetherId(String togetherId) {
+        this.togetherId = togetherId == null ? null : togetherId.trim();
+    }
+
+    public String getOrderType() {
+        return orderType;
+    }
+
+    public void setOrderType(String orderType) {
+        this.orderType = orderType == null ? null : orderType.trim();
+    }
+
+    public Long getTreeNum() {
+        return treeNum;
+    }
+
+    public void setTreeNum(Long treeNum) {
+        this.treeNum = treeNum;
+    }
+
+    public String getDescribe() {
+        return describe;
+    }
+
+    public void setDescribe(String describe) {
+        this.describe = describe == null ? null : describe.trim();
+    }
+
+    public String getCompanyId() {
+        return companyId;
+    }
+
+    public void setCompanyId(String companyId) {
+        this.companyId = companyId == null ? null : companyId.trim();
+    }
+
+    public String getPayMode() {
+        return payMode;
+    }
+
+    public void setPayMode(String payMode) {
+        this.payMode = payMode == null ? null : payMode.trim();
+    }
+
+    public Integer getIsReal() {
+        return isReal;
+    }
+
+    public void setIsReal(Integer isReal) {
+        this.isReal = isReal;
+    }
+
+    public String getCerRemark() {
+        return cerRemark;
+    }
+
+    public void setCerRemark(String cerRemark) {
+        this.cerRemark = cerRemark == null ? null : cerRemark.trim();
+    }
+
+    public String getCustomerRemark() {
+        return customerRemark;
+    }
+
+    public void setCustomerRemark(String customerRemark) {
+        this.customerRemark = customerRemark == null ? null : customerRemark.trim();
+    }
+}

+ 147 - 0
src/main/java/com/hywa/banktest/entity/TreeOrderDetail.java

@@ -0,0 +1,147 @@
+package com.hywa.banktest.entity;
+
+import java.io.Serializable;
+import java.util.Date;
+
+/**
+ * @ClassName TreeOrderDetail
+ * @Description: TODO
+ * @Author qb
+ * @Date 2020/5/14
+ * @Version V1.0
+ * @ProjectName gzcarbon2.0
+ **/
+
+public class TreeOrderDetail implements Serializable {
+    private String orderId;
+    private String orderInfoId;
+    private String customerId;
+    private String farmerId;
+    private String farmerName;
+    private String farmerAccount;
+    private String farmerPid;
+    private String clearingMoneyDetail;
+    private String clearingState;
+    private Date clearingTimed;
+    private String bankReceiptFile;
+    private String bankDealState;
+    private String bankDeMsg;
+
+    public String getOrderId() {
+        return orderId;
+    }
+
+    public void setOrderId(String orderId) {
+        this.orderId = orderId;
+    }
+
+    public String getOrderInfoId() {
+        return orderInfoId;
+    }
+
+    public void setOrderInfoId(String orderInfoId) {
+        this.orderInfoId = orderInfoId;
+    }
+
+    public String getCustomerId() {
+        return customerId;
+    }
+
+    public void setCustomerId(String customerId) {
+        this.customerId = customerId;
+    }
+
+    public String getFarmerId() {
+        return farmerId;
+    }
+
+    public void setFarmerId(String farmerId) {
+        this.farmerId = farmerId;
+    }
+
+    public String getFarmerName() {
+        return farmerName;
+    }
+
+    public void setFarmerName(String farmerName) {
+        this.farmerName = farmerName;
+    }
+
+    public String getFarmerAccount() {
+        return farmerAccount;
+    }
+
+    public void setFarmerAccount(String farmerAccount) {
+        this.farmerAccount = farmerAccount;
+    }
+
+    public String getFarmerPid() {
+        return farmerPid;
+    }
+
+    public void setFarmerPid(String farmerPid) {
+        this.farmerPid = farmerPid;
+    }
+
+    public String getClearingMoneyDetail() {
+        return clearingMoneyDetail;
+    }
+
+    public void setClearingMoneyDetail(String clearingMoneyDetail) {
+        this.clearingMoneyDetail = clearingMoneyDetail;
+    }
+
+    public String getClearingState() {
+        return clearingState;
+    }
+
+    public void setClearingState(String clearingState) {
+        this.clearingState = clearingState;
+    }
+
+    public Date getClearingTimed() {
+        return clearingTimed;
+    }
+
+    public void setClearingTimed(Date clearingTimed) {
+        this.clearingTimed = clearingTimed;
+    }
+
+    public String getBankReceiptFile() {
+        return bankReceiptFile;
+    }
+
+    public void setBankReceiptFile(String bankReceiptFile) {
+        this.bankReceiptFile = bankReceiptFile;
+    }
+
+    public String getBankDealState() {
+        return bankDealState;
+    }
+
+    public void setBankDealState(String bankDealState) {
+        this.bankDealState = bankDealState;
+    }
+
+    public String getBankDeMsg() {
+        return bankDeMsg;
+    }
+
+    public void setBankDeMsg(String bankDeMsg) {
+        this.bankDeMsg = bankDeMsg;
+    }
+    /**
+     * id
+     * fk_clearing_id
+     * fk_farmer_id
+     * farmer_name
+     * farmer_account
+     * farmer_pid
+     * clearing_money_detail
+     * clearing_state
+     * clearing_timed
+     * bank_receipt_file
+     * bank_deal_state
+     * bank_deal_msg
+     */
+}

+ 146 - 0
src/main/java/com/hywa/banktest/kit/DateKit.java

@@ -0,0 +1,146 @@
+package com.hywa.banktest.kit;
+
+import java.text.ParseException;
+import java.text.SimpleDateFormat;
+import java.util.Calendar;
+import java.util.Date;
+
+
+
+/**
+ * 日期工具类
+ * @author gd_xbb
+ */
+public class DateKit {
+	/**默认格式(2016-08-20)*/
+	public static final String DEFAULT_FORMAT = "yyyy-MM-dd";
+	/**详细日期格式(2016-08-20 17:30:30)*/
+	public static final String DETAIL = "yyyy-MM-dd HH:mm:ss";
+	/**带/的日期格式(2016/08/20)*/
+	public static final String FORMAT_SLASH = "yyyy/MM/dd";
+	/**中文的日期格式(2016年08月20日)*/
+	public static final String CHINESE_FORMAT = "yyyy年MM月dd日";
+	public static final String CHINESE_FORMAT_DETAIL = "yyyy年MM月dd日 HH:mm:ss";
+	/*一天 时间毫秒数*/
+	public static final long ONE_DAY_MILLIS = 1000*3600*24;
+	
+	/**
+	 * 将Date类型转换为字符串类型 
+	 * 
+	 * @param date
+	 * @param format
+	 * @return
+	 */
+	public static String formatDate(Date date, String format){
+		if (null == date){
+			return null;
+		}
+		if (StringKit.isEmpty(format)){
+			format = DEFAULT_FORMAT;
+		}
+		SimpleDateFormat sdf = new SimpleDateFormat(format);
+		return sdf.format(date);
+	}
+	
+	/**
+	 * 将String类型转换为date类型
+	 * 
+	 * @param dateStr
+	 * @param format
+	 * @return
+	 * @throws ParseException
+	 */
+	public static Date stringToDate(String dateStr, String format) throws ParseException{
+		if (StringKit.isEmpty(dateStr)){
+			return null;
+		}
+		if (StringKit.isEmpty(format)){
+			format = DEFAULT_FORMAT;
+		}
+		SimpleDateFormat sdf = new SimpleDateFormat(format);
+		return sdf.parse(dateStr);
+	}
+	
+	/**
+	 * 得到本月最开始的时间
+	 * 
+	 * @return
+	 */
+	public static Date currentMonthStart(){
+		Calendar calendar = Calendar.getInstance();
+		calendar.set(Calendar.DAY_OF_MONTH, 1);
+		calendar.set(Calendar.HOUR_OF_DAY, 0);
+		calendar.set(Calendar.MINUTE, 0);
+		calendar.set(Calendar.SECOND, 0);
+		return calendar.getTime();
+	}
+	
+	/**
+	 * 得到本月最后一刻时间
+	 * @return
+	 */
+	public static Date currentMonthEnd(){
+		Calendar calendar = Calendar.getInstance();
+		calendar.set(Calendar.DAY_OF_MONTH, calendar.getActualMaximum(Calendar.DAY_OF_MONTH));
+		calendar.set(Calendar.HOUR_OF_DAY, 23);
+		calendar.set(Calendar.MINUTE, 59);
+		calendar.set(Calendar.SECOND, 59);
+		return calendar.getTime();
+	}
+	
+	/**
+	 * 得到本年年份
+	 * @return
+	 */
+	public static int currentYear(){
+		Calendar calendar = Calendar.getInstance();
+		return calendar.get(Calendar.YEAR);
+	}
+	
+	/**
+	 * 通过生日得到年龄
+	 * @param birthDate
+	 * @return
+	 */
+	public static int getAge(Date birthDate) {
+		if (birthDate == null)
+			throw new RuntimeException("出生日期不能为null");
+		int age = 0;
+		Date now = new Date();
+		SimpleDateFormat format_y = new SimpleDateFormat("yyyy");
+		SimpleDateFormat format_M = new SimpleDateFormat("MM");
+		String birth_year = format_y.format(birthDate);
+		String this_year = format_y.format(now);
+		String birth_month = format_M.format(birthDate);
+		String this_month = format_M.format(now);
+		// 初步,估算
+		age = Integer.parseInt(this_year) - Integer.parseInt(birth_year);
+		// 如果未到出生月份,则age - 1
+		if (this_month.compareTo(birth_month) < 0)
+			age -= 1;
+		if (age < 0)
+			age = 0;
+		return age;
+	}
+	
+	
+	/**
+	 * 通过日期生成惟一主键
+	 * @return
+	 */
+	public static synchronized String generateId(){
+		return System.currentTimeMillis()+"";
+	}
+	
+	
+	public static synchronized String generateDateId(){
+		Date date = new Date();
+		String dateStr = formatDate(date, "yyyyMMddHHmmss");
+		return dateStr;
+	}
+
+	public static void main(String args[]){
+		System.out.println(generateDateId());
+	}
+	
+}

+ 146 - 0
src/main/java/com/hywa/banktest/kit/GenericsKit.java

@@ -0,0 +1,146 @@
+package com.hywa.banktest.kit;
+
+import java.lang.reflect.Field;
+import java.lang.reflect.Method;
+import java.lang.reflect.ParameterizedType;
+import java.lang.reflect.Type;
+import java.util.ArrayList;
+import java.util.List;
+
+/**
+ * 泛型工具类
+ */
+public class GenericsKit {
+	/**  
+     * 通过反射,获得指定类的父类的泛型参数的实际类型. 如BuyerServiceBean extends DaoSupport<Buyer>  
+     *  
+     * @param clazz clazz 需要反射的类,该类必须继承范型父类
+     * @param index 泛型参数所在索引,从0开始.  
+     * @return 范型参数的实际类型, 如果没有实现ParameterizedType接口,即不支持泛型,所以直接返回<code>Object.class</code>
+     */  
+    @SuppressWarnings({ "rawtypes" })
+	public static Class getSuperClassGenricType(Class clazz, int index) {    
+        Type genType = clazz.getGenericSuperclass();//得到泛型父类  
+        //如果没有实现ParameterizedType接口,即不支持泛型,直接返回Object.class   
+        if (!(genType instanceof ParameterizedType)) {
+            return Object.class;   
+        }  
+        //返回表示此类型实际类型参数的Type对象的数组,数组里放的都是对应类型的Class, 如BuyerServiceBean extends DaoSupport<Buyer,Contact>就返回Buyer和Contact类型   
+        Type[] params = ((ParameterizedType) genType).getActualTypeArguments();                   
+        if (index >= params.length || index < 0) { 
+        	 throw new RuntimeException("你输入的索引"+ (index<0 ? "不能小于0" : "超出了参数的总数"));
+        }      
+        if (!(params[index] instanceof Class)) {
+            return Object.class;   
+        }   
+        return (Class) params[index];
+    }
+	/**  
+     * 通过反射,获得指定类的父类的第一个泛型参数的实际类型. 如BuyerServiceBean extends DaoSupport<Buyer>  
+     *  
+     * @param clazz clazz 需要反射的类,该类必须继承泛型父类
+     * @return 泛型参数的实际类型, 如果没有实现ParameterizedType接口,即不支持泛型,所以直接返回<code>Object.class</code>
+     */  
+    @SuppressWarnings("rawtypes")
+	public static Class getSuperClassGenricType(Class clazz) {
+    	return getSuperClassGenricType(clazz,0);
+    }
+	/**  
+     * 通过反射,获得方法返回值泛型参数的实际类型. 如: public Map<String, Buyer> getNames(){}
+     *  
+     * @param Method method 方法
+     * @param int index 泛型参数所在索引,从0开始.
+     * @return 泛型参数的实际类型, 如果没有实现ParameterizedType接口,即不支持泛型,所以直接返回<code>Object.class</code>
+     */ 
+    @SuppressWarnings("rawtypes")
+	public static Class getMethodGenericReturnType(Method method, int index) {
+    	Type returnType = method.getGenericReturnType();
+    	if(returnType instanceof ParameterizedType){
+    	    ParameterizedType type = (ParameterizedType) returnType;
+    	    Type[] typeArguments = type.getActualTypeArguments();
+            if (index >= typeArguments.length || index < 0) { 
+            	 throw new RuntimeException("你输入的索引"+ (index<0 ? "不能小于0" : "超出了参数的总数"));
+            } 
+    	    return (Class)typeArguments[index];
+    	}
+    	return Object.class;
+    }
+	/**  
+     * 通过反射,获得方法返回值第一个泛型参数的实际类型. 如: public Map<String, Buyer> getNames(){}
+     *  
+     * @param Method method 方法
+     * @return 泛型参数的实际类型, 如果没有实现ParameterizedType接口,即不支持泛型,所以直接返回<code>Object.class</code>
+     */ 
+    @SuppressWarnings("rawtypes")
+	public static Class getMethodGenericReturnType(Method method) {
+    	return getMethodGenericReturnType(method, 0);
+    }
+	/**  
+     * 通过反射,获得方法输入参数第index个输入参数的所有泛型参数的实际类型. 如: public void add(Map<String, Buyer> maps, List<String> names){}
+     *  
+     * @param Method method 方法
+     * @param int index 第几个输入参数
+     * @return 输入参数的泛型参数的实际类型集合, 如果没有实现ParameterizedType接口,即不支持泛型,所以直接返回空集合
+     */ 
+    @SuppressWarnings("rawtypes")
+	public static List<Class> getMethodGenericParameterTypes(Method method, int index) {
+    	List<Class> results = new ArrayList<Class>();
+    	Type[] genericParameterTypes = method.getGenericParameterTypes();
+    	if (index >= genericParameterTypes.length ||index < 0) {
+             throw new RuntimeException("你输入的索引"+ (index<0 ? "不能小于0" : "超出了参数的总数"));
+        } 
+    	Type genericParameterType = genericParameterTypes[index];
+    	if(genericParameterType instanceof ParameterizedType){
+    	     ParameterizedType aType = (ParameterizedType) genericParameterType;
+    	     Type[] parameterArgTypes = aType.getActualTypeArguments();
+    	     for(Type parameterArgType : parameterArgTypes){
+    	         Class parameterArgClass = (Class) parameterArgType;
+    	         results.add(parameterArgClass);
+    	     }
+    	     return results;
+    	}
+    	return results;
+    }
+	/**  
+     * 通过反射,获得方法输入参数第一个输入参数的所有泛型参数的实际类型. 如: public void add(Map<String, Buyer> maps, List<String> names){}
+     *  
+     * @param Method method 方法
+     * @return 输入参数的泛型参数的实际类型集合, 如果没有实现ParameterizedType接口,即不支持泛型,所以直接返回空集合
+     */ 
+    @SuppressWarnings("rawtypes")
+	public static List<Class> getMethodGenericParameterTypes(Method method) {
+    	return getMethodGenericParameterTypes(method, 0);
+    }
+	/**  
+     * 通过反射,获得Field泛型参数的实际类型. 如: public Map<String, Buyer> names;
+     *  
+     * @param Field field 字段
+     * @param int index 泛型参数所在索引,从0开始.
+     * @return 泛型参数的实际类型, 如果没有实现ParameterizedType接口,即不支持泛型,所以直接返回<code>Object.class</code>
+     */ 
+    @SuppressWarnings("rawtypes")
+	public static Class getFieldGenericType(Field field, int index) {
+    	Type genericFieldType = field.getGenericType();
+    	
+    	if(genericFieldType instanceof ParameterizedType){
+    	    ParameterizedType aType = (ParameterizedType) genericFieldType;
+    	    Type[] fieldArgTypes = aType.getActualTypeArguments();
+    	    if (index >= fieldArgTypes.length || index < 0) { 
+    	    	throw new RuntimeException("你输入的索引"+ (index<0 ? "不能小于0" : "超出了参数的总数"));
+            } 
+    	    return (Class)fieldArgTypes[index];
+    	}
+    	return Object.class;
+    }
+	/**  
+     * 通过反射,获得Field泛型参数的实际类型. 如: public Map<String, Buyer> names;
+     *  
+     * @param Field field 字段
+     * @param int index 泛型参数所在索引,从0开始.
+     * @return 泛型参数的实际类型, 如果没有实现ParameterizedType接口,即不支持泛型,所以直接返回<code>Object.class</code>
+     */ 
+    @SuppressWarnings("rawtypes")
+	public static Class getFieldGenericType(Field field) {
+    	return getFieldGenericType(field, 0);
+    }
+}

+ 52 - 0
src/main/java/com/hywa/banktest/kit/SpringContext.java

@@ -0,0 +1,52 @@
+package com.hywa.banktest.kit;
+
+import org.springframework.beans.BeansException;
+import org.springframework.context.ApplicationContext;
+import org.springframework.context.ApplicationContextAware;
+import org.springframework.context.ApplicationEvent;
+import org.springframework.stereotype.Component;
+
+/**
+ * spring容器加载工具类
+ * 
+ * @author lcc
+ *
+ */
+@Component
+public class SpringContext implements ApplicationContextAware {
+
+	private static ApplicationContext context;
+
+	@Override
+	public void setApplicationContext(ApplicationContext context) throws BeansException {
+		SpringContext.setContext(context);
+	}
+
+	public static ApplicationContext getContext() {
+		return context;
+	}
+
+	private static void setContext(ApplicationContext context) {
+		SpringContext.context = context;
+	}
+
+	public static Object getBean(String beanName) {
+		Object obj = getContext().getBean(beanName);
+		return obj;
+	}
+
+	public static <T> T getBean(String beanName, Class<T> type) {
+		T obj = getContext().getBean(beanName, type);
+		return obj;
+	}
+	
+	public static <T> T getBean(Class<T> type) {
+		T obj = getContext().getBean(type);
+		return obj;
+	}
+
+	public static void pushEvent(ApplicationEvent event){
+		context.publishEvent(event);
+	}
+	
+}

+ 235 - 0
src/main/java/com/hywa/banktest/kit/SqlKit.java

@@ -0,0 +1,235 @@
+package com.hywa.banktest.kit;
+
+import java.sql.Timestamp;
+import java.util.Date;
+import java.util.List;
+import javax.servlet.http.HttpServletRequest;
+import com.jfinal.plugin.activerecord.Model;
+
+public class SqlKit {
+
+	public static class PageInfo {
+		private int page;
+		private int pageSize;
+		private String sort;
+		private String order;
+
+		public int getPage() {
+			return page;
+		}
+
+		public void setPage(int page) {
+			this.page = page;
+		}
+
+		public int getPageSize() {
+			return pageSize;
+		}
+
+		public void setPageSize(int pageSize) {
+			this.pageSize = pageSize;
+		}
+
+		public String getSort() {
+			return sort;
+		}
+
+		public void setSort(String sort) {
+			this.sort = sort;
+		}
+
+		public String getOrder() {
+			return order;
+		}
+
+		public void setOrder(String order) {
+			this.order = order;
+		}
+		
+		public static PageInfo OneResult(){
+			PageInfo pageInfo = new PageInfo();
+			pageInfo.setPageSize(1);
+			pageInfo.setPage(1);
+			return pageInfo;
+		}
+
+	}
+
+	/**
+	 * easyui表格排序信息附加
+	 * 如没有其它排序信息,则用在最末尾,否则用在其它排序函数之前
+	 * @param pageInfo
+	 * @param sqlExceptSelect
+	 */
+	public static void appendOrderInfo(PageInfo pageInfo, StringBuffer sqlExceptSelect){
+		if (StringKit.isNotEmpty(pageInfo.getSort())){
+			sqlExceptSelect.append(" order by ").append(pageInfo.getSort());
+		}
+		if (StringKit.isNotEmpty(pageInfo.getOrder())){
+			sqlExceptSelect.append( " " + pageInfo.getOrder() + " ");
+		}
+	}
+	
+	
+	public static void appendDefaultAscOrderInfo(StringBuffer sqlExceptSelect,String sort){
+		if(sqlExceptSelect.indexOf("order by") == -1){
+			sqlExceptSelect.append(" order by ").append(sort).append(" asc ");
+		}
+	}
+	
+	public static void appendDefaultDescOrderInfo(StringBuffer sqlExceptSelect,String sort){
+		if(sqlExceptSelect.indexOf("order by") == -1){
+			sqlExceptSelect.append(" order by ").append(sort).append(" desc ");
+		}
+	}
+	
+	/**
+	 * 附加等值条件查询
+	 * @param sqlExceptSelect
+	 * @param model
+	 * @param columns
+	 */
+	public static void appendEqualCondition(StringBuffer sqlExceptSelect, Model<?> model,List<Object> params, String... columns){
+		for (String column : columns){
+			Object paramValue = column.indexOf(".") == -1 
+					? model.get(column) : model.get(column.substring(column.indexOf(".") + 1));
+			if (paramValue != null){
+				if (paramValue.getClass().equals(String.class)){
+					if (StringKit.isNotEmpty(String.valueOf(paramValue))){
+						sqlExceptSelect.append(" and ").append(column).append(" =? ");
+						params.add(paramValue);
+					}
+				}
+				else if (paramValue.getClass().equals(Date.class) || paramValue.getClass().equals(Timestamp.class) || paramValue.getClass().equals(java.sql.Date.class)){
+					sqlExceptSelect.append(" and date_format(" + column + ", '%Y-%m-%d') = ? ");
+					params.add(DateKit.formatDate((Date) paramValue, DateKit.DEFAULT_FORMAT));
+				}
+				else if(paramValue.getClass().equals(Integer.class)){
+					sqlExceptSelect.append(" and ").append(column).append(" =? ");
+					params.add(paramValue);
+				}
+				else if(paramValue.getClass().equals(Boolean.class)){
+					sqlExceptSelect.append(" and ").append(column).append(" =? ");
+					params.add(paramValue);
+				}
+			}
+		}
+	}
+	
+	public static void appendEqualCondition(boolean isDynamicQuery, StringBuffer sqlExceptSelect, Model<?> model,List<Object> params, String... columns){
+		if (isDynamicQuery){
+			appendEqualCondition(sqlExceptSelect, model, params, columns);
+		}
+		else{
+			appendNotDynamicEqualCondition(sqlExceptSelect, model, params, columns);
+		}
+	}
+	
+	public static void appendNotDynamicEqualCondition(StringBuffer sqlExceptSelect, Model<?> model,List<Object> params, String... columns){
+		for (String column : columns) {
+			Object paramValue = column.indexOf(".") == -1 ? model.get(column)
+					: model.get(column.substring(column.indexOf(".") + 1));
+			if (null == paramValue){
+				sqlExceptSelect.append(" and ").append(column).append(" =? ");
+				params.add(paramValue);
+				continue;
+			}
+			if (paramValue.getClass().equals(String.class)) {
+				if (StringKit.isNotEmpty(String.valueOf(paramValue))) {
+					sqlExceptSelect.append(" and ").append(column).append(" =? ");
+					params.add(paramValue);
+				}
+			} else if (paramValue.getClass().equals(Date.class) || paramValue.getClass().equals(Timestamp.class)
+					|| paramValue.getClass().equals(java.sql.Date.class)) {
+				sqlExceptSelect.append(" and date_format(" + column + ", '%Y-%m-%d') = ? ");
+				params.add(DateKit.formatDate((Date) paramValue, DateKit.DEFAULT_FORMAT));
+			} else if (paramValue.getClass().equals(Integer.class)) {
+				sqlExceptSelect.append(" and ").append(column).append(" =? ");
+				params.add(paramValue);
+			}
+			else if (paramValue.getClass().equals(Boolean.class)) {
+				sqlExceptSelect.append(" and ").append(column).append(" =? ");
+				params.add(paramValue);
+			}
+		}
+	}
+	
+	/**
+	 * 附加like条件查询
+	 * @param sqlExceptSelect
+	 * @param model
+	 * @param params
+	 * @param columns
+	 */
+	public static void appendLikeCondition(StringBuffer sqlExceptSelect, Model<?> model,List<Object> params, String... columns){
+		for (String column : columns){
+			Object paramValue = column.indexOf(".") == -1 
+					? model.get(column) : model.get(column.substring(column.indexOf(".") + 1));
+			if (paramValue != null){
+				if (paramValue.getClass().equals(String.class)){
+					if (StringKit.isNotEmpty(String.valueOf(paramValue))){
+						sqlExceptSelect.append(" and ").append(column).append(" like ? ");
+						params.add("%" +paramValue + "%");
+					}
+				}
+			}
+		}
+	}
+	
+	public static void appendDescOrderInfo(StringBuffer sqlExceptSelect, String... columns){
+		if (columns.length == 0){
+			throw new RuntimeException("columns 参数不能空!");
+		}
+		if (-1 == sqlExceptSelect.indexOf("order")){
+			sqlExceptSelect.append(" order by " + columns[0] + " desc ");
+		}
+		else{
+			sqlExceptSelect.append(" , ").append(columns[0]).append(" desc ");
+		}
+		for (int i = 1; i < columns.length; i++) {
+			sqlExceptSelect.append(" , ").append(columns[i]).append(" desc ");
+		}
+	}
+	
+	public static void appendInCondition(StringBuffer sqlExceptSelect,List<Object> params,String columnName, String... values){
+		if (null == values || values.length == 0){
+			return;
+		}
+		else{
+			sqlExceptSelect.append(" and ").append(columnName).append("  in ( ");
+			for (int i = 0; i < values.length - 1; i ++){
+				sqlExceptSelect.append("?, ");
+				params.add(values[i]);
+			}
+			sqlExceptSelect.append("? )");params.add(values[values.length - 1]);
+		}
+	}
+	
+	public static void appendAscOrderInfo(StringBuffer sqlExceptSelect, String... columns){
+		if (columns.length == 0){
+			throw new RuntimeException("columns 参数不能空!");
+		}
+		if (-1 == sqlExceptSelect.indexOf("order")){
+			sqlExceptSelect.append(" order by " + columns[0] + " asc ");
+		}
+		else{
+			sqlExceptSelect.append(" , ").append(columns[0]).append(" asc ");
+		}
+		for (int i = 1; i < columns.length; i++) {
+			sqlExceptSelect.append(" , ").append(columns[i]).append(" asc ");
+		}
+	}
+	
+	public static PageInfo getEasyUiReqestInfo(HttpServletRequest request){
+		PageInfo pageInfo = new PageInfo();
+		pageInfo.setSort(request.getParameter("sort"));
+		pageInfo.setOrder(request.getParameter("order"));
+		int page = StringKit.isInteger(request.getParameter("page")) ? Integer.valueOf(request.getParameter("page")) : 1;
+		int rows = StringKit.isInteger(request.getParameter("rows")) ? Integer.valueOf(request.getParameter("rows")) : 10;
+		rows = rows > 1000 ? 1000 : rows;
+		pageInfo.setPage(page);
+		pageInfo.setPageSize(rows);
+		return pageInfo;
+	}
+	
+}

+ 291 - 0
src/main/java/com/hywa/banktest/kit/StringKit.java

@@ -0,0 +1,291 @@
+package com.hywa.banktest.kit;
+
+import java.io.File;
+import java.math.BigDecimal;
+import java.security.MessageDigest;
+import java.security.NoSuchAlgorithmException;
+import java.util.Calendar;
+import java.util.GregorianCalendar;
+import java.util.HashMap;
+import java.util.Map;
+import java.util.Random;
+import java.util.regex.Matcher;
+import java.util.regex.Pattern;
+
+
+public final class StringKit {
+
+	final static Map<Integer, String> zoneNum = new HashMap<Integer, String>();
+    static {
+        zoneNum.put(11, "北京");
+        zoneNum.put(12, "天津");
+        zoneNum.put(13, "河北");
+        zoneNum.put(14, "山西");
+        zoneNum.put(15, "内蒙古");
+        zoneNum.put(21, "辽宁");
+        zoneNum.put(22, "吉林");
+        zoneNum.put(23, "黑龙江");
+        zoneNum.put(31, "上海");
+        zoneNum.put(32, "江苏");
+        zoneNum.put(33, "浙江");
+        zoneNum.put(34, "安徽");
+        zoneNum.put(35, "福建");
+        zoneNum.put(36, "江西");
+        zoneNum.put(37, "山东");
+        zoneNum.put(41, "河南");
+        zoneNum.put(42, "湖北");
+        zoneNum.put(43, "湖南");
+        zoneNum.put(44, "广东");
+        zoneNum.put(45, "广西");
+        zoneNum.put(46, "海南");
+        zoneNum.put(50, "重庆");
+        zoneNum.put(51, "四川");
+        zoneNum.put(52, "贵州");
+        zoneNum.put(53, "云南");
+        zoneNum.put(54, "西藏");
+        zoneNum.put(61, "陕西");
+        zoneNum.put(62, "甘肃");
+        zoneNum.put(63, "青海");
+        zoneNum.put(64, "新疆");
+        zoneNum.put(71, "台湾");
+        zoneNum.put(81, "香港");
+        zoneNum.put(82, "澳门");
+        zoneNum.put(91, "外国");
+    }
+     
+    final static int[] PARITYBIT = {'1', '0', 'X', '9', '8', '7', '6', '5', '4', '3', '2'};
+    final static int[] POWER_LIST = { 7, 9, 10, 5, 8, 4, 2, 1, 6, 3, 7, 9, 10, 5, 8, 4, 2};
+    final static char[] UPPER_LIST = {'A', 'B', 'C', 'D', 'E', 'F', 'G', 'H', 'I', 'J', 'K', 'L', 'M', 'N', 'O', 'P', 'Q', 'R', 'S', 'T', 'U', 'V', 'W', 'X', 'Y', 'Z'};
+    
+    /**
+     * 身份证验证
+     *@param s  号码内容
+     *@return 是否有效 null和"" 都是false 
+     */
+    public static boolean isIDCard(String certNo){
+        if(certNo == null || (certNo.length() != 15 && certNo.length() != 18))
+            return false;
+        final char[] cs = certNo.toUpperCase().toCharArray();
+        //校验位数
+        int power = 0;
+        for(int i=0; i<cs.length; i++){
+            if(i==cs.length-1 && cs[i] == 'X')
+                break;//最后一位可以 是X或x
+            if(cs[i]<'0' || cs[i]>'9')
+                return false;
+            if(i < cs.length -1){
+                power += (cs[i] - '0') * POWER_LIST[i];
+            }
+        }
+         
+        //校验区位码
+        if(!zoneNum.containsKey(Integer.valueOf(certNo.substring(0,2)))){
+            return false;
+        }
+         
+        //校验年份
+        String year = certNo.length() == 15 ? getIdcardCalendar() + certNo.substring(6,8) :certNo.substring(6, 10);
+         
+        final int iyear = Integer.parseInt(year);
+        if(iyear < 1900 || iyear > Calendar.getInstance().get(Calendar.YEAR))
+            return false;//1900年的PASS,超过今年的PASS
+         
+        //校验月份
+        String month = certNo.length() == 15 ? certNo.substring(8, 10) : certNo.substring(10,12);
+        final int imonth = Integer.parseInt(month);
+        if(imonth <1 || imonth >12){
+            return false;
+        }
+         
+        //校验天数      
+        String day = certNo.length() ==15 ? certNo.substring(10, 12) : certNo.substring(12, 14);
+        final int iday = Integer.parseInt(day);
+        if(iday < 1 || iday > 31)
+            return false;       
+         
+        //校验"校验码"
+        if(certNo.length() == 15)
+            return true;
+        return cs[cs.length -1 ] == PARITYBIT[power % 11];
+    }
+     
+    private static int getIdcardCalendar() {        
+         GregorianCalendar curDay = new GregorianCalendar();
+         int curYear = curDay.get(Calendar.YEAR);
+         int year2bit = Integer.parseInt(String.valueOf(curYear).substring(2));          
+         return  year2bit;
+    }     
+	
+	public static boolean isEmpty(String str) {
+		if (null == str || "".equals(str)) {
+			return true;
+		} else {
+			return false;
+		}
+	}
+
+	public static boolean isNotEmpty(String str) {
+		return !isEmpty(str);
+	}
+
+	/**
+	 * 通过文件路径得到文件后缀名。如:hello.txt得到.txt
+	 * 
+	 * @param filePath
+	 *            文件路径
+	 * @return
+	 */
+	public static String getFileSuffix(String filePath) {
+		int pointIndex = filePath.lastIndexOf(".");
+		return filePath.substring(pointIndex, filePath.length());
+	}
+
+	public static String getFileNameWithoutSuffix(File file){
+		String fileName = file.getName();
+		int pointIndex = fileName.lastIndexOf(".");
+		return fileName.substring(0, pointIndex);
+	}
+	
+	public static boolean isEmail(String str) {
+		if (StringKit.isEmpty(str)){
+			return false;
+		}
+		Pattern p = Pattern.compile("^([a-zA-Z0-9_-])+@([a-zA-Z0-9_-])+(\\.([a-zA-Z0-9_-])+)+$");
+		Matcher m = p.matcher(str);
+		return m.matches();
+	}
+
+	public static boolean isCellPhone(String str) {
+		if (isEmpty(str)) {
+			return false;
+		}
+		Pattern p = Pattern.compile("^(13[0-9]{9})|(18[0-9]{9})|(14[0-9]{9})|(17[0-9]{9})|(15[0-9]{9})$");
+		Matcher m = p.matcher(str);
+		return m.matches();
+	}
+
+	/**
+	 * 生成手机验证码
+	 * 
+	 * @return 长度为6的数字字符串
+	 */
+	public static String getVilidateCode() {
+		char[] codeSequence = { '0', '1', '2', '3', '4', '5', '6', '7', '8', '9' };
+		StringBuffer codeStr = new StringBuffer();
+		for (int i = 0; i < 6; i++) {
+			int j = (int) (Math.random() * 10);
+			codeStr.append(codeSequence[j]);
+		}
+		return codeStr.toString();
+	}
+
+	/**
+	 * MD5加密
+	 * 
+	 * @param 需要加密的字符串
+	 * @return 加密后的字符串
+	 */
+	public static String MD5(String s) {
+		char hexDigits[] = { '0', '1', '2', '3', '4', '5', '6', '7', '8', '9', 'A', 'B', 'C', 'D', 'E', 'F' };
+
+		try {
+			byte[] btInput = s.getBytes();
+			// 获得MD5摘要算法的 MessageDigest 对象
+			MessageDigest mdInst = MessageDigest.getInstance("MD5");
+			// 使用指定的字节更新摘要
+			mdInst.update(btInput);
+			// 获得密文
+			byte[] md = mdInst.digest();
+			// 把密文转换成十六进制的字符串形式
+			int j = md.length;
+			char str[] = new char[j * 2];
+			int k = 0;
+			for (int i = 0; i < j; i++) {
+				byte byte0 = md[i];
+				str[k++] = hexDigits[byte0 >>> 4 & 0xf];
+				str[k++] = hexDigits[byte0 & 0xf];
+			}
+			return new String(str);
+		} catch (Exception e) {
+			e.printStackTrace();
+			return null;
+		}
+	}
+
+	public static boolean isInteger(String str) {
+		if (isEmpty(str)) {
+			return false;
+		}
+		Pattern pattern = Pattern.compile("[0-9]*");
+		Matcher isNum = pattern.matcher(str);
+		return isNum.matches();
+	}
+
+	/**
+	 * 小数点保留方法
+	 * 
+	 * @param value
+	 *            需要处理的数值
+	 * @param scale
+	 *            需要保留的小数位数
+	 * @return
+	 */
+	public static float round(double value, int scale) {
+		if (scale < 0) {
+			throw new IllegalArgumentException("The scale must be a positive integer or zero");
+		}
+		BigDecimal bigDecimal = new BigDecimal(Double.toString(value));
+		BigDecimal one = new BigDecimal("1");
+		return bigDecimal.divide(one, scale, BigDecimal.ROUND_HALF_UP).floatValue();
+	}
+
+	public static String SHA1(String decript) {
+		try {
+			MessageDigest digest = java.security.MessageDigest.getInstance("SHA-1");
+			digest.update(decript.getBytes());
+			byte messageDigest[] = digest.digest();
+			StringBuffer hexString = new StringBuffer();
+			for (int i = 0; i < messageDigest.length; i++) {
+				String shaHex = Integer.toHexString(messageDigest[i] & 0xFF);
+				if (shaHex.length() < 2) {
+					hexString.append(0);
+				}
+				hexString.append(shaHex);
+			}
+			return hexString.toString();
+
+		} catch (NoSuchAlgorithmException e) {
+			e.printStackTrace();
+		}
+		return "";
+	}
+
+	
+	public static String getFieldName(String fieldName){
+		 return fieldName.replaceFirst(fieldName.substring(0), fieldName.substring(0).toLowerCase());
+	}
+	
+	/**
+	 * 根据oauth2入口参数找到定向到前端的路由
+	 * @param route
+	 * @return
+	 */
+	public static String translateRoute(String route){
+		route = StringKit.isEmpty(route) ? "" : route;
+		String redirectRoute = route.replaceAll("!", "/").replaceAll("~", "?");
+		return redirectRoute;
+	}
+	
+	public synchronized static String getRandomUpper(int lenght){
+		Random random = new Random();
+		StringBuffer upperStr = new StringBuffer();
+		for (int i = 0; i < lenght; i++) {
+			upperStr.append(UPPER_LIST[random.nextInt(UPPER_LIST.length)]);
+		}
+		return upperStr.toString();
+	}
+	
+	public static void main(String[] args) {
+		System.err.println(getRandomUpper(500));
+	}
+}

+ 11 - 0
src/main/java/com/hywa/banktest/model/OrderInfo.java

@@ -0,0 +1,11 @@
+package com.hywa.banktest.model;
+
+import com.hywa.banktest.model.base.BaseOrderInfo;
+
+/**
+ * Generated by JFinal.
+ */
+@SuppressWarnings("serial")
+public class OrderInfo extends BaseOrderInfo<OrderInfo> {
+	public static final OrderInfo dao = new OrderInfo().dao();
+}

+ 898 - 0
src/main/java/com/hywa/banktest/model/_DataDictionary.txt

@@ -0,0 +1,898 @@
+Table: act_evt_log
+---------------+----------------------+------+-----+----------------------+---------
+ Field         | Type                 | Null | Key | Default              | Remarks 
+---------------+----------------------+------+-----+----------------------+---------
+ LOG_NR_       | BIGINT(19)           | NO   | PRI |                      |         
+ TYPE_         | VARCHAR(64)          | YES  |     |                      |         
+ PROC_DEF_ID_  | VARCHAR(64)          | YES  |     |                      |         
+ PROC_INST_ID_ | VARCHAR(64)          | YES  |     |                      |         
+ EXECUTION_ID_ | VARCHAR(64)          | YES  |     |                      |         
+ TASK_ID_      | VARCHAR(64)          | YES  |     |                      |         
+ TIME_STAMP_   | TIMESTAMP(19)        | NO   |     | CURRENT_TIMESTAMP(3) |         
+ USER_ID_      | VARCHAR(255)         | YES  |     |                      |         
+ DATA_         | LONGBLOB(2147483647) | YES  |     |                      |         
+ LOCK_OWNER_   | VARCHAR(255)         | YES  |     |                      |         
+ LOCK_TIME_    | TIMESTAMP(19)        | YES  |     |                      |         
+ IS_PROCESSED_ | TINYINT(3)           | YES  |     | 0                    |         
+---------------+----------------------+------+-----+----------------------+---------
+
+Table: act_ge_bytearray
+----------------+----------------------+------+-----+---------+---------
+ Field          | Type                 | Null | Key | Default | Remarks 
+----------------+----------------------+------+-----+---------+---------
+ ID_            | VARCHAR(64)          | NO   | PRI |         |         
+ REV_           | INT(10)              | YES  |     |         |         
+ NAME_          | VARCHAR(255)         | YES  |     |         |         
+ DEPLOYMENT_ID_ | VARCHAR(64)          | YES  |     |         |         
+ BYTES_         | LONGBLOB(2147483647) | YES  |     |         |         
+ GENERATED_     | TINYINT(3)           | YES  |     |         |         
+----------------+----------------------+------+-----+---------+---------
+
+Table: act_ge_property
+--------+--------------+------+-----+---------+---------
+ Field  | Type         | Null | Key | Default | Remarks 
+--------+--------------+------+-----+---------+---------
+ NAME_  | VARCHAR(64)  | NO   | PRI |         |         
+ VALUE_ | VARCHAR(300) | YES  |     |         |         
+ REV_   | INT(10)      | YES  |     |         |         
+--------+--------------+------+-----+---------+---------
+
+Table: act_hi_actinst
+--------------------+--------------+------+-----+---------+---------
+ Field              | Type         | Null | Key | Default | Remarks 
+--------------------+--------------+------+-----+---------+---------
+ ID_                | VARCHAR(64)  | NO   | PRI |         |         
+ PROC_DEF_ID_       | VARCHAR(64)  | NO   |     |         |         
+ PROC_INST_ID_      | VARCHAR(64)  | NO   |     |         |         
+ EXECUTION_ID_      | VARCHAR(64)  | NO   |     |         |         
+ ACT_ID_            | VARCHAR(255) | NO   |     |         |         
+ TASK_ID_           | VARCHAR(64)  | YES  |     |         |         
+ CALL_PROC_INST_ID_ | VARCHAR(64)  | YES  |     |         |         
+ ACT_NAME_          | VARCHAR(255) | YES  |     |         |         
+ ACT_TYPE_          | VARCHAR(255) | NO   |     |         |         
+ ASSIGNEE_          | VARCHAR(255) | YES  |     |         |         
+ START_TIME_        | DATETIME(19) | NO   |     |         |         
+ END_TIME_          | DATETIME(19) | YES  |     |         |         
+ DURATION_          | BIGINT(19)   | YES  |     |         |         
+ TENANT_ID_         | VARCHAR(255) | YES  |     |         |         
+--------------------+--------------+------+-----+---------+---------
+
+Table: act_hi_attachment
+---------------+---------------+------+-----+---------+---------
+ Field         | Type          | Null | Key | Default | Remarks 
+---------------+---------------+------+-----+---------+---------
+ ID_           | VARCHAR(64)   | NO   | PRI |         |         
+ REV_          | INT(10)       | YES  |     |         |         
+ USER_ID_      | VARCHAR(255)  | YES  |     |         |         
+ NAME_         | VARCHAR(255)  | YES  |     |         |         
+ DESCRIPTION_  | VARCHAR(4000) | YES  |     |         |         
+ TYPE_         | VARCHAR(255)  | YES  |     |         |         
+ TASK_ID_      | VARCHAR(64)   | YES  |     |         |         
+ PROC_INST_ID_ | VARCHAR(64)   | YES  |     |         |         
+ URL_          | VARCHAR(4000) | YES  |     |         |         
+ CONTENT_ID_   | VARCHAR(64)   | YES  |     |         |         
+ TIME_         | DATETIME(19)  | YES  |     |         |         
+---------------+---------------+------+-----+---------+---------
+
+Table: act_hi_comment
+---------------+----------------------+------+-----+---------+---------
+ Field         | Type                 | Null | Key | Default | Remarks 
+---------------+----------------------+------+-----+---------+---------
+ ID_           | VARCHAR(64)          | NO   | PRI |         |         
+ TYPE_         | VARCHAR(255)         | YES  |     |         |         
+ TIME_         | DATETIME(19)         | NO   |     |         |         
+ USER_ID_      | VARCHAR(255)         | YES  |     |         |         
+ TASK_ID_      | VARCHAR(64)          | YES  |     |         |         
+ PROC_INST_ID_ | VARCHAR(64)          | YES  |     |         |         
+ ACTION_       | VARCHAR(255)         | YES  |     |         |         
+ MESSAGE_      | VARCHAR(4000)        | YES  |     |         |         
+ FULL_MSG_     | LONGBLOB(2147483647) | YES  |     |         |         
+---------------+----------------------+------+-----+---------+---------
+
+Table: act_hi_detail
+---------------+---------------+------+-----+---------+---------
+ Field         | Type          | Null | Key | Default | Remarks 
+---------------+---------------+------+-----+---------+---------
+ ID_           | VARCHAR(64)   | NO   | PRI |         |         
+ TYPE_         | VARCHAR(255)  | NO   |     |         |         
+ PROC_INST_ID_ | VARCHAR(64)   | YES  |     |         |         
+ EXECUTION_ID_ | VARCHAR(64)   | YES  |     |         |         
+ TASK_ID_      | VARCHAR(64)   | YES  |     |         |         
+ ACT_INST_ID_  | VARCHAR(64)   | YES  |     |         |         
+ NAME_         | VARCHAR(255)  | NO   |     |         |         
+ VAR_TYPE_     | VARCHAR(255)  | YES  |     |         |         
+ REV_          | INT(10)       | YES  |     |         |         
+ TIME_         | DATETIME(19)  | NO   |     |         |         
+ BYTEARRAY_ID_ | VARCHAR(64)   | YES  |     |         |         
+ DOUBLE_       | DOUBLE(22)    | YES  |     |         |         
+ LONG_         | BIGINT(19)    | YES  |     |         |         
+ TEXT_         | VARCHAR(4000) | YES  |     |         |         
+ TEXT2_        | VARCHAR(4000) | YES  |     |         |         
+---------------+---------------+------+-----+---------+---------
+
+Table: act_hi_identitylink
+---------------+--------------+------+-----+---------+---------
+ Field         | Type         | Null | Key | Default | Remarks 
+---------------+--------------+------+-----+---------+---------
+ ID_           | VARCHAR(64)  | NO   | PRI |         |         
+ GROUP_ID_     | VARCHAR(255) | YES  |     |         |         
+ TYPE_         | VARCHAR(255) | YES  |     |         |         
+ USER_ID_      | VARCHAR(255) | YES  |     |         |         
+ TASK_ID_      | VARCHAR(64)  | YES  |     |         |         
+ PROC_INST_ID_ | VARCHAR(64)  | YES  |     |         |         
+---------------+--------------+------+-----+---------+---------
+
+Table: act_hi_procinst
+----------------------------+---------------+------+-----+---------+---------
+ Field                      | Type          | Null | Key | Default | Remarks 
+----------------------------+---------------+------+-----+---------+---------
+ ID_                        | VARCHAR(64)   | NO   | PRI |         |         
+ PROC_INST_ID_              | VARCHAR(64)   | NO   |     |         |         
+ BUSINESS_KEY_              | VARCHAR(255)  | YES  |     |         |         
+ PROC_DEF_ID_               | VARCHAR(64)   | NO   |     |         |         
+ START_TIME_                | DATETIME(19)  | NO   |     |         |         
+ END_TIME_                  | DATETIME(19)  | YES  |     |         |         
+ DURATION_                  | BIGINT(19)    | YES  |     |         |         
+ START_USER_ID_             | VARCHAR(255)  | YES  |     |         |         
+ START_ACT_ID_              | VARCHAR(255)  | YES  |     |         |         
+ END_ACT_ID_                | VARCHAR(255)  | YES  |     |         |         
+ SUPER_PROCESS_INSTANCE_ID_ | VARCHAR(64)   | YES  |     |         |         
+ DELETE_REASON_             | VARCHAR(4000) | YES  |     |         |         
+ TENANT_ID_                 | VARCHAR(255)  | YES  |     |         |         
+ NAME_                      | VARCHAR(255)  | YES  |     |         |         
+----------------------------+---------------+------+-----+---------+---------
+
+Table: act_hi_taskinst
+-----------------+---------------+------+-----+---------+---------
+ Field           | Type          | Null | Key | Default | Remarks 
+-----------------+---------------+------+-----+---------+---------
+ ID_             | VARCHAR(64)   | NO   | PRI |         |         
+ PROC_DEF_ID_    | VARCHAR(64)   | YES  |     |         |         
+ TASK_DEF_KEY_   | VARCHAR(255)  | YES  |     |         |         
+ PROC_INST_ID_   | VARCHAR(64)   | YES  |     |         |         
+ EXECUTION_ID_   | VARCHAR(64)   | YES  |     |         |         
+ NAME_           | VARCHAR(255)  | YES  |     |         |         
+ PARENT_TASK_ID_ | VARCHAR(64)   | YES  |     |         |         
+ DESCRIPTION_    | VARCHAR(4000) | YES  |     |         |         
+ OWNER_          | VARCHAR(255)  | YES  |     |         |         
+ ASSIGNEE_       | VARCHAR(255)  | YES  |     |         |         
+ START_TIME_     | DATETIME(19)  | NO   |     |         |         
+ CLAIM_TIME_     | DATETIME(19)  | YES  |     |         |         
+ END_TIME_       | DATETIME(19)  | YES  |     |         |         
+ DURATION_       | BIGINT(19)    | YES  |     |         |         
+ DELETE_REASON_  | VARCHAR(4000) | YES  |     |         |         
+ PRIORITY_       | INT(10)       | YES  |     |         |         
+ DUE_DATE_       | DATETIME(19)  | YES  |     |         |         
+ FORM_KEY_       | VARCHAR(255)  | YES  |     |         |         
+ CATEGORY_       | VARCHAR(255)  | YES  |     |         |         
+ TENANT_ID_      | VARCHAR(255)  | YES  |     |         |         
+-----------------+---------------+------+-----+---------+---------
+
+Table: act_hi_varinst
+--------------------+---------------+------+-----+---------+---------
+ Field              | Type          | Null | Key | Default | Remarks 
+--------------------+---------------+------+-----+---------+---------
+ ID_                | VARCHAR(64)   | NO   | PRI |         |         
+ PROC_INST_ID_      | VARCHAR(64)   | YES  |     |         |         
+ EXECUTION_ID_      | VARCHAR(64)   | YES  |     |         |         
+ TASK_ID_           | VARCHAR(64)   | YES  |     |         |         
+ NAME_              | VARCHAR(255)  | NO   |     |         |         
+ VAR_TYPE_          | VARCHAR(100)  | YES  |     |         |         
+ REV_               | INT(10)       | YES  |     |         |         
+ BYTEARRAY_ID_      | VARCHAR(64)   | YES  |     |         |         
+ DOUBLE_            | DOUBLE(22)    | YES  |     |         |         
+ LONG_              | BIGINT(19)    | YES  |     |         |         
+ TEXT_              | VARCHAR(4000) | YES  |     |         |         
+ TEXT2_             | VARCHAR(4000) | YES  |     |         |         
+ CREATE_TIME_       | DATETIME(19)  | YES  |     |         |         
+ LAST_UPDATED_TIME_ | DATETIME(19)  | YES  |     |         |         
+--------------------+---------------+------+-----+---------+---------
+
+Table: act_id_group
+-------+--------------+------+-----+---------+---------
+ Field | Type         | Null | Key | Default | Remarks 
+-------+--------------+------+-----+---------+---------
+ ID_   | VARCHAR(64)  | NO   | PRI |         |         
+ REV_  | INT(10)      | YES  |     |         |         
+ NAME_ | VARCHAR(255) | YES  |     |         |         
+ TYPE_ | VARCHAR(255) | YES  |     |         |         
+-------+--------------+------+-----+---------+---------
+
+Table: act_id_info
+------------+----------------------+------+-----+---------+---------
+ Field      | Type                 | Null | Key | Default | Remarks 
+------------+----------------------+------+-----+---------+---------
+ ID_        | VARCHAR(64)          | NO   | PRI |         |         
+ REV_       | INT(10)              | YES  |     |         |         
+ USER_ID_   | VARCHAR(64)          | YES  |     |         |         
+ TYPE_      | VARCHAR(64)          | YES  |     |         |         
+ KEY_       | VARCHAR(255)         | YES  |     |         |         
+ VALUE_     | VARCHAR(255)         | YES  |     |         |         
+ PASSWORD_  | LONGBLOB(2147483647) | YES  |     |         |         
+ PARENT_ID_ | VARCHAR(255)         | YES  |     |         |         
+------------+----------------------+------+-----+---------+---------
+
+Table: act_id_membership
+-----------+-------------+------+-----+---------+---------
+ Field     | Type        | Null | Key | Default | Remarks 
+-----------+-------------+------+-----+---------+---------
+ USER_ID_  | VARCHAR(64) | NO   | PRI |         |         
+ GROUP_ID_ | VARCHAR(64) | NO   | PRI |         |         
+-----------+-------------+------+-----+---------+---------
+
+Table: act_id_user
+-------------+--------------+------+-----+---------+---------
+ Field       | Type         | Null | Key | Default | Remarks 
+-------------+--------------+------+-----+---------+---------
+ ID_         | VARCHAR(64)  | NO   | PRI |         |         
+ REV_        | INT(10)      | YES  |     |         |         
+ FIRST_      | VARCHAR(255) | YES  |     |         |         
+ LAST_       | VARCHAR(255) | YES  |     |         |         
+ EMAIL_      | VARCHAR(255) | YES  |     |         |         
+ PWD_        | VARCHAR(255) | YES  |     |         |         
+ PICTURE_ID_ | VARCHAR(64)  | YES  |     |         |         
+-------------+--------------+------+-----+---------+---------
+
+Table: act_procdef_info
+---------------+-------------+------+-----+---------+---------
+ Field         | Type        | Null | Key | Default | Remarks 
+---------------+-------------+------+-----+---------+---------
+ ID_           | VARCHAR(64) | NO   | PRI |         |         
+ PROC_DEF_ID_  | VARCHAR(64) | NO   |     |         |         
+ REV_          | INT(10)     | YES  |     |         |         
+ INFO_JSON_ID_ | VARCHAR(64) | YES  |     |         |         
+---------------+-------------+------+-----+---------+---------
+
+Table: act_re_deployment
+--------------+---------------+------+-----+---------+---------
+ Field        | Type          | Null | Key | Default | Remarks 
+--------------+---------------+------+-----+---------+---------
+ ID_          | VARCHAR(64)   | NO   | PRI |         |         
+ NAME_        | VARCHAR(255)  | YES  |     |         |         
+ CATEGORY_    | VARCHAR(255)  | YES  |     |         |         
+ TENANT_ID_   | VARCHAR(255)  | YES  |     |         |         
+ DEPLOY_TIME_ | TIMESTAMP(19) | YES  |     |         |         
+--------------+---------------+------+-----+---------+---------
+
+Table: act_re_model
+-------------------------------+---------------+------+-----+---------+---------
+ Field                         | Type          | Null | Key | Default | Remarks 
+-------------------------------+---------------+------+-----+---------+---------
+ ID_                           | VARCHAR(64)   | NO   | PRI |         |         
+ REV_                          | INT(10)       | YES  |     |         |         
+ NAME_                         | VARCHAR(255)  | YES  |     |         |         
+ KEY_                          | VARCHAR(255)  | YES  |     |         |         
+ CATEGORY_                     | VARCHAR(255)  | YES  |     |         |         
+ CREATE_TIME_                  | TIMESTAMP(19) | YES  |     |         |         
+ LAST_UPDATE_TIME_             | TIMESTAMP(19) | YES  |     |         |         
+ VERSION_                      | INT(10)       | YES  |     |         |         
+ META_INFO_                    | VARCHAR(4000) | YES  |     |         |         
+ DEPLOYMENT_ID_                | VARCHAR(64)   | YES  |     |         |         
+ EDITOR_SOURCE_VALUE_ID_       | VARCHAR(64)   | YES  |     |         |         
+ EDITOR_SOURCE_EXTRA_VALUE_ID_ | VARCHAR(64)   | YES  |     |         |         
+ TENANT_ID_                    | VARCHAR(255)  | YES  |     |         |         
+-------------------------------+---------------+------+-----+---------+---------
+
+Table: act_re_procdef
+-------------------------+---------------+------+-----+---------+---------
+ Field                   | Type          | Null | Key | Default | Remarks 
+-------------------------+---------------+------+-----+---------+---------
+ ID_                     | VARCHAR(64)   | NO   | PRI |         |         
+ REV_                    | INT(10)       | YES  |     |         |         
+ CATEGORY_               | VARCHAR(255)  | YES  |     |         |         
+ NAME_                   | VARCHAR(255)  | YES  |     |         |         
+ KEY_                    | VARCHAR(255)  | NO   |     |         |         
+ VERSION_                | INT(10)       | NO   |     |         |         
+ DEPLOYMENT_ID_          | VARCHAR(64)   | YES  |     |         |         
+ RESOURCE_NAME_          | VARCHAR(4000) | YES  |     |         |         
+ DGRM_RESOURCE_NAME_     | VARCHAR(4000) | YES  |     |         |         
+ DESCRIPTION_            | VARCHAR(4000) | YES  |     |         |         
+ HAS_START_FORM_KEY_     | TINYINT(3)    | YES  |     |         |         
+ HAS_GRAPHICAL_NOTATION_ | TINYINT(3)    | YES  |     |         |         
+ SUSPENSION_STATE_       | INT(10)       | YES  |     |         |         
+ TENANT_ID_              | VARCHAR(255)  | YES  |     |         |         
+-------------------------+---------------+------+-----+---------+---------
+
+Table: act_ru_event_subscr
+----------------+---------------+------+-----+----------------------+---------
+ Field          | Type          | Null | Key | Default              | Remarks 
+----------------+---------------+------+-----+----------------------+---------
+ ID_            | VARCHAR(64)   | NO   | PRI |                      |         
+ REV_           | INT(10)       | YES  |     |                      |         
+ EVENT_TYPE_    | VARCHAR(255)  | NO   |     |                      |         
+ EVENT_NAME_    | VARCHAR(255)  | YES  |     |                      |         
+ EXECUTION_ID_  | VARCHAR(64)   | YES  |     |                      |         
+ PROC_INST_ID_  | VARCHAR(64)   | YES  |     |                      |         
+ ACTIVITY_ID_   | VARCHAR(64)   | YES  |     |                      |         
+ CONFIGURATION_ | VARCHAR(255)  | YES  |     |                      |         
+ CREATED_       | TIMESTAMP(19) | NO   |     | CURRENT_TIMESTAMP(3) |         
+ PROC_DEF_ID_   | VARCHAR(64)   | YES  |     |                      |         
+ TENANT_ID_     | VARCHAR(255)  | YES  |     |                      |         
+----------------+---------------+------+-----+----------------------+---------
+
+Table: act_ru_execution
+-------------------+---------------+------+-----+---------+---------
+ Field             | Type          | Null | Key | Default | Remarks 
+-------------------+---------------+------+-----+---------+---------
+ ID_               | VARCHAR(64)   | NO   | PRI |         |         
+ REV_              | INT(10)       | YES  |     |         |         
+ PROC_INST_ID_     | VARCHAR(64)   | YES  |     |         |         
+ BUSINESS_KEY_     | VARCHAR(255)  | YES  |     |         |         
+ PARENT_ID_        | VARCHAR(64)   | YES  |     |         |         
+ PROC_DEF_ID_      | VARCHAR(64)   | YES  |     |         |         
+ SUPER_EXEC_       | VARCHAR(64)   | YES  |     |         |         
+ ACT_ID_           | VARCHAR(255)  | YES  |     |         |         
+ IS_ACTIVE_        | TINYINT(3)    | YES  |     |         |         
+ IS_CONCURRENT_    | TINYINT(3)    | YES  |     |         |         
+ IS_SCOPE_         | TINYINT(3)    | YES  |     |         |         
+ IS_EVENT_SCOPE_   | TINYINT(3)    | YES  |     |         |         
+ SUSPENSION_STATE_ | INT(10)       | YES  |     |         |         
+ CACHED_ENT_STATE_ | INT(10)       | YES  |     |         |         
+ TENANT_ID_        | VARCHAR(255)  | YES  |     |         |         
+ NAME_             | VARCHAR(255)  | YES  |     |         |         
+ LOCK_TIME_        | TIMESTAMP(19) | YES  |     |         |         
+-------------------+---------------+------+-----+---------+---------
+
+Table: act_ru_identitylink
+---------------+--------------+------+-----+---------+---------
+ Field         | Type         | Null | Key | Default | Remarks 
+---------------+--------------+------+-----+---------+---------
+ ID_           | VARCHAR(64)  | NO   | PRI |         |         
+ REV_          | INT(10)      | YES  |     |         |         
+ GROUP_ID_     | VARCHAR(255) | YES  |     |         |         
+ TYPE_         | VARCHAR(255) | YES  |     |         |         
+ USER_ID_      | VARCHAR(255) | YES  |     |         |         
+ TASK_ID_      | VARCHAR(64)  | YES  |     |         |         
+ PROC_INST_ID_ | VARCHAR(64)  | YES  |     |         |         
+ PROC_DEF_ID_  | VARCHAR(64)  | YES  |     |         |         
+---------------+--------------+------+-----+---------+---------
+
+Table: act_ru_job
+----------------------+---------------+------+-----+---------+---------
+ Field                | Type          | Null | Key | Default | Remarks 
+----------------------+---------------+------+-----+---------+---------
+ ID_                  | VARCHAR(64)   | NO   | PRI |         |         
+ REV_                 | INT(10)       | YES  |     |         |         
+ TYPE_                | VARCHAR(255)  | NO   |     |         |         
+ LOCK_EXP_TIME_       | TIMESTAMP(19) | YES  |     |         |         
+ LOCK_OWNER_          | VARCHAR(255)  | YES  |     |         |         
+ EXCLUSIVE_           | BIT           | YES  |     |         |         
+ EXECUTION_ID_        | VARCHAR(64)   | YES  |     |         |         
+ PROCESS_INSTANCE_ID_ | VARCHAR(64)   | YES  |     |         |         
+ PROC_DEF_ID_         | VARCHAR(64)   | YES  |     |         |         
+ RETRIES_             | INT(10)       | YES  |     |         |         
+ EXCEPTION_STACK_ID_  | VARCHAR(64)   | YES  |     |         |         
+ EXCEPTION_MSG_       | VARCHAR(4000) | YES  |     |         |         
+ DUEDATE_             | TIMESTAMP(19) | YES  |     |         |         
+ REPEAT_              | VARCHAR(255)  | YES  |     |         |         
+ HANDLER_TYPE_        | VARCHAR(255)  | YES  |     |         |         
+ HANDLER_CFG_         | VARCHAR(4000) | YES  |     |         |         
+ TENANT_ID_           | VARCHAR(255)  | YES  |     |         |         
+----------------------+---------------+------+-----+---------+---------
+
+Table: act_ru_task
+-------------------+---------------+------+-----+---------+---------
+ Field             | Type          | Null | Key | Default | Remarks 
+-------------------+---------------+------+-----+---------+---------
+ ID_               | VARCHAR(64)   | NO   | PRI |         |         
+ REV_              | INT(10)       | YES  |     |         |         
+ EXECUTION_ID_     | VARCHAR(64)   | YES  |     |         |         
+ PROC_INST_ID_     | VARCHAR(64)   | YES  |     |         |         
+ PROC_DEF_ID_      | VARCHAR(64)   | YES  |     |         |         
+ NAME_             | VARCHAR(255)  | YES  |     |         |         
+ PARENT_TASK_ID_   | VARCHAR(64)   | YES  |     |         |         
+ DESCRIPTION_      | VARCHAR(4000) | YES  |     |         |         
+ TASK_DEF_KEY_     | VARCHAR(255)  | YES  |     |         |         
+ OWNER_            | VARCHAR(255)  | YES  |     |         |         
+ ASSIGNEE_         | VARCHAR(255)  | YES  |     |         |         
+ DELEGATION_       | VARCHAR(64)   | YES  |     |         |         
+ PRIORITY_         | INT(10)       | YES  |     |         |         
+ CREATE_TIME_      | TIMESTAMP(19) | YES  |     |         |         
+ DUE_DATE_         | DATETIME(19)  | YES  |     |         |         
+ CATEGORY_         | VARCHAR(255)  | YES  |     |         |         
+ SUSPENSION_STATE_ | INT(10)       | YES  |     |         |         
+ TENANT_ID_        | VARCHAR(255)  | YES  |     |         |         
+ FORM_KEY_         | VARCHAR(255)  | YES  |     |         |         
+-------------------+---------------+------+-----+---------+---------
+
+Table: act_ru_variable
+---------------+---------------+------+-----+---------+---------
+ Field         | Type          | Null | Key | Default | Remarks 
+---------------+---------------+------+-----+---------+---------
+ ID_           | VARCHAR(64)   | NO   | PRI |         |         
+ REV_          | INT(10)       | YES  |     |         |         
+ TYPE_         | VARCHAR(255)  | NO   |     |         |         
+ NAME_         | VARCHAR(255)  | NO   |     |         |         
+ EXECUTION_ID_ | VARCHAR(64)   | YES  |     |         |         
+ PROC_INST_ID_ | VARCHAR(64)   | YES  |     |         |         
+ TASK_ID_      | VARCHAR(64)   | YES  |     |         |         
+ BYTEARRAY_ID_ | VARCHAR(64)   | YES  |     |         |         
+ DOUBLE_       | DOUBLE(22)    | YES  |     |         |         
+ LONG_         | BIGINT(19)    | YES  |     |         |         
+ TEXT_         | VARCHAR(4000) | YES  |     |         |         
+ TEXT2_        | VARCHAR(4000) | YES  |     |         |         
+---------------+---------------+------+-----+---------+---------
+
+Table: blog_content
+---------------+--------------+------+-----+---------+---------
+ Field         | Type         | Null | Key | Default | Remarks 
+---------------+--------------+------+-----+---------+---------
+ cid           | BIGINT(19)   | NO   | PRI |         |         
+ title         | VARCHAR(255) | YES  |     |         | 标题      
+ slug          | VARCHAR(255) | YES  |     |         |         
+ created       | BIGINT(19)   | YES  |     |         | 创建人id   
+ modified      | BIGINT(19)   | YES  |     |         | 最近修改人id 
+ content       | TEXT(65535)  | YES  |     |         | 内容      
+ type          | VARCHAR(16)  | YES  |     |         | 类型      
+ tags          | VARCHAR(200) | YES  |     |         | 标签      
+ categories    | VARCHAR(200) | YES  |     |         | 分类      
+ hits          | INT(10)      | YES  |     |         |         
+ comments_num  | INT(10)      | YES  |     | 0       | 评论数量    
+ allow_comment | INT(10)      | YES  |     | 0       | 开启评论    
+ allow_ping    | INT(10)      | YES  |     | 0       | 允许ping  
+ allow_feed    | INT(10)      | YES  |     | 0       | 允许反馈    
+ status        | INT(10)      | YES  |     |         | 状态      
+ author        | VARCHAR(100) | YES  |     |         | 作者      
+ gtm_create    | DATETIME(19) | YES  |     |         | 创建时间    
+ gtm_modified  | DATETIME(19) | YES  |     |         | 修改时间    
+---------------+--------------+------+-----+---------+---------
+
+Table: customer
+-------------+----------------------+------+-----+---------+---------
+ Field       | Type                 | Null | Key | Default | Remarks 
+-------------+----------------------+------+-----+---------+---------
+ id          | VARCHAR(32)          | NO   | PRI |         |         
+ wx_id       | VARCHAR(64)          | NO   | PRI |         | 微信绑定ID  
+ NAME        | TEXT(65535)          | YES  |     |         |         
+ photo       | MEDIUMTEXT(16777215) | YES  |     |         | 头像      
+ sex         | VARCHAR(6)           | YES  |     |         | 用户的性别:值为1时是男性,值为2时是女性,值为0时是未知
+ nation      | VARCHAR(16)          | YES  |     |         | 民族      
+ score       | VARCHAR(64)          | YES  |     |         | 积分      
+ CREATE_ID   | VARCHAR(32)          | YES  |     |         | 创建人     
+ CREATE_DATE | DATETIME(19)         | YES  |     |         | 创建时间    
+ UPDATE_ID   | VARCHAR(32)          | YES  |     |         | 修改人     
+ UPDATE_DATE | DATETIME(19)         | YES  |     |         | 修改时间    
+ ENABLE      | INT(10)              | NO   |     | 1       | 是否启用  0:禁用   1:启用
+ IS_DEL      | INT(10)              | NO   |     | 0       | 是否删除  0:未删除   1:已删除
+ unionid     | VARCHAR(64)          | YES  |     |         | 只有在用户将公众号绑定到微信开放平台帐号后,才会出现该字段
+ privilege   | VARCHAR(500)         | YES  |     |         | 用户特权信息,json 数组,如微信沃卡用户为(chinaunicom)
+ country     | VARCHAR(20)          | YES  |     | CN      | 国家,如中国为CN
+ province    | VARCHAR(255)         | YES  |     |         | 用户个人资料填写的省份
+ city        | VARCHAR(255)         | YES  |     |         | 普通用户个人资料填写的城市
+ openid      | VARCHAR(45)          | YES  |     |         |         
+ nickname    | VARCHAR(45)          | YES  |     |         |         
+ language    | VARCHAR(45)          | YES  |     |         |         
+ headimgurl  | VARCHAR(500)         | YES  |     |         |         
+-------------+----------------------+------+-----+---------+---------
+
+Table: farmer
+-----------------+--------------+------+-----+---------+---------
+ Field           | Type         | Null | Key | Default | Remarks 
+-----------------+--------------+------+-----+---------+---------
+ id              | VARCHAR(32)  | NO   | PRI |         |         
+ name            | VARCHAR(32)  | YES  |     |         | 姓名      
+ sex             | VARCHAR(6)   | YES  |     |         | 性别      
+ id_card         | VARCHAR(32)  | YES  |     |         | 身份证号    
+ code            | VARCHAR(32)  | YES  |     |         | 贫困户编号   
+ num             | INT(10)      | YES  |     |         | 人数      
+ nation          | VARCHAR(16)  | YES  |     |         | 名族      
+ education       | VARCHAR(16)  | YES  |     |         | 文化程度    
+ phone           | VARCHAR(16)  | YES  |     |         | 手机号     
+ bank_id         | VARCHAR(32)  | YES  |     |         | 银行卡ID   
+ income          | VARCHAR(16)  | YES  |     |         | 人均纯收入   
+ type            | VARCHAR(16)  | YES  |     |         | 贫困户属性   
+ wish            | TEXT(65535)  | YES  |     |         | 心愿      
+ farmer_desc     | TEXT(65535)  | YES  |     |         | 贫困户详情   
+ images          | TEXT(65535)  | YES  |     |         | 图片(多张)  
+ city_id         | VARCHAR(32)  | YES  |     |         | 市id     
+ county_id       | VARCHAR(32)  | YES  |     |         | 区、县id   
+ town_id         | VARCHAR(32)  | YES  |     |         | 镇、乡id   
+ village_id      | VARCHAR(32)  | YES  |     |         | 村id     
+ viliage_info_id | VARCHAR(32)  | YES  |     |         | 管理村详情表id
+ CREATE_ID       | VARCHAR(32)  | YES  |     |         | 创建人     
+ CREATE_DATE     | DATETIME(19) | YES  |     |         | 创建时间    
+ UPDATE_ID       | VARCHAR(32)  | YES  |     |         | 修改人     
+ UPDATE_DATE     | DATETIME(19) | YES  |     |         | 修改时间    
+ ENABLE          | INT(10)      | NO   |     | 1       | 是否启用  0:禁用   1:启用
+ IS_DEL          | INT(10)      | NO   |     | 0       | 是否删除  0:未删除   1:已删除
+-----------------+--------------+------+-----+---------+---------
+
+Table: farmer_bank
+-------------+--------------+------+-----+---------+---------
+ Field       | Type         | Null | Key | Default | Remarks 
+-------------+--------------+------+-----+---------+---------
+ id          | VARCHAR(32)  | NO   | PRI |         | 主键      
+ bank_code   | VARCHAR(64)  | YES  |     |         | 开户行行号   
+ card_no     | VARCHAR(32)  | YES  |     |         | 银行卡卡号   
+ bank_name   | VARCHAR(64)  | YES  |     |         | 开户行名称   
+ card_name   | VARCHAR(64)  | YES  |     |         | 银行卡登记人  
+ CREATE_ID   | VARCHAR(32)  | YES  |     |         | 创建人     
+ CREATE_DATE | DATETIME(19) | YES  |     |         | 创建时间    
+ UPDATE_ID   | VARCHAR(32)  | YES  |     |         | 修改人     
+ UPDATE_DATE | DATETIME(19) | YES  |     |         | 修改时间    
+ ENABLE      | INT(10)      | NO   |     | 1       | 是否启用  0:禁用   1:启用
+ IS_DEL      | INT(10)      | NO   |     | 0       | 是否删除  0:未删除   1:已删除
+-------------+--------------+------+-----+---------+---------
+
+Table: index_content
+-------------+--------------+------+-----+---------+---------
+ Field       | Type         | Null | Key | Default | Remarks 
+-------------+--------------+------+-----+---------+---------
+ id          | VARCHAR(32)  | NO   | PRI |         |         
+ image       | TEXT(65535)  | YES  |     |         | 图片      
+ farmer_id   | VARCHAR(32)  | YES  |     |         | 关联的贫困户ID
+ order_num   | INT(10)      | YES  |     | 0       | 排序      
+ CREATE_ID   | VARCHAR(32)  | YES  |     |         | 创建人     
+ CREATE_DATE | DATETIME(19) | YES  |     |         | 创建时间    
+ UPDATE_ID   | VARCHAR(32)  | YES  |     |         | 修改人     
+ UPDATE_DATE | DATETIME(19) | YES  |     |         | 修改时间    
+ ENABLE      | INT(10)      | NO   |     | 1       | 是否启用  0:禁用   1:启用
+ IS_DEL      | INT(10)      | NO   |     | 0       | 是否删除  0:未删除   1:已删除
+-------------+--------------+------+-----+---------+---------
+
+Table: oa_notify
+-------------+---------------+------+-----+---------+---------
+ Field       | Type          | Null | Key | Default | Remarks 
+-------------+---------------+------+-----+---------+---------
+ id          | BIGINT(19)    | NO   | PRI |         | 编号      
+ type        | CHAR(1)       | YES  |     |         | 类型      
+ title       | VARCHAR(200)  | YES  |     |         | 标题      
+ content     | VARCHAR(2000) | YES  |     |         | 内容      
+ files       | VARCHAR(2000) | YES  |     |         | 附件      
+ status      | CHAR(1)       | YES  |     |         | 状态      
+ create_by   | BIGINT(19)    | YES  |     |         | 创建者     
+ create_date | DATETIME(19)  | YES  |     |         | 创建时间    
+ update_by   | VARCHAR(64)   | YES  |     |         | 更新者     
+ update_date | DATETIME(19)  | YES  |     |         | 更新时间    
+ remarks     | VARCHAR(255)  | YES  |     |         | 备注信息    
+ del_flag    | CHAR(1)       | YES  |     | 0       | 删除标记    
+-------------+---------------+------+-----+---------+---------
+
+Table: oa_notify_record
+-----------+------------+------+-----+---------+---------
+ Field     | Type       | Null | Key | Default | Remarks 
+-----------+------------+------+-----+---------+---------
+ id        | BIGINT(19) | NO   | PRI |         | 编号      
+ notify_id | BIGINT(19) | YES  |     |         | 通知通告ID  
+ user_id   | BIGINT(19) | YES  |     |         | 接受人     
+ is_read   | BIT        | YES  |     | 0       | 阅读标记    
+ read_date | DATE(10)   | YES  |     |         | 阅读时间    
+-----------+------------+------+-----+---------+---------
+
+Table: order_info
+-------------------+---------------+------+-----+---------+---------
+ Field             | Type          | Null | Key | Default | Remarks 
+-------------------+---------------+------+-----+---------+---------
+ id                | VARCHAR(32)   | NO   | PRI |         | 主键      
+ code              | VARCHAR(32)   | YES  |     |         | 订单名称    
+ order_id          | VARCHAR(32)   | YES  |     |         | 订单号ID   
+ certificate_no    | VARCHAR(32)   | YES  |     |         | 证书编号    
+ gain_time         | DATETIME(19)  | YES  |     |         | 获取证日期   
+ certificateimageb | VARCHAR(500)  | YES  |     |         | 证书图片反面  
+ certificateimagea | VARCHAR(500)  | YES  |     |         | 证书图片正面  
+ tree_id           | VARCHAR(32)   | YES  |     |         | 树ID     
+ price             | DECIMAL(16,2) | YES  |     |         | 价格      
+ CREATE_ID         | VARCHAR(32)   | YES  |     |         | 创建人     
+ CREATE_DATE       | DATETIME(19)  | YES  |     |         | 创建时间    
+ UPDATE_ID         | VARCHAR(32)   | YES  |     |         | 修改人     
+ UPDATE_DATE       | DATETIME(19)  | YES  |     |         | 修改时间    
+ ENABLE            | INT(10)       | NO   |     | 2       | 状态:3、农户已经收到钱;2、待支付;1、已支付;0、未购;4、转账中;5、转账失败
+ IS_DEL            | INT(10)       | NO   |     | 0       | 是否删除  0:未删除   1:已删除
+ trans_id          | VARCHAR(32)   | YES  |     |         | 微信支付订单号 
+ payment_date      | DATETIME(19)  | YES  |     |         | 支付完成时间  
+ order_no          | VARCHAR(32)   | YES  |     |         |         
+ transFile         | VARCHAR(45)   | YES  |     |         | 转账文件名称  
+ transRetFile      | VARCHAR(45)   | YES  |     |         | 银行回盘文件  
+-------------------+---------------+------+-----+---------+---------
+
+Table: salary
+----------------+--------------+------+-----+---------+---------
+ Field          | Type         | Null | Key | Default | Remarks 
+----------------+--------------+------+-----+---------+---------
+ id             | VARCHAR(64)  | NO   | PRI |         | 编号      
+ PROC_INS_ID    | VARCHAR(64)  | YES  |     |         | 流程实例ID  
+ USER_ID        | VARCHAR(64)  | YES  |     |         | 变动用户    
+ OFFICE_ID      | VARCHAR(64)  | YES  |     |         | 归属部门    
+ POST           | VARCHAR(255) | YES  |     |         | 岗位      
+ AGE            | CHAR(1)      | YES  |     |         | 性别      
+ EDU            | VARCHAR(255) | YES  |     |         | 学历      
+ CONTENT        | VARCHAR(255) | YES  |     |         | 调整原因    
+ OLDA           | VARCHAR(255) | YES  |     |         | 现行标准 薪酬档级
+ OLDB           | VARCHAR(255) | YES  |     |         | 现行标准 月工资额
+ OLDC           | VARCHAR(255) | YES  |     |         | 现行标准 年薪总额
+ NEWA           | VARCHAR(255) | YES  |     |         | 调整后标准 薪酬档级
+ NEWB           | VARCHAR(255) | YES  |     |         | 调整后标准 月工资额
+ NEWC           | VARCHAR(255) | YES  |     |         | 调整后标准 年薪总额
+ ADD_NUM        | VARCHAR(255) | YES  |     |         | 月增资     
+ EXE_DATE       | VARCHAR(255) | YES  |     |         | 执行时间    
+ HR_TEXT        | VARCHAR(255) | YES  |     |         | 人力资源部门意见
+ LEAD_TEXT      | VARCHAR(255) | YES  |     |         | 分管领导意见  
+ MAIN_LEAD_TEXT | VARCHAR(255) | YES  |     |         | 集团主要领导意见
+ create_by      | VARCHAR(64)  | NO   |     |         | 创建者     
+ create_date    | DATETIME(19) | NO   |     |         | 创建时间    
+ update_by      | VARCHAR(64)  | NO   |     |         | 更新者     
+ update_date    | DATETIME(19) | NO   |     |         | 更新时间    
+ remarks        | VARCHAR(255) | YES  |     |         | 备注信息    
+ del_flag       | CHAR(1)      | NO   |     | 0       | 删除标记    
+----------------+--------------+------+-----+---------+---------
+
+Table: shopcart
+---------------+---------------+------+-----+---------+---------
+ Field         | Type          | Null | Key | Default | Remarks 
+---------------+---------------+------+-----+---------+---------
+ id            | VARCHAR(32)   | NO   | PRI |         | 主键      
+ open_id       | VARCHAR(32)   | YES  |     |         | OPENID  
+ name          | VARCHAR(32)   | YES  |     |         | 树名称     
+ price         | DECIMAL(16,2) | YES  |     |         | 树价格     
+ diameter      | VARCHAR(16)   | YES  |     |         | 直径(树的胸径)
+ code          | VARCHAR(16)   | YES  |     |         | 树编码     
+ tree_type_id  | VARCHAR(32)   | YES  |     |         | 关联树类别信息外键
+ farmer_id     | VARCHAR(32)   | YES  |     |         | 关联贫困户外键 
+ status        | VARCHAR(1)    | YES  |     | 0       | 该树的状态 0:未售  1:已售 
+ fresh_time    | DATETIME(19)  | YES  |     |         | 刷新时间    
+ sale_count    | INT(10)       | YES  |     | 0       | 销售次数    
+ CREATE_ID     | VARCHAR(32)   | YES  |     |         | 创建人     
+ CREATE_DATE   | DATETIME(19)  | YES  |     |         | 创建时间    
+ UPDATE_ID     | VARCHAR(32)   | YES  |     |         | 修改人     
+ UPDATE_DATE   | DATETIME(19)  | YES  |     |         | 修改时间    
+ ENABLE        | INT(10)       | NO   |     | 1       | 是否启用  0:禁用   1:启用
+ IS_DEL        | INT(10)       | NO   |     | 0       | 是否删除  0:未删除   1:已删除
+ image_url     | VARCHAR(500)  | YES  |     |         | 图片树URL  
+ image_url_big | VARCHAR(500)  | YES  |     |         | 图片树URL  
+ tree_id       | VARCHAR(32)   | YES  |     |         | 树ID     
+---------------+---------------+------+-----+---------+---------
+
+Table: sys_dept
+-----------+-------------+------+-----+---------+---------
+ Field     | Type        | Null | Key | Default | Remarks 
+-----------+-------------+------+-----+---------+---------
+ dept_id   | BIGINT(19)  | NO   | PRI |         |         
+ parent_id | BIGINT(19)  | YES  |     |         | 上级部门ID,一级部门为0
+ name      | VARCHAR(50) | YES  |     |         | 部门名称    
+ order_num | INT(10)     | YES  |     |         | 排序      
+ del_flag  | TINYINT(3)  | YES  |     | 0       | 是否删除  -1:已删除  0:正常
+-----------+-------------+------+-----+---------+---------
+
+Table: sys_dict
+-------------+--------------+------+-----+---------+---------
+ Field       | Type         | Null | Key | Default | Remarks 
+-------------+--------------+------+-----+---------+---------
+ id          | BIGINT(19)   | NO   | PRI |         | 编号      
+ name        | VARCHAR(100) | YES  |     |         | 标签名     
+ value       | VARCHAR(100) | YES  |     |         | 数据值     
+ type        | VARCHAR(100) | YES  |     |         | 类型      
+ description | VARCHAR(100) | YES  |     |         | 描述      
+ sort        | DECIMAL(10)  | YES  |     |         | 排序(升序)  
+ parent_id   | BIGINT(19)   | YES  |     | 0       | 父级编号    
+ create_by   | INT(10)      | YES  |     |         | 创建者     
+ create_date | DATETIME(19) | YES  |     |         | 创建时间    
+ update_by   | BIGINT(19)   | YES  |     |         | 更新者     
+ update_date | DATETIME(19) | YES  |     |         | 更新时间    
+ remarks     | VARCHAR(255) | YES  |     |         | 备注信息    
+ del_flag    | CHAR(1)      | YES  |     | 0       | 删除标记    
+-------------+--------------+------+-----+---------+---------
+
+Table: sys_file
+-------------+--------------+------+-----+---------+---------
+ Field       | Type         | Null | Key | Default | Remarks 
+-------------+--------------+------+-----+---------+---------
+ id          | BIGINT(19)   | NO   | PRI |         |         
+ type        | INT(10)      | YES  |     |         | 文件类型    
+ url         | VARCHAR(200) | YES  |     |         | URL地址   
+ create_date | DATETIME(19) | YES  |     |         | 创建时间    
+-------------+--------------+------+-----+---------+---------
+
+Table: sys_log
+------------+---------------+------+-----+---------+---------
+ Field      | Type          | Null | Key | Default | Remarks 
+------------+---------------+------+-----+---------+---------
+ id         | BIGINT(19)    | NO   | PRI |         |         
+ user_id    | BIGINT(19)    | YES  |     |         | 用户id    
+ username   | VARCHAR(50)   | YES  |     |         | 用户名     
+ operation  | VARCHAR(50)   | YES  |     |         | 用户操作    
+ time       | INT(10)       | YES  |     |         | 响应时间    
+ method     | VARCHAR(200)  | YES  |     |         | 请求方法    
+ params     | VARCHAR(5000) | YES  |     |         | 请求参数    
+ ip         | VARCHAR(64)   | YES  |     |         | IP地址    
+ gmt_create | DATETIME(19)  | YES  |     |         | 创建时间    
+------------+---------------+------+-----+---------+---------
+
+Table: sys_menu
+--------------+--------------+------+-----+---------+---------
+ Field        | Type         | Null | Key | Default | Remarks 
+--------------+--------------+------+-----+---------+---------
+ menu_id      | BIGINT(19)   | NO   | PRI |         |         
+ parent_id    | BIGINT(19)   | YES  |     |         | 父菜单ID,一级菜单为0
+ name         | VARCHAR(50)  | YES  |     |         | 菜单名称    
+ url          | VARCHAR(200) | YES  |     |         | 菜单URL   
+ perms        | VARCHAR(500) | YES  |     |         | 授权(多个用逗号分隔,如:user:list,user:create)
+ type         | INT(10)      | YES  |     |         | 类型   0:目录   1:菜单   2:按钮
+ icon         | VARCHAR(50)  | YES  |     |         | 菜单图标    
+ order_num    | INT(10)      | YES  |     |         | 排序      
+ gmt_create   | DATETIME(19) | YES  |     |         | 创建时间    
+ gmt_modified | DATETIME(19) | YES  |     |         | 修改时间    
+--------------+--------------+------+-----+---------+---------
+
+Table: sys_role
+----------------+--------------+------+-----+---------+---------
+ Field          | Type         | Null | Key | Default | Remarks 
+----------------+--------------+------+-----+---------+---------
+ role_id        | BIGINT(19)   | NO   | PRI |         |         
+ role_name      | VARCHAR(100) | YES  |     |         | 角色名称    
+ role_sign      | VARCHAR(100) | YES  |     |         | 角色标识    
+ remark         | VARCHAR(100) | YES  |     |         | 备注      
+ user_id_create | BIGINT(19)   | YES  |     |         | 创建用户id  
+ gmt_create     | DATETIME(19) | YES  |     |         | 创建时间    
+ gmt_modified   | DATETIME(19) | YES  |     |         | 创建时间    
+----------------+--------------+------+-----+---------+---------
+
+Table: sys_role_menu
+---------+------------+------+-----+---------+---------
+ Field   | Type       | Null | Key | Default | Remarks 
+---------+------------+------+-----+---------+---------
+ id      | BIGINT(19) | NO   | PRI |         |         
+ role_id | BIGINT(19) | YES  |     |         | 角色ID    
+ menu_id | BIGINT(19) | YES  |     |         | 菜单ID    
+---------+------------+------+-----+---------+---------
+
+Table: sys_task
+-----------------+--------------+------+-----+---------+---------
+ Field           | Type         | Null | Key | Default | Remarks 
+-----------------+--------------+------+-----+---------+---------
+ id              | BIGINT(19)   | NO   | PRI |         |         
+ cron_expression | VARCHAR(255) | YES  |     |         | cron表达式 
+ method_name     | VARCHAR(255) | YES  |     |         | 任务调用的方法名
+ is_concurrent   | VARCHAR(255) | YES  |     |         | 任务是否有状态 
+ description     | VARCHAR(255) | YES  |     |         | 任务描述    
+ update_by       | VARCHAR(64)  | YES  |     |         | 更新者     
+ bean_class      | VARCHAR(255) | YES  |     |         | 任务执行时调用哪个类的方法 包名+类名
+ create_date     | DATETIME(19) | YES  |     |         | 创建时间    
+ job_status      | VARCHAR(255) | YES  |     |         | 任务状态    
+ job_group       | VARCHAR(255) | YES  |     |         | 任务分组    
+ update_date     | DATETIME(19) | YES  |     |         | 更新时间    
+ create_by       | VARCHAR(64)  | YES  |     |         | 创建者     
+ spring_bean     | VARCHAR(255) | YES  |     |         | Spring bean
+ job_name        | VARCHAR(255) | YES  |     |         | 任务名     
+-----------------+--------------+------+-----+---------+---------
+
+Table: sys_user
+----------------+--------------+------+-----+---------+---------
+ Field          | Type         | Null | Key | Default | Remarks 
+----------------+--------------+------+-----+---------+---------
+ user_id        | BIGINT(19)   | NO   | PRI |         |         
+ username       | VARCHAR(50)  | YES  |     |         | 用户名     
+ name           | VARCHAR(100) | YES  |     |         |         
+ password       | VARCHAR(50)  | YES  |     |         | 密码      
+ dept_id        | BIGINT(19)   | YES  |     |         |         
+ email          | VARCHAR(100) | YES  |     |         | 邮箱      
+ mobile         | VARCHAR(100) | YES  |     |         | 手机号     
+ status         | TINYINT(3)   | YES  |     |         | 状态 0:禁用,1:正常
+ user_id_create | BIGINT(19)   | YES  |     |         | 创建用户id  
+ gmt_create     | DATETIME(19) | YES  |     |         | 创建时间    
+ gmt_modified   | DATETIME(19) | YES  |     |         | 修改时间    
+ sex            | BIGINT(19)   | YES  |     |         | 性别      
+ birth          | DATETIME(19) | YES  |     |         | 出身日期    
+ pic_id         | BIGINT(19)   | YES  |     |         |         
+ live_address   | VARCHAR(500) | YES  |     |         | 现居住地    
+ hobby          | VARCHAR(255) | YES  |     |         | 爱好      
+ province       | VARCHAR(255) | YES  |     |         | 省份      
+ city           | VARCHAR(255) | YES  |     |         | 所在城市    
+ district       | VARCHAR(255) | YES  |     |         | 所在地区    
+----------------+--------------+------+-----+---------+---------
+
+Table: sys_user_plus
+---------+------------+------+-----+---------+---------
+ Field   | Type       | Null | Key | Default | Remarks 
+---------+------------+------+-----+---------+---------
+ id      | BIGINT(19) | NO   | PRI |         |         
+ user_id | BIGINT(19) | NO   |     |         |         
+ payment | DOUBLE(22) | YES  |     |         |         
+---------+------------+------+-----+---------+---------
+
+Table: sys_user_role
+---------+------------+------+-----+---------+---------
+ Field   | Type       | Null | Key | Default | Remarks 
+---------+------------+------+-----+---------+---------
+ id      | BIGINT(19) | NO   | PRI |         |         
+ user_id | BIGINT(19) | YES  |     |         | 用户ID    
+ role_id | BIGINT(19) | YES  |     |         | 角色ID    
+---------+------------+------+-----+---------+---------
+
+Table: t_order
+-------------------+---------------+------+-----+---------+---------
+ Field             | Type          | Null | Key | Default | Remarks 
+-------------------+---------------+------+-----+---------+---------
+ id                | VARCHAR(32)   | NO   | PRI |         | 主键      
+ code              | VARCHAR(64)   | YES  |     |         | 订单名称    
+ certificate_no    | VARCHAR(32)   | YES  |     |         | 证书编号    
+ gain_time         | DATETIME(19)  | YES  |     |         | 获取证日期   
+ certificateImageb | VARCHAR(500)  | YES  |     |         | 证书反面    
+ certificateImagea | VARCHAR(500)  | YES  |     |         | 证书正面    
+ customer_id       | VARCHAR(32)   | YES  |     |         | 对应的购买者id
+ total_price       | DECIMAL(16,2) | YES  |     |         | 总价格     
+ CREATE_ID         | VARCHAR(32)   | YES  |     |         | 创建人     
+ CREATE_DATE       | DATETIME(19)  | YES  |     |         | 创建时间    
+ UPDATE_ID         | VARCHAR(32)   | YES  |     |         | 修改人     
+ UPDATE_DATE       | DATETIME(19)  | YES  |     |         | 修改时间    
+ ENABLE            | INT(10)       | NO   |     | 2       | 状态:3、农户已经收到钱;2、待支付;1、已支付;0、未购;
+ IS_DEL            | INT(10)       | NO   |     | 0       | 是否删除  0:未删除   1:已删除
+ trans_id          | VARCHAR(32)   | YES  |     |         | 微信支付订单号 
+ payment_date      | DATETIME(19)  | YES  |     |         | 支付完成时间  
+-------------------+---------------+------+-----+---------+---------
+
+Table: t_tree
+---------------+---------------+------+-----+---------+---------
+ Field         | Type          | Null | Key | Default | Remarks 
+---------------+---------------+------+-----+---------+---------
+ id            | VARCHAR(32)   | NO   | PRI |         | 主键      
+ name          | VARCHAR(32)   | YES  |     |         | 名称      
+ price         | DECIMAL(16,2) | YES  |     |         | 价格      
+ diameter      | VARCHAR(16)   | YES  |     |         | 直径(树的胸径)
+ code          | VARCHAR(100)  | YES  |     |         | 编码      
+ tree_type_id  | VARCHAR(32)   | YES  |     |         | 关联树类别信息外键
+ farmer_id     | VARCHAR(32)   | YES  |     |         | 关联贫困户外键 
+ status        | VARCHAR(1)    | YES  |     | 0       | 该树的状态 0:未售  1:已售 
+ fresh_time    | DATETIME(19)  | YES  |     |         | 刷新时间    
+ sale_count    | INT(10)       | YES  |     | 0       | 销售次数    
+ CREATE_ID     | VARCHAR(32)   | YES  |     |         | 创建人     
+ CREATE_DATE   | DATETIME(19)  | YES  |     |         | 创建时间    
+ UPDATE_ID     | VARCHAR(32)   | YES  |     |         | 修改人     
+ UPDATE_DATE   | DATETIME(19)  | YES  |     |         | 修改时间    
+ ENABLE        | INT(10)       | NO   |     | 1       | 是否启用  0:禁用   1:启用
+ IS_DEL        | INT(10)       | NO   |     | 0       | 是否删除  0:未删除   1:已删除
+ image_url     | VARCHAR(500)  | YES  |     |         | 图片URL   
+ image_url_big | VARCHAR(500)  | YES  |     |         | 近图片URL  
+---------------+---------------+------+-----+---------+---------
+
+Table: tree_organize
+---------------+--------------+------+-----+---------+---------
+ Field         | Type         | Null | Key | Default | Remarks 
+---------------+--------------+------+-----+---------+---------
+ id            | CHAR(19)     | NO   | PRI |         | 部门标识    
+ org_code      | VARCHAR(20)  | YES  |     |         | 部门编号    
+ org_name      | VARCHAR(30)  | NO   |     |         | 部门名称    
+ parent_org_id | CHAR(19)     | YES  |     |         | 上一级部门标识 
+ sort_no       | INT(10)      | YES  |     | 1       | 排序      
+ state         | TINYINT(3)   | YES  |     | 1       | 是否显示  0:否 1:是
+ level_org     | VARCHAR(100) | YES  |     |         | 部门等级串   
+ the_area      | CHAR(10)     | YES  |     | 1       | 所属地区    
+ note          | VARCHAR(255) | YES  |     |         | 备注      
+ in_date       | DATETIME(19) | YES  |     |         | 添加时间    
+---------------+--------------+------+-----+---------+---------
+
+Table: tree_type
+-------------+--------------+------+-----+---------+---------
+ Field       | Type         | Null | Key | Default | Remarks 
+-------------+--------------+------+-----+---------+---------
+ id          | VARCHAR(32)  | NO   | PRI |         |         
+ name        | VARCHAR(255) | YES  |     |         |         
+ type_desc   | TEXT(65535)  | YES  |     |         | 该树的详情介绍 
+ CREATE_ID   | VARCHAR(32)  | YES  |     |         | 创建人     
+ CREATE_DATE | DATETIME(19) | YES  |     |         | 创建时间    
+ UPDATE_ID   | VARCHAR(32)  | YES  |     |         | 修改人     
+ UPDATE_DATE | DATETIME(19) | YES  |     |         | 修改时间    
+ ENABLE      | INT(10)      | NO   |     | 1       | 是否启用  0:禁用   1:启用
+ IS_DEL      | INT(10)      | NO   |     | 0       | 是否删除  0:未删除   1:已删除
+-------------+--------------+------+-----+---------+---------
+
+Table: tree_village_info
+----------------+--------------+------+-----+---------+---------
+ Field          | Type         | Null | Key | Default | Remarks 
+----------------+--------------+------+-----+---------+---------
+ id             | VARCHAR(32)  | NO   | PRI |         | 主键      
+ village_name   | VARCHAR(32)  | NO   |     |         | 所属村-名称  
+ village_addree | VARCHAR(255) | YES  |     |         | 村详细地址   
+ village_desc   | TEXT(65535)  | YES  |     |         | 村描述     
+ city_id        | VARCHAR(32)  | YES  |     |         | 市、州ID   
+ county_id      | VARCHAR(32)  | YES  |     |         | 区、县ID   
+ town_id        | VARCHAR(32)  | YES  |     |         | 乡、镇ID   
+ village_id     | VARCHAR(32)  | NO   |     |         | 村id     
+ village_image  | TEXT(65535)  | YES  |     |         |         
+ ENABLE         | INT(10)      | NO   |     | 1       | 是否启用  0:禁用   1:启用
+ IS_DEL         | INT(10)      | NO   |     | 0       | 是否删除  0:未删除   1:已删除
+ CREATE_ID      | VARCHAR(32)  | YES  |     |         | 创建人     
+ CREATE_DATE    | DATETIME(19) | YES  |     |         | 创建时间    
+ UPDATE_ID      | VARCHAR(32)  | YES  |     |         | 修改人     
+ UPDATE_DATE    | DATETIME(19) | YES  |     |         | 修改时间    
+----------------+--------------+------+-----+---------+---------
+

+ 22 - 0
src/main/java/com/hywa/banktest/model/_MappingKit.java

@@ -0,0 +1,22 @@
+package com.hywa.banktest.model;
+
+import com.jfinal.plugin.activerecord.ActiveRecordPlugin;
+
+/**
+ * Generated by JFinal, do not modify this file.
+ * <pre>
+ * Example:
+ * public void configPlugin(Plugins me) {
+ *     ActiveRecordPlugin arp = new ActiveRecordPlugin(...);
+ *     _MappingKit.mapping(arp);
+ *     me.add(arp);
+ * }
+ * </pre>
+ */
+public class _MappingKit {
+
+	public static void mapping(ActiveRecordPlugin arp) {
+		arp.addMapping("order_info", "id", OrderInfo.class);
+	}
+}
+

+ 192 - 0
src/main/java/com/hywa/banktest/model/base/BaseOrderInfo.java

@@ -0,0 +1,192 @@
+package com.hywa.banktest.model.base;
+
+import com.jfinal.plugin.activerecord.Model;
+import com.jfinal.plugin.activerecord.IBean;
+
+/**
+ * Generated by JFinal, do not modify this file.
+ */
+@SuppressWarnings({"serial", "unchecked"})
+public abstract class BaseOrderInfo<M extends BaseOrderInfo<M>> extends Model<M> implements IBean {
+
+	public M setId(java.lang.String id) {
+		set("id", id);
+		return (M)this;
+	}
+
+	public java.lang.String getId() {
+		return getStr("id");
+	}
+
+	public M setCode(java.lang.String code) {
+		set("code", code);
+		return (M)this;
+	}
+
+	public java.lang.String getCode() {
+		return getStr("code");
+	}
+
+	public M setOrderId(java.lang.String orderId) {
+		set("order_id", orderId);
+		return (M)this;
+	}
+
+	public java.lang.String getOrderId() {
+		return getStr("order_id");
+	}
+
+	public M setCertificateNo(java.lang.String certificateNo) {
+		set("certificate_no", certificateNo);
+		return (M)this;
+	}
+
+	public java.lang.String getCertificateNo() {
+		return getStr("certificate_no");
+	}
+
+	public M setGainTime(java.util.Date gainTime) {
+		set("gain_time", gainTime);
+		return (M)this;
+	}
+
+	public java.util.Date getGainTime() {
+		return get("gain_time");
+	}
+
+	public M setCertificateimageb(java.lang.String certificateimageb) {
+		set("certificateimageb", certificateimageb);
+		return (M)this;
+	}
+
+	public java.lang.String getCertificateimageb() {
+		return getStr("certificateimageb");
+	}
+
+	public M setCertificateimagea(java.lang.String certificateimagea) {
+		set("certificateimagea", certificateimagea);
+		return (M)this;
+	}
+
+	public java.lang.String getCertificateimagea() {
+		return getStr("certificateimagea");
+	}
+
+	public M setTreeId(java.lang.String treeId) {
+		set("tree_id", treeId);
+		return (M)this;
+	}
+
+	public java.lang.String getTreeId() {
+		return getStr("tree_id");
+	}
+
+	public M setPrice(java.math.BigDecimal price) {
+		set("price", price);
+		return (M)this;
+	}
+
+	public java.math.BigDecimal getPrice() {
+		return get("price");
+	}
+
+	public M setCreateId(java.lang.String createId) {
+		set("CREATE_ID", createId);
+		return (M)this;
+	}
+
+	public java.lang.String getCreateId() {
+		return getStr("CREATE_ID");
+	}
+
+	public M setCreateDate(java.util.Date createDate) {
+		set("CREATE_DATE", createDate);
+		return (M)this;
+	}
+
+	public java.util.Date getCreateDate() {
+		return get("CREATE_DATE");
+	}
+
+	public M setUpdateId(java.lang.String updateId) {
+		set("UPDATE_ID", updateId);
+		return (M)this;
+	}
+
+	public java.lang.String getUpdateId() {
+		return getStr("UPDATE_ID");
+	}
+
+	public M setUpdateDate(java.util.Date updateDate) {
+		set("UPDATE_DATE", updateDate);
+		return (M)this;
+	}
+
+	public java.util.Date getUpdateDate() {
+		return get("UPDATE_DATE");
+	}
+
+	public M setENABLE(java.lang.Integer ENABLE) {
+		set("ENABLE", ENABLE);
+		return (M)this;
+	}
+
+	public java.lang.Integer getENABLE() {
+		return getInt("ENABLE");
+	}
+
+	public M setIsDel(java.lang.Integer isDel) {
+		set("IS_DEL", isDel);
+		return (M)this;
+	}
+
+	public java.lang.Integer getIsDel() {
+		return getInt("IS_DEL");
+	}
+
+	public M setTransId(java.lang.String transId) {
+		set("trans_id", transId);
+		return (M)this;
+	}
+
+	public java.lang.String getTransId() {
+		return getStr("trans_id");
+	}
+
+	public M setPaymentDate(java.util.Date paymentDate) {
+		set("payment_date", paymentDate);
+		return (M)this;
+	}
+
+	public java.util.Date getPaymentDate() {
+		return get("payment_date");
+	}
+
+	public M setOrderNo(java.lang.String orderNo) {
+		set("order_no", orderNo);
+		return (M)this;
+	}
+
+	public java.lang.String getOrderNo() {
+		return getStr("order_no");
+	}
+
+	public M setTransFile(java.lang.String transFile) {
+		set("transFile", transFile);
+		return (M)this;
+	}
+
+	public java.lang.String getTransFile() {
+		return getStr("transFile");
+	}
+
+	public M setTransRetFile(java.lang.String transRetFile) {
+		set("transRetFile", transRetFile);
+		return (M)this;
+	}
+
+	public java.lang.String getTransRetFile() {
+		return getStr("transRetFile");
+	}
+
+}

+ 69 - 0
src/main/java/com/hywa/banktest/service/BaseService.java

@@ -0,0 +1,69 @@
+package com.hywa.banktest.service;
+
+import com.jfinal.plugin.activerecord.Model;
+import com.jfinal.plugin.activerecord.Page;
+import com.jfinal.plugin.activerecord.SqlPara;
+
+import java.util.List;
+
+public interface BaseService<T extends Model<T>> {
+
+    public String getSql(String sqlKey);
+
+    public boolean save(T entity);
+
+    public boolean delete(T entity);
+
+    public boolean update(T entity);
+
+    public boolean deleteById(Object id);
+
+    public boolean deleteById(Object... ids);
+
+    public List<T> find(SqlPara sqlPara);
+
+    public List<T> find(String sql);
+
+    public List<T> find(String sql, Object... paras);
+
+    public T findById(Object idValue);
+
+    public T findById(Object... idValues);
+
+    public T findByIdLoadColumns(Object idValue, String columns);
+
+    public T findByIdLoadColumns(Object[] idValues, String columns);
+
+    public T findFirst(SqlPara sqlPara);
+
+    public T findFirst(String sql);
+
+    public T findFirst(String sql, Object... paras);
+
+    public Page<T> paginate(int pageNumber, int pageSize, String sql, Object... paras);
+
+    public Page<T> paginate(int pageNumber, int pageSize, String select, String sqlExceptSelect);
+
+    public Page<T> paginate(int pageNumber, int pageSize, String select, String sqlExceptSelect, Object... paras);
+
+    public Page<T> paginate(int pageNumber, int pageSize, boolean isGroupBySql, String select, String sqlExceptSelect, Object... paras);
+
+    public List<T> getAll();
+
+    public List<T> getAllByEqualAttr(T entity, String... columns);
+
+    public List<T> getAllByEqualAttr(boolean isDynamicQuery, T entity, String... columns);
+
+    public List<T> getAllByEqualAttr(boolean isDynamicQuery, String loadColumns, T entity, String... columns);
+
+    public T getByEqualAttr(T entity, String... columns);
+
+    public T getByEqualAttr(boolean isDynamicQuery, T entity, String... columns);
+
+    public T getByEqualAttr(boolean isDynamicQuery, String loadColumns, T entity, String... columns);
+
+    public long getCountByEqualAttr(T entity, String... columns);
+
+    public long getCountByEqualAttr(boolean isDynamicQuery, T entity, String... columns);
+
+}

+ 12 - 0
src/main/java/com/hywa/banktest/service/CarbonBankService.java

@@ -0,0 +1,12 @@
+package com.hywa.banktest.service;
+
+import com.hywa.banktest.common.AjaxJson;
+import com.hywa.banktest.entity.CheckBankVO;
+import com.hywa.banktest.entity.GetBankNo;
+
+public interface CarbonBankService {
+
+    public AjaxJson checkBankCard(CheckBankVO checkBankVO);
+
+    public AjaxJson findCardNumMoney(GetBankNo getBankNo);
+}

+ 36 - 0
src/main/java/com/hywa/banktest/service/ClearingRecordDetailService.java

@@ -0,0 +1,36 @@
+package com.hywa.banktest.service;
+
+import com.hywa.banktest.bankframework.pack.TransVo;
+import com.hywa.banktest.common.BaseService;
+import com.hywa.banktest.entity.ClearingRecordDetail;
+
+import java.util.List;
+
+/**
+ * @author xiezt
+ */
+public interface ClearingRecordDetailService extends BaseService<ClearingRecordDetail,String> {
+
+
+    /**
+     * 通过清款记录id查询请款记录明细
+     * @param recordId
+     * @return
+     */
+    List<ClearingRecordDetail> getClearingRecordDetailByRid(String recordId);
+
+    /**
+     * 更新清款记录明细信息
+     * @param detail
+     * @return
+     */
+    int updateClearingRecordDetailInfoByRid(ClearingRecordDetail detail);
+
+    /**
+     * 批量更新清款订单明细信息
+     * @param detailList
+     * @return
+     */
+    int batchClearingRecordDetailInfo(List<TransVo> detailList);
+
+}

+ 18 - 0
src/main/java/com/hywa/banktest/service/ClearingRecordService.java

@@ -0,0 +1,18 @@
+package com.hywa.banktest.service;
+
+import com.hywa.banktest.common.BaseService;
+import com.hywa.banktest.entity.ClearingRecord;
+
+import java.util.List;
+
+/**
+ * @author xiezt
+ */
+public interface ClearingRecordService extends BaseService<ClearingRecord,String> {
+    /**
+     * 获取清款ftp上传文件名
+     * @param checkTime
+     * @return
+     */
+    List<String> getBankClearingFilesByTimed(String checkTime);
+}

+ 76 - 0
src/main/java/com/hywa/banktest/service/OrderInfoService.java

@@ -0,0 +1,76 @@
+package com.hywa.banktest.service;
+
+import java.util.List;
+import java.util.Map;
+
+import com.hywa.banktest.bankframework.pack.TransVo;
+import com.hywa.banktest.entity.ClearingRecordDetail;
+import com.hywa.banktest.model.OrderInfo;
+
+public interface OrderInfoService extends BaseService<OrderInfo> {
+
+	/**
+	 * 得到需要清算的订单信息
+	 * @param queryModel
+	 * @return
+	 */
+	List<OrderInfo> getTransOrderInfo(OrderInfo queryModel);
+
+	/**
+	 * 查询可以打款的订单(按农户打款)
+	 * @param map
+	 * @return
+	 */
+	List<Map> queryTransFarmerOrderInfo(Map map);
+
+	/**
+	 * 通过farmerId更新订单信息
+	 * @param params
+	 * @return
+	 */
+	int updateOrderInfoByFarmer(Map params);
+
+
+	/**
+	 * 查询有订单记录农户信息,为验证测试打款使用
+	 * @return
+	 */
+	List<Map> queryTransFarmerForTest();
+
+	/**
+	 * 处理清款记录明细
+	 * @param recordId
+	 * @param companyType
+	 * @return
+	 */
+	int  dealClearingRecordByRid(String recordId,String companyType);
+
+	/**
+	 * 通过清款明细id,更新订单详情记录
+	 * @param transVoList
+	 * @return
+	 */
+	int updateOrderInfoByClearingId(List<TransVo> transVoList);
+
+	/**
+	 * 银行打款请求失败后,对订单详情的处理
+	 * @param transVoList
+	 * @return
+	 */
+	int updateAllClearingDetailOrderInfo(List<TransVo> transVoList);
+	/**
+	* @MethodName updateNoOrderClearing
+	* @Param [transVoList]
+	* @Return int
+	* @Author qiubo
+	* @Date 2020/5/19
+	* @Description 修改订单失败以后将其修改为没有订单单款状太
+	*/
+	public int updateNoOrderClearing(List<TransVo> transVoList);
+
+
+
+
+
+
+}

+ 8 - 0
src/main/java/com/hywa/banktest/service/PaymentLogService.java

@@ -0,0 +1,8 @@
+package com.hywa.banktest.service;
+
+import com.hywa.banktest.common.BaseService;
+import com.hywa.banktest.entity.PaymentLog;
+
+public interface PaymentLogService extends BaseService<PaymentLog,Integer> {
+
+}

+ 12 - 0
src/main/java/com/hywa/banktest/service/PaymentRecordService.java

@@ -0,0 +1,12 @@
+package com.hywa.banktest.service;
+
+import com.hywa.banktest.bankframework.pack.TransVo;
+import com.hywa.banktest.common.BaseService;
+import com.hywa.banktest.entity.PaymentRecord;
+
+import java.util.List;
+
+public interface PaymentRecordService extends BaseService<PaymentRecord,Integer> {
+
+    int batchSavePaymentRecordService(List<TransVo> list);
+}

+ 24 - 0
src/main/java/com/hywa/banktest/service/TreeOrderService.java

@@ -0,0 +1,24 @@
+package com.hywa.banktest.service;
+
+import com.hywa.banktest.common.AjaxJson;
+import com.hywa.banktest.common.OrderInfoClearingForm;
+
+/**
+ * @ClassName TreeOrderService
+ * @Description: TODO
+ * @Author qb
+ * @Date 2020/5/14
+ * @Version V1.0
+ * @ProjectName gzcarbon2.0
+ **/
+public interface TreeOrderService {
+    /**
+    * @MethodName
+    * @Param [orderInfoClearingForm]
+    * @Return AjaxJson
+    * @Author qiubo
+    * @Date 2020/5/14
+    * @Description 获取需要打款的数据
+    */
+    public AjaxJson makeClearingData(OrderInfoClearingForm orderInfoClearingForm);
+}

+ 0 - 0
src/main/java/com/hywa/banktest/service/impl/BaseServiceImpl.java


Some files were not shown because too many files changed in this diff