瀏覽代碼

新需求

傅行帆 5 年之前
父節點
當前提交
387054d1de

+ 1
- 0
src/main/java/com/huiju/estateagents/config/FadadaProperties.java 查看文件

@@ -14,4 +14,5 @@ public class FadadaProperties {
14 14
     private String version;
15 15
     private String serveHost;
16 16
     private String companyNotify;
17
+    private String signNotify;
17 18
 }

+ 24
- 5
src/main/java/com/huiju/estateagents/eContract/controller/TaCompanyController.java 查看文件

@@ -406,12 +406,13 @@ public class TaCompanyController extends BaseController {
406 406
      *
407 407
      */
408 408
     @RequestMapping(value = "/fadd/company", method = RequestMethod.POST)
409
-    public void faddCompanyNitify(@RequestParam String companyName,
410
-                                  @RequestParam String transactionNo,
411
-                                  @RequestParam String authenticationType,
412
-                                  @RequestParam String status,
409
+    public void faddCompanyNotify(@RequestParam(value = "companyName",required = false) String companyName,
410
+                                  @RequestParam(value = "transactionNo",required = false) String transactionNo,
411
+                                  @RequestParam(value = "authenticationType",required = false) String authenticationType,
412
+                                  @RequestParam(value = "status",required = false) String status,
413
+                                  @RequestParam(value = "personName",required = false) String personName,
413 414
                                   HttpServletRequest request) {
414
-        logger.info("企业认证回调函数参数:公司名称{},交易号{},认证类型{},状态,{}",companyName,transactionNo,authenticationType,status);
415
+        logger.info("企业认证回调函数参数:公司名称{},交易号{},认证类型{},状态,{}, 人员名称{}",companyName,transactionNo,authenticationType,status,personName);
415 416
         QueryWrapper<TaCompany> taCompanyQueryWrapper = new QueryWrapper<>();
416 417
         taCompanyQueryWrapper.eq("certified_serial_number",transactionNo);
417 418
         TaCompany taCompany = iTaCompanyService.getOne(taCompanyQueryWrapper);
@@ -425,4 +426,22 @@ public class TaCompanyController extends BaseController {
425 426
     public ResponseBean autoAuthCompanySeal(Integer companyId, HttpServletRequest request){
426 427
         return null;
427 428
     }
429
+
430
+
431
+    /**
432
+     * 手动签署回调函数
433
+     *
434
+     */
435
+    @RequestMapping(value = "/fadd/sign", method = RequestMethod.POST)
436
+    public void faddSignNotify(@RequestParam(value = "transaction_id ",required = false) String transaction_id,
437
+                                  @RequestParam(value = "contract_id ",required = false) String contract_id,
438
+                                  @RequestParam(value = "result_code",required = false) String result_code,
439
+                                  @RequestParam(value = "result_desc",required = false) String result_desc,
440
+                                  @RequestParam(value = "download_url",required = false) String download_url,
441
+                                  @RequestParam(value = "viewpdf_url",required = false) String viewpdf_url,
442
+                                  @RequestParam(value = "timestamp",required = false) String timestamp,
443
+                                  @RequestParam(value = "msg_digest",required = false) String msg_digest,
444
+                                  HttpServletRequest request) {
445
+        logger.info("企业认证回调函数参数:交易号 {},合同编号 {},签章结果代码 {},签章结果描述 ,{}, 下载地址{}, 查看地址 {},请求时间 {}, 摘要 {} ",transaction_id,contract_id,result_code,result_desc,download_url,viewpdf_url,timestamp,msg_digest);
446
+    }
428 447
 }

+ 3
- 1
src/main/java/com/huiju/estateagents/eContract/controller/TaContractController.java 查看文件

@@ -274,7 +274,7 @@ public class TaContractController extends BaseController {
274 274
 
275 275
 
276 276
     /**
277
-     * 动签署合同
277
+     * 动签署合同
278 278
      */
279 279
     @RequestMapping(value = "/wx/contract/manual", method = RequestMethod.POST)
280 280
     public ResponseBean manualContract(@RequestBody TaContract taContract, HttpServletRequest request) {
@@ -295,4 +295,6 @@ public class TaContractController extends BaseController {
295 295
         }
296 296
         return responseBean;
297 297
     }
298
+
299
+
298 300
 }

+ 2
- 2
src/main/java/com/huiju/estateagents/eContract/service/impl/TaContractServiceImpl.java 查看文件

@@ -173,8 +173,8 @@ public class TaContractServiceImpl extends ServiceImpl<TaContractMapper, TaContr
173 173
         req.setSign_keyword(taContractBusiness.getCustomerKeywords());
174 174
         req.setKeyword_strategy(taContractBusiness.getCustomerStrategy());
175 175
         req.setDoc_title(taContractBusiness.getContractTemplateName());
176
-        req.setReturn_url("www.baidu.com");
177
-        req.setNotify_url("www.baidu.com");
176
+        req.setReturn_url("/onlineSelling/pages/raiseMoney/signResult");
177
+        req.setNotify_url(fadadaProperties.getSignNotify());
178 178
         String signUrl = base.invokeExtSign(req);
179 179
         return signUrl;
180 180
     }

+ 2
- 2
src/main/java/com/huiju/estateagents/eContract/service/impl/TaContractUserServiceImpl.java 查看文件

@@ -85,8 +85,8 @@ public class TaContractUserServiceImpl extends ServiceImpl<TaContractUserMapper,
85 85
         String customer_id = jsonObject.getString("data");
86 86
         String verifyed_way = "0";
87 87
         String page_modify = "1";
88
-        String notify_url = "https://www.baidu.com";
89
-        String return_url= "https://www.baidu.com"+"?raiseRecordId=" + taRaiseRecord.getRaiseRecordId();
88
+        String notify_url = fadadaProperties.getCompanyNotify();
89
+        String return_url= "/onlineSelling/pages/raiseMoney/Certification?id=" + taRaiseRecord.getRaiseRecordId();
90 90
         String customer_ident_type = "0";
91 91
         String personResult = personverify.invokePersonVerifyUrl(customer_id,verifyed_way,
92 92
                 page_modify,notify_url,return_url,null,customer_ident_type,

+ 2
- 1
src/main/resources/application-blue.yml 查看文件

@@ -84,4 +84,5 @@ fadada:
84 84
   appSecret: "xcIaK36Vc09yXXRdinXYcXhW"
85 85
   version: "2.0"
86 86
   serveHost: "https://testapi.fadada.com:8443/api/"
87
-  companyNotify: "https://dev.pawoma.cn/api/fadd/company"
87
+  companyNotify: "https://dev.pawoma.cn/api/fadd/company"
88
+  signNotify: "https://dev.pawoma.cn/api/fadd/sign"

+ 0
- 74
src/main/resources/application-dev.yml 查看文件

@@ -1,74 +0,0 @@
1
-server:
2
-  port: 8080
3
-spring:
4
-  application:
5
-    name: estateagents
6
-  datasource:
7
-    username: estateagents
8
-    password: estateagents
9
-    url: jdbc:mysql://47.101.36.130:3306/estateagents_3.5.1_test?useUnicode=true&serverTimezone=GMT%2B8&characterEncoding=utf8&allowMultiQueries=true&autoReconnect=true&zeroDateTimeBehavior=convertToNull
10
-    driver-class-name: com.mysql.cj.jdbc.Driver
11
-    initial-size: 10 # 初始化连接数
12
-    max-active: 20 # 最大连接数
13
-    min-idle: 8 # 最小空闲数
14
-    max-idle: 8 # 最大空闲数
15
-  servlet:
16
-    multipart:
17
-      max-file-size: 10MB
18
-      max-request-size: 50MB
19
-
20
-##mybatis-plus
21
-mybatis-plus:
22
-  configuration:
23
-    log-impl: org.apache.ibatis.logging.stdout.StdOutImpl
24
-    call-setters-on-nulls: true
25
-  mapper-locations: classpath:mapper/**/*.xml
26
-wx:
27
-  miniapp:
28
-    appid: wxd6f47a9bb3052175
29
-    secret: 28f33b6bbc0f778c11a0bb234a7d6d4e
30
-    token:
31
-    aesKey:
32
-    msgDataFormat: JSON
33
-  tpls:
34
-    - name: notice
35
-      id: 6hWKexNlaVpAOvrcWxHHQ_Duz1gRIkg2-Clsktp2-Os
36
-      keywords: 4
37
-    - name: newCustomer
38
-      id: WiBYjqkE9KvwDv1WSq5vnuv5A6FSaOB8ETFcrVmtCEI
39
-      keywords: 4
40
-    - name: mainbiz
41
-      id: WiBYjqkE9KvwDv1WSq5vniGU4P0gvwlat-5ENYKpfxg
42
-      keywords: 6
43
-ali:
44
-  accessKeyId: LTAI4FdMQNh1xUoiqqbKJ15J
45
-  accessKeySecret: F7vmuXBu8IrhouQYYhFMLRhIRivIzb
46
-  oss:
47
-    endpoint: oss-cn-shanghai.aliyuncs.com
48
-    bucketName: njcj
49
-    bucketURL: https://njcj.oss-cn-shanghai.aliyuncs.com
50
-
51
-# 手机短信服务
52
-sms:
53
-  url: http://micservice.ycjcjy.com/sms
54
-  method: POST
55
-  contentType: "application/json;charset=UTF-8"
56
-  template:
57
-    code:
58
-    tel:
59
-    params:
60
-
61
-  # 以下为各模板 code
62
-  # 验证码
63
-  captcha:
64
-    # 模板 code
65
-    code: "0301"
66
-    # 有效时间 秒
67
-    expire: 120
68
-    # 验证码长度
69
-    size: 4
70
-    # 短信签名
71
-    sign: 营销云
72
-
73
-  visitor:
74
-    code: "0501"

+ 2
- 1
src/main/resources/application-green.yml 查看文件

@@ -84,4 +84,5 @@ fadada:
84 84
   appSecret: "xcIaK36Vc09yXXRdinXYcXhW"
85 85
   version: "2.0"
86 86
   serveHost: "https://testapi.fadada.com:8443/api/"
87
-  companyNotify: "https://dev.pawoma.cn/api/fadd/company"
87
+  companyNotify: "https://dev.pawoma.cn/api/fadd/company"
88
+  signNotify: "https://dev.pawoma.cn/api/fadd/sign"

+ 0
- 129
src/main/resources/application-gzysd.yml 查看文件

@@ -1,129 +0,0 @@
1
-<<<<<<< HEAD
2
-server:
3
-  port: 8009
4
-spring:
5
-  application:
6
-    name: estateagents
7
-  datasource:
8
-    username: estateagents
9
-    password: DQ@0lW##kBb2+-jPZ
10
-    url: jdbc:mysql://rm-uf6z3z6jq11x653d77o.mysql.rds.aliyuncs.com:3306/estateagents_17?useUnicode=true&serverTimezone=CTT&characterEncoding=utf8&allowMultiQueries=true&autoReconnect=true&zeroDateTimeBehavior=convertToNull
11
-    driver-class-name: com.mysql.cj.jdbc.Driver
12
-    initial-size: 10 # 初始化连接数
13
-    max-active: 20 # 最大连接数
14
-    min-idle: 8 # 最小空闲数
15
-    max-idle: 8 # 最大空闲数
16
-  servlet:
17
-    multipart:
18
-      max-file-size: 10MB
19
-      max-request-size: 50MB
20
-
21
-##mybatis-plus
22
-mybatis-plus:
23
-  configuration:
24
-    log-impl: org.apache.ibatis.logging.stdout.StdOutImpl
25
-    call-setters-on-nulls: true
26
-  mapper-locations: classpath:mapper/**/*.xml
27
-wx:
28
-  miniapp:
29
-    appid: wxe3b1e683853800b5
30
-    secret: 207dd6d0f807b2dd0d41b57a8184365f
31
-    token:
32
-    aesKey:
33
-    msgDataFormat: JSON
34
-  tpls:
35
-    - name: notice
36
-      id: 6hWKexNlaVpAOvrcWxHHQ_Duz1gRIkg2-Clsktp2-Os
37
-      keywords: 4
38
-    - name: newCustomer
39
-      id: WiBYjqkE9KvwDv1WSq5vnuv5A6FSaOB8ETFcrVmtCEI
40
-      keywords: 4
41
-    - name: mainbiz
42
-      id: IywdSfNPegeg5GB3Q-TVieSYD9DA0im8eI-hF_u0i-4
43
-      keywords: 6
44
-ali:
45
-  accessKeyId: LTAIkc75dpkJw8Lb
46
-  accessKeySecret: v4bvXCaix6vSDTCFfwSAdqV53iFEQw
47
-  oss:
48
-    endpoint: oss-cn-shanghai.aliyuncs.com
49
-    bucketName: estateagents
50
-    bucketURL: https://estateagents.oss-cn-shanghai.aliyuncs.com
51
-
52
-# 手机短信服务
53
-sms:
54
-  url: http://micservice.ycjcjy.com/sms
55
-  method: POST
56
-  contentType: "application/json;charset=UTF-8"
57
-  template:
58
-    code:
59
-    tel:
60
-    params:
61
-
62
-  # 以下为各模板 code
63
-  # 验证码
64
-  captcha:
65
-    # 模板 code
66
-    code: "0301"
67
-    # 有效时间 秒
68
-    expire: 120
69
-    # 验证码长度
70
-    size: 4
71
-    # 短信签名
72
-    sign: AI智慧案场
73
-
74
-  visitor:
75
-    code: "0501"
76
-=======
77
-server:
78
-  port: 8009
79
-spring:
80
-  application:
81
-    name: estateagents
82
-  datasource:
83
-    username: estateagents
84
-    password: DQ@0lW##kBb2+-jPZ
85
-    url: jdbc:mysql://rm-uf6z3z6jq11x653d77o.mysql.rds.aliyuncs.com:3306/estateagents_gzysd?useUnicode=true&serverTimezone=CTT&characterEncoding=utf8&allowMultiQueries=true&autoReconnect=true&zeroDateTimeBehavior=convertToNull
86
-    driver-class-name: com.mysql.cj.jdbc.Driver
87
-    initial-size: 10 # 初始化连接数
88
-    max-active: 20 # 最大连接数
89
-    min-idle: 8 # 最小空闲数
90
-    max-idle: 8 # 最大空闲数
91
-  servlet:
92
-    multipart:
93
-      max-file-size: 10MB
94
-      max-request-size: 50MB
95
-
96
-##mybatis-plus
97
-mybatis-plus:
98
-  configuration:
99
-    log-impl: org.apache.ibatis.logging.stdout.StdOutImpl
100
-    call-setters-on-nulls: true
101
-  mapper-locations: classpath:mapper/*.xml
102
-wx:
103
-  miniapp:
104
-    appid: wxe3b1e683853800b5
105
-    secret: 207dd6d0f807b2dd0d41b57a8184365f
106
-    token:
107
-    aesKey:
108
-    msgDataFormat: JSON
109
-  tpls:
110
-    - name: notice
111
-      id: IVWM-wpzSNV6CyXeSBGBgRku2lRrZ-3x4vXRILQpHM0
112
-      keywords: 4
113
-    - name: newCustomer
114
-      id: WiBYjqkE9KvwDv1WSq5vnuv5A6FSaOB8ETFcrVmtCEI
115
-      keywords: 4
116
-    - name: mainbiz
117
-      id: IywdSfNPegeg5GB3Q-TVieSYD9DA0im8eI-hF_u0i-4
118
-
119
-      keywords: 6
120
-ali:
121
-  accessKeyId: LTAI4FdMQNh1xUoiqqbKJ15J
122
-  accessKeySecret: F7vmuXBu8IrhouQYYhFMLRhIRivIzb
123
-  oss:
124
-    endpoint: oss-cn-shanghai.aliyuncs.com
125
-    bucketName: njcj
126
-    bucketURL: https://njcj.oss-cn-shanghai.aliyuncs.com
127
-
128
-
129
->>>>>>> ac499f2ddc4d4469098e59fff8bbe310779f7be3

+ 0
- 52
src/main/resources/application-hj.yml 查看文件

@@ -1,52 +0,0 @@
1
-server:
2
-  port: 8011
3
-spring:
4
-  application:
5
-    name: estateagents
6
-  datasource:
7
-    username: estateagents
8
-    password: DQ@0lW##kBb2+-jPZ
9
-    url: jdbc:mysql://rm-uf6z3z6jq11x653d77o.mysql.rds.aliyuncs.com:3306/estateagents_hj?useUnicode=true&serverTimezone=CTT&characterEncoding=utf8&allowMultiQueries=true&autoReconnect=true&zeroDateTimeBehavior=convertToNull
10
-    driver-class-name: com.mysql.cj.jdbc.Driver
11
-    initial-size: 10 # 初始化连接数
12
-    max-active: 20 # 最大连接数
13
-    min-idle: 8 # 最小空闲数
14
-    max-idle: 8 # 最大空闲数
15
-  servlet:
16
-    multipart:
17
-      max-file-size: 10MB
18
-      max-request-size: 50MB
19
-
20
-##mybatis-plus
21
-mybatis-plus:
22
-  configuration:
23
-    log-impl: org.apache.ibatis.logging.stdout.StdOutImpl
24
-    call-setters-on-nulls: true
25
-  mapper-locations: classpath:mapper/*.xml
26
-wx:
27
-  miniapp:
28
-    appid: wx03aca9d7d9b0b7f1
29
-    secret: f85aa21010204969b0f9a16f81de8a4b
30
-    token:
31
-    aesKey:
32
-    msgDataFormat: JSON
33
-  tpls:
34
-    - name: notice
35
-      id: Dflyeuyy76tCpam6OfVMblBaiog9fBt4NGAxbLPQ6AI
36
-      keywords: 4
37
-    - name: newCustomer
38
-      id: WiBYjqkE9KvwDv1WSq5vnuv5A6FSaOB8ETFcrVmtCEI
39
-      keywords: 4
40
-    - name: mainbiz
41
-      id: BDrgtJK9zul0gtHhHwY31x7kDH8BWGJxKvkj1wPzB4E
42
-
43
-      keywords: 6
44
-ali:
45
-  accessKeyId: LTAI4FdMQNh1xUoiqqbKJ15J
46
-  accessKeySecret: F7vmuXBu8IrhouQYYhFMLRhIRivIzb
47
-  oss:
48
-    endpoint: oss-cn-shanghai.aliyuncs.com
49
-    bucketName: njcj
50
-    bucketURL: https://njcj.oss-cn-shanghai.aliyuncs.com
51
-
52
-

+ 0
- 52
src/main/resources/application-jj.yml 查看文件

@@ -1,52 +0,0 @@
1
-server:
2
-  port: 8013
3
-spring:
4
-  application:
5
-    name: estateagents
6
-  datasource:
7
-    username: estateagents
8
-    password: DQ@0lW##kBb2+-jPZ
9
-    url: jdbc:mysql://rm-uf6z3z6jq11x653d77o.mysql.rds.aliyuncs.com:3306/estateagents_jj?useUnicode=true&serverTimezone=CTT&characterEncoding=utf8&allowMultiQueries=true&autoReconnect=true&zeroDateTimeBehavior=convertToNull
10
-    driver-class-name: com.mysql.cj.jdbc.Driver
11
-    initial-size: 10 # 初始化连接数
12
-    max-active: 20 # 最大连接数
13
-    min-idle: 8 # 最小空闲数
14
-    max-idle: 8 # 最大空闲数
15
-  servlet:
16
-    multipart:
17
-      max-file-size: 10MB
18
-      max-request-size: 50MB
19
-
20
-##mybatis-plus
21
-mybatis-plus:
22
-  configuration:
23
-    log-impl: org.apache.ibatis.logging.stdout.StdOutImpl
24
-    call-setters-on-nulls: true
25
-  mapper-locations: classpath:mapper/*.xml
26
-wx:
27
-  miniapp:
28
-    appid: wx7183d7d918a426d3
29
-    secret: d06320d36d0b706f981da20b796c5875
30
-    token:
31
-    aesKey:
32
-    msgDataFormat: JSON
33
-  tpls:
34
-    - name: notice
35
-      id: 80jdxzuPITEffVNC1KD1IGvbOxGkipTJlrxPosQrz0s
36
-      keywords: 4
37
-    - name: newCustomer
38
-      id: WiBYjqkE9KvwDv1WSq5vnuv5A6FSaOB8ETFcrVmtCEI
39
-      keywords: 4
40
-    - name: mainbiz
41
-      id: UbuzqEqULHf_NAZHay_3RJPGHm1g11YYU2R66ASq5Uw
42
-
43
-      keywords: 6
44
-ali:
45
-  accessKeyId: LTAI4FdMQNh1xUoiqqbKJ15J
46
-  accessKeySecret: F7vmuXBu8IrhouQYYhFMLRhIRivIzb
47
-  oss:
48
-    endpoint: oss-cn-shanghai.aliyuncs.com
49
-    bucketName: njcj
50
-    bucketURL: https://njcj.oss-cn-shanghai.aliyuncs.com
51
-
52
-

+ 0
- 75
src/main/resources/application-nj.yml 查看文件

@@ -1,75 +0,0 @@
1
-server:
2
-  port: 8007
3
-spring:
4
-  application:
5
-    name: estateagents
6
-  datasource:
7
-    username: estateagents
8
-    password: DQ@0lW##kBb2+-jPZ
9
-    url: jdbc:mysql://rm-uf6z3z6jq11x653d77o.mysql.rds.aliyuncs.com:3306/estateagents_nj?useUnicode=true&serverTimezone=CTT&characterEncoding=utf8&allowMultiQueries=true&autoReconnect=true&zeroDateTimeBehavior=convertToNull
10
-    driver-class-name: com.mysql.cj.jdbc.Driver
11
-    initial-size: 10 # 初始化连接数
12
-    max-active: 20 # 最大连接数
13
-    min-idle: 8 # 最小空闲数
14
-    max-idle: 8 # 最大空闲数
15
-  servlet:
16
-    multipart:
17
-      max-file-size: 10MB
18
-      max-request-size: 50MB
19
-
20
-##mybatis-plus
21
-mybatis-plus:
22
-  configuration:
23
-    log-impl: org.apache.ibatis.logging.stdout.StdOutImpl
24
-    call-setters-on-nulls: true
25
-  mapper-locations: classpath:mapper/**/*.xml
26
-wx:
27
-  miniapp:
28
-    appid: wx1a3e5f7d0139285e
29
-    secret: 06d3db7f27ea08481effd509aa4dcb57
30
-    token:
31
-    aesKey:
32
-    msgDataFormat: JSON
33
-  tpls:
34
-    - name: notice
35
-      id: wO59V2ARIEXsoYaX1AlB9HK_SqUlnJzZq_X-xeYS1rU
36
-      keywords: 4
37
-    - name: newCustomer
38
-      id: WiBYjqkE9KvwDv1WSq5vnuv5A6FSaOB8ETFcrVmtCEI
39
-      keywords: 4
40
-    - name: mainbiz
41
-      id: wO59V2ARIEXsoYaX1AlB9HK_SqUlnJzZq_X-xeYS1rU
42
-
43
-      keywords: 6
44
-ali:
45
-  accessKeyId: LTAI4FdMQNh1xUoiqqbKJ15J
46
-  accessKeySecret: F7vmuXBu8IrhouQYYhFMLRhIRivIzb
47
-  oss:
48
-    endpoint: oss-cn-shanghai.aliyuncs.com
49
-    bucketName: njcj
50
-    bucketURL: https://njcj.oss-cn-shanghai.aliyuncs.com
51
-
52
-# 手机短信服务
53
-sms:
54
-  url: http://micservice.ycjcjy.com/sms
55
-  method: POST
56
-  contentType: "application/json;charset=UTF-8"
57
-  template:
58
-    code:
59
-    tel:
60
-    params:
61
-
62
-  # 以下为各模板 code
63
-  # 验证码
64
-  captcha:
65
-    # 模板 code
66
-    code: "0301"
67
-    # 有效时间 秒
68
-    expire: 120
69
-    # 验证码长度
70
-    size: 4
71
-    # 短信签名
72
-    sign: AI智慧案场
73
-
74
-  visitor:
75
-    code: "0501"

+ 2
- 1
src/main/resources/application-prod-blue.yml 查看文件

@@ -89,4 +89,5 @@ fadada:
89 89
   appSecret: ""
90 90
   version: "2.0"
91 91
   serveHost: "https://testapi.fadada.com:8443/api/"
92
-  companyNotify: "https://dev.pawoma.cn/api/fadd/company"
92
+  companyNotify: "https://dev.pawoma.cn/api/fadd/company"
93
+  signNotify: "https://dev.pawoma.cn/api/fadd/sign"

+ 2
- 1
src/main/resources/application-prod-green.yml 查看文件

@@ -89,4 +89,5 @@ fadada:
89 89
   appSecret: ""
90 90
   version: "2.0"
91 91
   serveHost: "https://testapi.fadada.com:8443/api/"
92
-  companyNotify: "https://dev.pawoma.cn/api/fadd/company"
92
+  companyNotify: "https://dev.pawoma.cn/api/fadd/company"
93
+  signNotify: "https://dev.pawoma.cn/api/fadd/sign"

+ 0
- 74
src/main/resources/application-rc.yml 查看文件

@@ -1,74 +0,0 @@
1
-server:
2
-  port: 8005
3
-spring:
4
-  application:
5
-    name: estateagents
6
-  datasource:
7
-    username: estateagents
8
-    password: DQ@0lW##kBb2+-jPZ
9
-    url: jdbc:mysql://rm-uf6z3z6jq11x653d77o.mysql.rds.aliyuncs.com:3306/estateagents_test?useUnicode=true&serverTimezone=CTT&characterEncoding=utf8&allowMultiQueries=true&autoReconnect=true&zeroDateTimeBehavior=convertToNull
10
-    driver-class-name: com.mysql.cj.jdbc.Driver
11
-    initial-size: 10 # 初始化连接数
12
-    max-active: 20 # 最大连接数
13
-    min-idle: 8 # 最小空闲数
14
-    max-idle: 8 # 最大空闲数
15
-  servlet:
16
-    multipart:
17
-      max-file-size: 10MB
18
-      max-request-size: 50MB
19
-
20
-##mybatis-plus
21
-mybatis-plus:
22
-  configuration:
23
-    log-impl: org.apache.ibatis.logging.stdout.StdOutImpl
24
-    call-setters-on-nulls: true
25
-  mapper-locations: classpath:mapper/**/*.xml
26
-wx:
27
-  miniapp:
28
-    appid: wxe9e01aa4a3568f52
29
-    secret: f1d70000e55f221976b95a43084042b0
30
-    token:
31
-    aesKey:
32
-    msgDataFormat: JSON
33
-  tpls:
34
-    - name: notice
35
-      id: FikibBOSwA_v0Ud80o9t_06kAUjn5TRd60
36
-      keywords: 4
37
-    - name: newCustomer
38
-      id: WiBYjqkE9KvwDv1WSq5vnuv5A6FSaOB8ETFcrVmtCEI
39
-      keywords: 4
40
-    - name: mainbiz
41
-      id: 8b0kuLCKzPeu1MUBfpLT9DhysqMl2LSWNYqluycvGm8
42
-      keywords: 6
43
-ali:
44
-  accessKeyId: LTAI4FdMQNh1xUoiqqbKJ15J
45
-  accessKeySecret: F7vmuXBu8IrhouQYYhFMLRhIRivIzb
46
-  oss:
47
-    endpoint: oss-cn-shanghai.aliyuncs.com
48
-    bucketName: njcj
49
-    bucketURL: https://njcj.oss-cn-shanghai.aliyuncs.com
50
-
51
-# 手机短信服务
52
-sms:
53
-  url: http://micservice.ycjcjy.com/sms
54
-  method: POST
55
-  contentType: "application/json;charset=UTF-8"
56
-  template:
57
-    code:
58
-    tel:
59
-    params:
60
-
61
-  # 以下为各模板 code
62
-  # 验证码
63
-  captcha:
64
-    # 模板 code
65
-    code: "0301"
66
-    # 有效时间 秒
67
-    expire: 120
68
-    # 验证码长度
69
-    size: 4
70
-    # 短信签名
71
-    sign: AI智慧案场
72
-
73
-  visitor:
74
-    code: "0501"

+ 0
- 58
src/main/resources/application-v3.yml 查看文件

@@ -1,58 +0,0 @@
1
-server:
2
-  port: 8080
3
-spring:
4
-  application:
5
-    name: estateagents
6
-  datasource:
7
-   username: estateagents
8
-   password: DQ@0lW##kBb2+-jPZ
9
-   url: jdbc:mysql://rm-uf6z3z6jq11x653d77o.mysql.rds.aliyuncs.com:3306/estateagents3.0?useUnicode=true&serverTimezone=CTT&characterEncoding=utf8&allowMultiQueries=true&autoReconnect=true&zeroDateTimeBehavior=convertToNull
10
-   driver-class-name: com.mysql.cj.jdbc.Driver
11
-   initial-size: 10 # 初始化连接数
12
-   max-active: 20 # 最大连接数
13
-   min-idle: 8 # 最小空闲数
14
-   max-idle: 8 # 最大空闲数
15
-  servlet:
16
-    multipart:
17
-      max-file-size: 10MB
18
-      max-request-size: 50MB
19
-
20
-##mybatis-plus
21
-mybatis-plus:
22
-  configuration:
23
-    log-impl: org.apache.ibatis.logging.stdout.StdOutImpl
24
-    call-setters-on-nulls: true
25
-  mapper-locations: classpath:mapper/**/*.xml
26
-
27
-ali:
28
-  accessKeyId: LTAI4FdMQNh1xUoiqqbKJ15J
29
-  accessKeySecret: F7vmuXBu8IrhouQYYhFMLRhIRivIzb
30
-  oss:
31
-    endpoint: oss-cn-shanghai.aliyuncs.com
32
-    bucketName: njcj
33
-    bucketURL: https://njcj.oss-cn-shanghai.aliyuncs.com
34
-
35
-# 手机短信服务
36
-sms:
37
-  url: http://micservice.ycjcjy.com/sms
38
-  method: POST
39
-  contentType: "application/json;charset=UTF-8"
40
-  template:
41
-    code:
42
-    tel:
43
-    params:
44
-
45
-  # 以下为各模板 code
46
-  # 验证码
47
-  captcha:
48
-    # 模板 code
49
-    code: "0301"
50
-    # 有效时间 秒
51
-    expire: 120
52
-    # 验证码长度
53
-    size: 4
54
-    # 短信签名
55
-    sign: 营销云
56
-
57
-  visitor:
58
-    code: "0501"

+ 0
- 74
src/main/resources/application-xs.yml 查看文件

@@ -1,74 +0,0 @@
1
-server:
2
-  port: 8003
3
-spring:
4
-  application:
5
-    name: estateagents
6
-  datasource:
7
-    username: estateagents
8
-    password: DQ@0lW##kBb2+-jPZ
9
-    url: jdbc:mysql://rm-uf6z3z6jq11x653d77o.mysql.rds.aliyuncs.com:3306/estateagents2?useUnicode=true&serverTimezone=CTT&characterEncoding=utf8&allowMultiQueries=true&autoReconnect=true&zeroDateTimeBehavior=convertToNull
10
-    driver-class-name: com.mysql.cj.jdbc.Driver
11
-    initial-size: 10 # 初始化连接数
12
-    max-active: 20 # 最大连接数
13
-    min-idle: 8 # 最小空闲数
14
-    max-idle: 8 # 最大空闲数
15
-  servlet:
16
-    multipart:
17
-      max-file-size: 10MB
18
-      max-request-size: 50MB
19
-
20
-##mybatis-plus
21
-mybatis-plus:
22
-  configuration:
23
-    log-impl: org.apache.ibatis.logging.stdout.StdOutImpl
24
-    call-setters-on-nulls: true
25
-  mapper-locations: classpath:mapper/**/*.xml
26
-wx:
27
-  miniapp:
28
-    appid: wx09cd665abf378db7
29
-    secret: a6cbd778272c87426952b5a1f8449698
30
-    token:
31
-    aesKey:
32
-    msgDataFormat: JSON
33
-  tpls:
34
-    - name: notice
35
-      id: thSzcSAhIHiZZuCdydBsoB-dSa_g72vHgqo9e_CltNM
36
-      keywords: 4
37
-    - name: newCustomer
38
-      id: WiBYjqkE9KvwDv1WSq5vnuv5A6FSaOB8ETFcrVmtCEI
39
-      keywords: 4
40
-    - name: mainbiz
41
-      id: iJLceA_zp1fq9xnL4yV8IOwWGeFHebCO-HxNtcPYLoA
42
-      keywords: 6
43
-ali:
44
-  accessKeyId: LTAI4FdMQNh1xUoiqqbKJ15J
45
-  accessKeySecret: F7vmuXBu8IrhouQYYhFMLRhIRivIzb
46
-  oss:
47
-    endpoint: oss-cn-shanghai.aliyuncs.com
48
-    bucketName: njcj
49
-    bucketURL: https://njcj.oss-cn-shanghai.aliyuncs.com
50
-
51
-# 手机短信服务
52
-sms:
53
-  url: http://micservice.ycjcjy.com/sms
54
-  method: POST
55
-  contentType: "application/json;charset=UTF-8"
56
-  template:
57
-    code:
58
-    tel:
59
-    params:
60
-
61
-  # 以下为各模板 code
62
-  # 验证码
63
-  captcha:
64
-    # 模板 code
65
-    code: "0301"
66
-    # 有效时间 秒
67
-    expire: 120
68
-    # 验证码长度
69
-    size: 4
70
-    # 短信签名
71
-    sign: AI智慧案场
72
-
73
-  visitor:
74
-    code: "0501"