init version for new gitea
This commit is contained in:
38
target/classes/META-INF/MANIFEST.MF
Normal file
38
target/classes/META-INF/MANIFEST.MF
Normal file
@@ -0,0 +1,38 @@
|
||||
Manifest-Version: 1.0
|
||||
Main-Class: com.saye.hrs.HrsApplication
|
||||
Class-Path: jackson-databind-2.12.4.jar classmate-1.5.1.jar encoder-1.2.
|
||||
2.jar jackson-module-parameter-names-2.12.4.jar jackson-annotations-2.1
|
||||
2.4.jar jackson-datatype-jsr310-2.12.4.jar logback-classic-1.2.5.jar xm
|
||||
l-apis-1.4.01.jar spring-boot-starter-json-2.5.4.jar spring-web-5.3.9.j
|
||||
ar spring-aop-5.3.9.jar spring-boot-starter-web-2.5.4.jar spring-expres
|
||||
sion-5.3.9.jar nekohtml-1.9.21.jar commons-collections-3.2.2.jar dom4j-
|
||||
1.6.1.jar jackson-core-2.12.4.jar shiro-config-ogdl-1.6.0.jar spring-tx
|
||||
-5.3.9.jar jakarta.annotation-api-1.3.5.jar spring-beans-5.3.9.jar logb
|
||||
ack-core-1.2.5.jar spring-context-5.3.9.jar json-20160810.jar commons-i
|
||||
o-2.2.jar commons-beanutils-1.9.4.jar thymeleaf-extras-java8time-3.0.4.
|
||||
RELEASE.jar shiro-crypto-cipher-1.6.0.jar attoparser-2.0.5.RELEASE.jar
|
||||
springfox-core-2.6.1.jar shiro-crypto-hash-1.6.0.jar lombok-1.18.20.jar
|
||||
poi-3.14.jar jul-to-slf4j-1.7.32.jar mapstruct-1.0.0.Final.jar spring-
|
||||
boot-starter-thymeleaf-2.5.4.jar shiro-core-1.6.0.jar slf4j-api-1.7.32.
|
||||
jar jsqlparser-0.9.5.jar commons-codec-1
|
||||
.9.jar pagehelper-5.0.0.jar spring-boot-starter-logging-2.5.4.jar snake
|
||||
yaml-1.28.jar shiro-config-core-1.6.0.jar shiro-spring-1.6.0.jar spring-boot-2.5.4.jar mybatis-spring-boot-
|
||||
starter-2.2.0.jar mybatis-spring-boot-autoconfigure-2.2.0.jar javax.ser
|
||||
vlet-api-4.0.1.jar spring-plugin-metadata-1.2.0.RELEASE.jar fastjson-1.
|
||||
2.73.jar spring-jcl-5.3.9.jar spring-core-5.3
|
||||
.9.jar jsoup-1.13.1.jar stax-api-1.0.1.jar springfox-spi-2.6.1.jar swag
|
||||
ger-annotations-1.5.10.jar curvesapi-1.03.jar xmlbeans-2.6.0.jar spring
|
||||
-boot-starter-jdbc-2.5.4.jar spring-webmvc-5.3.9.jar thymeleaf-3.0.12.R
|
||||
ELEASE.jar poi-ooxml-3.14.jar jackson-datatype-jdk8-2.12.4.jar spring-p
|
||||
lugin-core-1.2.0.RELEASE.jar pagehelper-spring-boot-starter-1.2.3.jar x
|
||||
ercesImpl-2.10.0.jar shiro-event-1.6.0.jar mysql-connector-java-8.0.26.
|
||||
jar shiro-web-1.6.0.jar thymeleaf-spring5-3.0.12.RELEASE.jar spring-boo
|
||||
t-devtools-2.5.4.jar log4j-api-2.14.1.jar mybatis-3.5.7.jar springfox-s
|
||||
pring-web-2.6.1.jar unbescape-1.1.6.RELEASE.jar spring-jdbc-5.3.9.jar g
|
||||
uava-18.0.jar jaxen-1.1.6.jar log4j-to-slf4j-2.14.1.jar ueditor-1.4.3.3
|
||||
.jar commons-fileupload-1.3.2.jar HikariCP-4.0.3.jar spring-boot-starte
|
||||
r-2.5.4.jar shiro-lang-1.6.0.jar springfox
|
||||
-schema-2.6.1.jar pagehelper-spring-boot-autoconfigure-1.2.3.jar spring
|
||||
-boot-autoconfigure-2.5.4.jar mybatis-spring-2.0.6.jar shiro-cache-1.6.
|
||||
0.jar poi-ooxml-schemas-3.14.jar shiro-crypto-core-1.6.0.jar
|
||||
|
||||
93
target/classes/application-dev.yml
Normal file
93
target/classes/application-dev.yml
Normal file
@@ -0,0 +1,93 @@
|
||||
#
|
||||
server:
|
||||
port: 8083
|
||||
|
||||
spring:
|
||||
#定时任务
|
||||
quartz:
|
||||
#相关属性配置
|
||||
properties:
|
||||
org:
|
||||
quartz:
|
||||
scheduler:
|
||||
#调度标识名 集群中每一个实例都必须使用相同的名称
|
||||
instanceName: clusteredScheduler
|
||||
#ID设置为自动获取 每一个必须不同
|
||||
instanceId: AUTO
|
||||
jobStore:
|
||||
#数据保存方式为持久化
|
||||
class: org.quartz.impl.jdbcjobstore.JobStoreTX
|
||||
#数据库平台
|
||||
driverDelegateClass: org.quartz.impl.jdbcjobstore.StdJDBCDelegate
|
||||
#数据库别名 随便取
|
||||
dataSource: myXADS
|
||||
#表的前缀
|
||||
tablePrefix: QRTZ_
|
||||
#加入集群
|
||||
isClustered: false
|
||||
#调度实例失效的检查时间间隔
|
||||
clusterCheckinInterval: 10000
|
||||
#设置为TRUE不会出现序列化非字符串类到 BLOB 时产生的类版本问题
|
||||
useProperties: true
|
||||
#容许的最大作业延长时间
|
||||
misfireThreshold: 60000
|
||||
threadPool:
|
||||
#ThreadPool 实现的类名
|
||||
class: org.quartz.simpl.SimpleThreadPool
|
||||
#线程数量
|
||||
threadCount: 10
|
||||
#线程优先级
|
||||
threadPriority: 5
|
||||
#自创建父线程
|
||||
threadsInheritContextClassLoaderOfInitializingThread: true
|
||||
#数据库方式
|
||||
job-store-type: jdbc
|
||||
#初始化表结构
|
||||
#jdbc:
|
||||
#initialize-schema: never
|
||||
|
||||
#日志
|
||||
#logging:
|
||||
# level:
|
||||
# com.saye: debug
|
||||
# pattern:
|
||||
# console: "%d{yyyy/MM/dd-HH:mm:ss} [%thread] %-5level %logger- %msg%n"
|
||||
# file:
|
||||
# path: D:\saye\hrsmobile.log
|
||||
|
||||
#后台地址
|
||||
#IP_PORT: http://192.168.0.197:8080
|
||||
IP_PORT: http://127.0.0.1:8091
|
||||
|
||||
partnerSecret: c1112a94c030f0c9e0adcee17dd5b78b
|
||||
#机构渠道认证编码
|
||||
orgChnlCrtfCodg: BqK1kMStlhVDgN2uHf4EsLK/F2LjZPYJ81nK2eYQqxv0IyCmhxf/THj7Z767n/jc
|
||||
#定点医药机构编码
|
||||
orgCodg: H65280100086
|
||||
#定点医药机构小程序/H5应用ID
|
||||
orgAppId: 1GRUDB4KB2BE3F60C80A0000CF92F159
|
||||
#微信api地址 因为只能https 这里用了虚拟机转发
|
||||
wxApiUrl: http://114.55.41.222:8088/testapi/mipuserquery/userQuery/
|
||||
#微信获取token地址 因为只能https 这里用了虚拟机转发
|
||||
wxTokenUrl: http://114.55.41.222:8088/cgi-bin/token
|
||||
#小程序appid
|
||||
appid: wx83bc9715be856b14
|
||||
#小程序secret
|
||||
secret: 8b2d3e8cb0e590c9884d2c278519a200
|
||||
#商户号
|
||||
wxMchid: 1648728329
|
||||
#支付密钥
|
||||
wxWechartkey: 9b996ad13a7d11ee8c2b000c29686702
|
||||
#微信医保校验密钥
|
||||
wxybkey: f6d394fbc881fee73172232a08dc9c03
|
||||
#医保统一下单固定参数非前端传过来。
|
||||
cityId: 652800
|
||||
#渠道号
|
||||
channel: AAE0HBXIxnvWQyQR_gXP8rhD
|
||||
#证书路径 无
|
||||
wxCertPath:
|
||||
|
||||
#普通支付回调url
|
||||
notifyUrl: http://sayetest.f3322.org:12345/api/wxpay/notify
|
||||
#医保支付回调url
|
||||
ybNotifyUrl: http://sayetest.f3322.org:12345/api/wxybpay/notify
|
||||
90
target/classes/application-prod.yml
Normal file
90
target/classes/application-prod.yml
Normal file
@@ -0,0 +1,90 @@
|
||||
#
|
||||
server:
|
||||
port: 8083
|
||||
|
||||
spring:
|
||||
#定时任务
|
||||
quartz:
|
||||
#相关属性配置
|
||||
properties:
|
||||
org:
|
||||
quartz:
|
||||
scheduler:
|
||||
#调度标识名 集群中每一个实例都必须使用相同的名称
|
||||
instanceName: clusteredScheduler
|
||||
#ID设置为自动获取 每一个必须不同
|
||||
instanceId: AUTO
|
||||
jobStore:
|
||||
#数据保存方式为持久化
|
||||
class: org.quartz.impl.jdbcjobstore.JobStoreTX
|
||||
#数据库平台
|
||||
driverDelegateClass: org.quartz.impl.jdbcjobstore.StdJDBCDelegate
|
||||
#数据库别名 随便取
|
||||
dataSource: myXADS
|
||||
#表的前缀
|
||||
tablePrefix: QRTZ_
|
||||
#加入集群
|
||||
isClustered: false
|
||||
#调度实例失效的检查时间间隔
|
||||
clusterCheckinInterval: 10000
|
||||
#设置为TRUE不会出现序列化非字符串类到 BLOB 时产生的类版本问题
|
||||
useProperties: true
|
||||
#容许的最大作业延长时间
|
||||
misfireThreshold: 60000
|
||||
threadPool:
|
||||
#ThreadPool 实现的类名
|
||||
class: org.quartz.simpl.SimpleThreadPool
|
||||
#线程数量
|
||||
threadCount: 10
|
||||
#线程优先级
|
||||
threadPriority: 5
|
||||
#自创建父线程
|
||||
threadsInheritContextClassLoaderOfInitializingThread: true
|
||||
#数据库方式
|
||||
job-store-type: jdbc
|
||||
#初始化表结构
|
||||
#jdbc:
|
||||
#initialize-schema: never
|
||||
#日志
|
||||
#logging:
|
||||
# level:
|
||||
# com.saye: debug
|
||||
# pattern:
|
||||
# console: "%d{yyyy/MM/dd-HH:mm:ss} [%thread] %-5level %logger- %msg%n"
|
||||
# file:
|
||||
# path: D:\saye\hrsmobile.log
|
||||
#后台地址
|
||||
IP_PORT: http://12.0.2.1:8081
|
||||
#IP_PORT: http://localhost:8080
|
||||
|
||||
partnerSecret: 242b74ac93ef0a70be2fb2ab50f4d737
|
||||
#机构渠道认证编码
|
||||
orgChnlCrtfCodg: BqK1kMStlhVDgN2uHf4EsLK/F2LjZPYJ81nK2eYQqxv0IyCmhxf/THj7Z767n/jc
|
||||
#定点医药机构编码
|
||||
orgCodg: H65280100086
|
||||
#定点医药机构小程序/H5应用ID
|
||||
orgAppId: 1HR3CJDB700675430B0A000085775E9C
|
||||
#微信api地址
|
||||
wxApiUrl: https://mip-receiver.tengmed.com/api/mipuserquery/userQuery/
|
||||
#微信获取token地址
|
||||
wxTokenUrl: https://api.weixin.qq.com/cgi-bin/stable_token
|
||||
#小程序appid
|
||||
appid: wx83bc9715be856b14
|
||||
#小程序secret
|
||||
secret: 8b2d3e8cb0e590c9884d2c278519a200
|
||||
#商户号
|
||||
wxMchid: 1648728329
|
||||
#支付密钥
|
||||
wxWechartkey: 9b996ad13a7d11ee8c2b000c29686702
|
||||
#微信医保校验密钥
|
||||
wxybkey: f6d394fbc881fee73172232a08dc9c03
|
||||
#医保统一下单固定参数非前端传过来。
|
||||
cityId: 652800
|
||||
#渠道号
|
||||
channel: AAE0HBXIxnvWQyQR_gXP8rhD
|
||||
#证书路径 没有证书
|
||||
wxCertPath:
|
||||
#普通支付回调url
|
||||
notifyUrl: https://fy.btlsoln.com:8443/api/wxpay/notify
|
||||
#医保支付回调url
|
||||
ybNotifyUrl: https://fy.btlsoln.com:8443/api/wxybpay/notify
|
||||
5
target/classes/application.yml
Normal file
5
target/classes/application.yml
Normal file
@@ -0,0 +1,5 @@
|
||||
spring:
|
||||
profiles:
|
||||
active: prod
|
||||
|
||||
hospital_name: 库尔勒市妇幼保健院
|
||||
BIN
target/classes/com/saye/hrs/HrsApplication.class
Normal file
BIN
target/classes/com/saye/hrs/HrsApplication.class
Normal file
Binary file not shown.
BIN
target/classes/com/saye/hrs/ServletInitializer.class
Normal file
BIN
target/classes/com/saye/hrs/ServletInitializer.class
Normal file
Binary file not shown.
BIN
target/classes/com/saye/hrs/WebLog.class
Normal file
BIN
target/classes/com/saye/hrs/WebLog.class
Normal file
Binary file not shown.
BIN
target/classes/com/saye/hrs/WebLogAspect.class
Normal file
BIN
target/classes/com/saye/hrs/WebLogAspect.class
Normal file
Binary file not shown.
BIN
target/classes/com/saye/hrs/commons/HttpUtil.class
Normal file
BIN
target/classes/com/saye/hrs/commons/HttpUtil.class
Normal file
Binary file not shown.
BIN
target/classes/com/saye/hrs/commons/IPUtil.class
Normal file
BIN
target/classes/com/saye/hrs/commons/IPUtil.class
Normal file
Binary file not shown.
BIN
target/classes/com/saye/hrs/commons/JsonUtils.class
Normal file
BIN
target/classes/com/saye/hrs/commons/JsonUtils.class
Normal file
Binary file not shown.
BIN
target/classes/com/saye/hrs/commons/StringUtil.class
Normal file
BIN
target/classes/com/saye/hrs/commons/StringUtil.class
Normal file
Binary file not shown.
BIN
target/classes/com/saye/hrs/commons/date/DateDUtil.class
Normal file
BIN
target/classes/com/saye/hrs/commons/date/DateDUtil.class
Normal file
Binary file not shown.
BIN
target/classes/com/saye/hrs/commons/encrypt/EncryptUtil.class
Normal file
BIN
target/classes/com/saye/hrs/commons/encrypt/EncryptUtil.class
Normal file
Binary file not shown.
BIN
target/classes/com/saye/hrs/commons/encrypt/RSAUtil.class
Normal file
BIN
target/classes/com/saye/hrs/commons/encrypt/RSAUtil.class
Normal file
Binary file not shown.
Binary file not shown.
Binary file not shown.
BIN
target/classes/com/saye/hrs/commons/getBean/GetBeanUtil.class
Normal file
BIN
target/classes/com/saye/hrs/commons/getBean/GetBeanUtil.class
Normal file
Binary file not shown.
BIN
target/classes/com/saye/hrs/commons/idcard/Ic.class
Normal file
BIN
target/classes/com/saye/hrs/commons/idcard/Ic.class
Normal file
Binary file not shown.
BIN
target/classes/com/saye/hrs/commons/log/ExceptionDUtil.class
Normal file
BIN
target/classes/com/saye/hrs/commons/log/ExceptionDUtil.class
Normal file
Binary file not shown.
BIN
target/classes/com/saye/hrs/commons/log/LogUtil.class
Normal file
BIN
target/classes/com/saye/hrs/commons/log/LogUtil.class
Normal file
Binary file not shown.
Binary file not shown.
BIN
target/classes/com/saye/hrs/commons/string/StringDUtil.class
Normal file
BIN
target/classes/com/saye/hrs/commons/string/StringDUtil.class
Normal file
Binary file not shown.
BIN
target/classes/com/saye/hrs/commons/uuid/UUIDGenerator.class
Normal file
BIN
target/classes/com/saye/hrs/commons/uuid/UUIDGenerator.class
Normal file
Binary file not shown.
Binary file not shown.
BIN
target/classes/com/saye/hrs/commons/webservice/Item.class
Normal file
BIN
target/classes/com/saye/hrs/commons/webservice/Item.class
Normal file
Binary file not shown.
BIN
target/classes/com/saye/hrs/commons/webservice/ItemsData.class
Normal file
BIN
target/classes/com/saye/hrs/commons/webservice/ItemsData.class
Normal file
Binary file not shown.
BIN
target/classes/com/saye/hrs/commons/webservice/OtherWSUtil.class
Normal file
BIN
target/classes/com/saye/hrs/commons/webservice/OtherWSUtil.class
Normal file
Binary file not shown.
BIN
target/classes/com/saye/hrs/commons/webservice/Request.class
Normal file
BIN
target/classes/com/saye/hrs/commons/webservice/Request.class
Normal file
Binary file not shown.
BIN
target/classes/com/saye/hrs/commons/webservice/WSUtil.class
Normal file
BIN
target/classes/com/saye/hrs/commons/webservice/WSUtil.class
Normal file
Binary file not shown.
BIN
target/classes/com/saye/hrs/commons/wx/ClientDemo.class
Normal file
BIN
target/classes/com/saye/hrs/commons/wx/ClientDemo.class
Normal file
Binary file not shown.
BIN
target/classes/com/saye/hrs/commons/wxpay/MyConfig.class
Normal file
BIN
target/classes/com/saye/hrs/commons/wxpay/MyConfig.class
Normal file
Binary file not shown.
Binary file not shown.
BIN
target/classes/com/saye/hrs/commons/wxpay/WxPayConstants.class
Normal file
BIN
target/classes/com/saye/hrs/commons/wxpay/WxPayConstants.class
Normal file
Binary file not shown.
BIN
target/classes/com/saye/hrs/commons/wxpay/WxPayDUtil.class
Normal file
BIN
target/classes/com/saye/hrs/commons/wxpay/WxPayDUtil.class
Normal file
Binary file not shown.
BIN
target/classes/com/saye/hrs/commons/wxpay/WxPayXmlDUtil.class
Normal file
BIN
target/classes/com/saye/hrs/commons/wxpay/WxPayXmlDUtil.class
Normal file
Binary file not shown.
Binary file not shown.
BIN
target/classes/com/saye/hrs/commons/wxpay/pojo/WxPay.class
Normal file
BIN
target/classes/com/saye/hrs/commons/wxpay/pojo/WxPay.class
Normal file
Binary file not shown.
BIN
target/classes/com/saye/hrs/commons/wxpay/pojo/WxResult.class
Normal file
BIN
target/classes/com/saye/hrs/commons/wxpay/pojo/WxResult.class
Normal file
Binary file not shown.
BIN
target/classes/com/saye/hrs/config/LoginFilter.class
Normal file
BIN
target/classes/com/saye/hrs/config/LoginFilter.class
Normal file
Binary file not shown.
BIN
target/classes/com/saye/hrs/config/RestTemplateConfig.class
Normal file
BIN
target/classes/com/saye/hrs/config/RestTemplateConfig.class
Normal file
Binary file not shown.
BIN
target/classes/com/saye/hrs/config/VirtualPathConfig.class
Normal file
BIN
target/classes/com/saye/hrs/config/VirtualPathConfig.class
Normal file
Binary file not shown.
BIN
target/classes/com/saye/hrs/controller/ApiController.class
Normal file
BIN
target/classes/com/saye/hrs/controller/ApiController.class
Normal file
Binary file not shown.
BIN
target/classes/com/saye/hrs/controller/BookingController.class
Normal file
BIN
target/classes/com/saye/hrs/controller/BookingController.class
Normal file
Binary file not shown.
Binary file not shown.
BIN
target/classes/com/saye/hrs/controller/HisController.class
Normal file
BIN
target/classes/com/saye/hrs/controller/HisController.class
Normal file
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
BIN
target/classes/com/saye/hrs/controller/PayController.class
Normal file
BIN
target/classes/com/saye/hrs/controller/PayController.class
Normal file
Binary file not shown.
BIN
target/classes/com/saye/hrs/controller/WXFKController.class
Normal file
BIN
target/classes/com/saye/hrs/controller/WXFKController.class
Normal file
Binary file not shown.
BIN
target/classes/com/saye/hrs/controller/WxybPayController.class
Normal file
BIN
target/classes/com/saye/hrs/controller/WxybPayController.class
Normal file
Binary file not shown.
BIN
target/classes/com/saye/hrs/dto/AuthNoGet.class
Normal file
BIN
target/classes/com/saye/hrs/dto/AuthNoGet.class
Normal file
Binary file not shown.
BIN
target/classes/com/saye/hrs/dto/CancelPreSettlementDTO.class
Normal file
BIN
target/classes/com/saye/hrs/dto/CancelPreSettlementDTO.class
Normal file
Binary file not shown.
BIN
target/classes/com/saye/hrs/dto/PatientFeeQuery.class
Normal file
BIN
target/classes/com/saye/hrs/dto/PatientFeeQuery.class
Normal file
Binary file not shown.
BIN
target/classes/com/saye/hrs/dto/PatientFeeSettledQuery.class
Normal file
BIN
target/classes/com/saye/hrs/dto/PatientFeeSettledQuery.class
Normal file
Binary file not shown.
BIN
target/classes/com/saye/hrs/dto/PayQuery.class
Normal file
BIN
target/classes/com/saye/hrs/dto/PayQuery.class
Normal file
Binary file not shown.
BIN
target/classes/com/saye/hrs/dto/PreSettlementQuery.class
Normal file
BIN
target/classes/com/saye/hrs/dto/PreSettlementQuery.class
Normal file
Binary file not shown.
BIN
target/classes/com/saye/hrs/dto/Result.class
Normal file
BIN
target/classes/com/saye/hrs/dto/Result.class
Normal file
Binary file not shown.
BIN
target/classes/com/saye/hrs/dto/ResultDTO.class
Normal file
BIN
target/classes/com/saye/hrs/dto/ResultDTO.class
Normal file
Binary file not shown.
BIN
target/classes/com/saye/hrs/dto/SettlementDTO.class
Normal file
BIN
target/classes/com/saye/hrs/dto/SettlementDTO.class
Normal file
Binary file not shown.
BIN
target/classes/com/saye/hrs/dto/WxAppletPayRequest.class
Normal file
BIN
target/classes/com/saye/hrs/dto/WxAppletPayRequest.class
Normal file
Binary file not shown.
BIN
target/classes/com/saye/hrs/dto/WxybAppletReuqest.class
Normal file
BIN
target/classes/com/saye/hrs/dto/WxybAppletReuqest.class
Normal file
Binary file not shown.
BIN
target/classes/com/saye/hrs/dto/WxybPay.class
Normal file
BIN
target/classes/com/saye/hrs/dto/WxybPay.class
Normal file
Binary file not shown.
BIN
target/classes/com/saye/hrs/enums/CodeMessageEnum.class
Normal file
BIN
target/classes/com/saye/hrs/enums/CodeMessageEnum.class
Normal file
Binary file not shown.
BIN
target/classes/com/saye/hrs/enums/MedTradeStateEnum.class
Normal file
BIN
target/classes/com/saye/hrs/enums/MedTradeStateEnum.class
Normal file
Binary file not shown.
BIN
target/classes/com/saye/hrs/model/MessageVo.class
Normal file
BIN
target/classes/com/saye/hrs/model/MessageVo.class
Normal file
Binary file not shown.
BIN
target/classes/com/saye/hrs/model/OrderNameVo.class
Normal file
BIN
target/classes/com/saye/hrs/model/OrderNameVo.class
Normal file
Binary file not shown.
BIN
target/classes/com/saye/hrs/model/StatusDefine.class
Normal file
BIN
target/classes/com/saye/hrs/model/StatusDefine.class
Normal file
Binary file not shown.
BIN
target/classes/com/saye/hrs/model/WxybResult.class
Normal file
BIN
target/classes/com/saye/hrs/model/WxybResult.class
Normal file
Binary file not shown.
BIN
target/classes/com/saye/hrs/model/YbPassbackParams.class
Normal file
BIN
target/classes/com/saye/hrs/model/YbPassbackParams.class
Normal file
Binary file not shown.
BIN
target/classes/com/saye/hrs/scheduler/LoadStatusDefine.class
Normal file
BIN
target/classes/com/saye/hrs/scheduler/LoadStatusDefine.class
Normal file
Binary file not shown.
BIN
target/classes/com/saye/hrs/scheduler/RetrieveAccessToken.class
Normal file
BIN
target/classes/com/saye/hrs/scheduler/RetrieveAccessToken.class
Normal file
Binary file not shown.
BIN
target/classes/com/saye/hrs/scheduler/factory/MyJobFactory.class
Normal file
BIN
target/classes/com/saye/hrs/scheduler/factory/MyJobFactory.class
Normal file
Binary file not shown.
Binary file not shown.
Binary file not shown.
BIN
target/classes/com/saye/hrs/scheduler/job/CheckRecharge.class
Normal file
BIN
target/classes/com/saye/hrs/scheduler/job/CheckRecharge.class
Normal file
Binary file not shown.
BIN
target/classes/com/saye/hrs/scheduler/job/WXManualToken.class
Normal file
BIN
target/classes/com/saye/hrs/scheduler/job/WXManualToken.class
Normal file
Binary file not shown.
BIN
target/classes/com/saye/hrs/service/CallNumbersService.class
Normal file
BIN
target/classes/com/saye/hrs/service/CallNumbersService.class
Normal file
Binary file not shown.
BIN
target/classes/com/saye/hrs/service/HisViewSearchService.class
Normal file
BIN
target/classes/com/saye/hrs/service/HisViewSearchService.class
Normal file
Binary file not shown.
Binary file not shown.
Binary file not shown.
BIN
target/classes/com/saye/hrs/service/PayService.class
Normal file
BIN
target/classes/com/saye/hrs/service/PayService.class
Normal file
Binary file not shown.
BIN
target/classes/com/saye/hrs/service/ServiceParamService.class
Normal file
BIN
target/classes/com/saye/hrs/service/ServiceParamService.class
Normal file
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
BIN
target/classes/com/saye/hrs/service/impl/PayServiceImpl.class
Normal file
BIN
target/classes/com/saye/hrs/service/impl/PayServiceImpl.class
Normal file
Binary file not shown.
Binary file not shown.
BIN
target/classes/com/saye/hrs/vo/DeptListVo.class
Normal file
BIN
target/classes/com/saye/hrs/vo/DeptListVo.class
Normal file
Binary file not shown.
BIN
target/classes/com/saye/hrs/vo/DeptVo.class
Normal file
BIN
target/classes/com/saye/hrs/vo/DeptVo.class
Normal file
Binary file not shown.
BIN
target/classes/com/saye/hrs/vo/FeeInfoDetailVO.class
Normal file
BIN
target/classes/com/saye/hrs/vo/FeeInfoDetailVO.class
Normal file
Binary file not shown.
BIN
target/classes/com/saye/hrs/vo/FeeInfoVO.class
Normal file
BIN
target/classes/com/saye/hrs/vo/FeeInfoVO.class
Normal file
Binary file not shown.
BIN
target/classes/com/saye/hrs/vo/FeeSettledInfoVO.class
Normal file
BIN
target/classes/com/saye/hrs/vo/FeeSettledInfoVO.class
Normal file
Binary file not shown.
BIN
target/classes/com/saye/hrs/vo/MZJSPreDetailVO.class
Normal file
BIN
target/classes/com/saye/hrs/vo/MZJSPreDetailVO.class
Normal file
Binary file not shown.
BIN
target/classes/com/saye/hrs/vo/MZJSPreVO.class
Normal file
BIN
target/classes/com/saye/hrs/vo/MZJSPreVO.class
Normal file
Binary file not shown.
56
target/classes/logback-spring.xml
Normal file
56
target/classes/logback-spring.xml
Normal file
@@ -0,0 +1,56 @@
|
||||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<configuration>
|
||||
<property resource="application.yml"/>
|
||||
|
||||
<!--定义日志文件的存储地址 勿在 LogBack 的配置中使用相对路径-->
|
||||
<property name="LOG_HOME" value="d:/saye/hrsmobile" />
|
||||
|
||||
<!-- 控制台日志 -->
|
||||
<appender name="STDOUT" class="ch.qos.logback.core.ConsoleAppender">
|
||||
<!-- encoder 默认配置为PatternLayoutEncoder -->
|
||||
<encoder>
|
||||
<pattern>%d{yyyy-MM-dd HH:mm:ss.SSS} [%thread] %-5level %logger{50} - %msg%n</pattern>
|
||||
</encoder>
|
||||
</appender>
|
||||
|
||||
<!-- 按照每天生成日志文件 -->
|
||||
<appender name="FILE" class="ch.qos.logback.core.rolling.RollingFileAppender">
|
||||
<rollingPolicy class="ch.qos.logback.core.rolling.TimeBasedRollingPolicy">
|
||||
<!--日志文件输出的文件名-->
|
||||
<FileNamePattern>${LOG_HOME}/hrsmobile.log.%d{yyyy-MM-dd}.log</FileNamePattern>
|
||||
<!--日志文件保留天数-->
|
||||
<maxHistory>100</maxHistory>
|
||||
</rollingPolicy>
|
||||
<encoder class="ch.qos.logback.classic.encoder.PatternLayoutEncoder">
|
||||
<!--格式化输出:%d表示日期,%thread表示线程名,%-5level:级别从左显示5个字符宽度%msg:日志消息,%n是换行符-->
|
||||
<pattern>%d{yyyy-MM-dd HH:mm:ss.SSS} [%thread] %-5level %logger{50} - %msg%n</pattern>
|
||||
</encoder>
|
||||
</appender>
|
||||
|
||||
<root level="INFO">
|
||||
<appender-ref ref="STDOUT" />
|
||||
<appender-ref ref="FILE" />
|
||||
</root>
|
||||
|
||||
<logger name="com.saye" level="DEBUG" additivity="false">
|
||||
<appender-ref ref="STDOUT" />
|
||||
<appender-ref ref="FILE" />
|
||||
</logger>
|
||||
|
||||
|
||||
<!-- <appender name="RocketmqClientAppender" class="ch.qos.logback.core.rolling.RollingFileAppender">-->
|
||||
<!-- <file>${LOG_HOME}/ab.log</file>-->
|
||||
<!-- <rollingPolicy class="ch.qos.logback.core.rolling.TimeBasedRollingPolicy">-->
|
||||
<!-- <fileNamePattern>${LOG_HOME}/history/rocketmq_client.%d{yyyyMMdd}.log</fileNamePattern>-->
|
||||
<!-- <!–保留时间,单位:天–>-->
|
||||
<!-- <maxHistory>30</maxHistory>-->
|
||||
<!-- </rollingPolicy>-->
|
||||
<!-- <encoder charset="UTF-8">-->
|
||||
<!-- <pattern>%d{yy-MM-dd.HH:mm:ss.SSS} [%-16t] %-5p %-22c{0} %X{ServiceId} - %m%n</pattern>-->
|
||||
<!-- </encoder>-->
|
||||
<!-- </appender>-->
|
||||
<!-- <logger name="RocketmqClient" additivity="false">-->
|
||||
<!-- <level value="warn" />-->
|
||||
<!-- <appender-ref ref="RocketmqClientAppender"/>-->
|
||||
<!-- </logger>-->
|
||||
</configuration>
|
||||
BIN
target/hrsmobile-0.0.1-SNAPSHOT.war
Normal file
BIN
target/hrsmobile-0.0.1-SNAPSHOT.war
Normal file
Binary file not shown.
BIN
target/hrsmobile-0.0.1-SNAPSHOT.war.original
Normal file
BIN
target/hrsmobile-0.0.1-SNAPSHOT.war.original
Normal file
Binary file not shown.
Some files were not shown because too many files have changed in this diff Show More
Reference in New Issue
Block a user