Yansen 9 个月前
父节点
当前提交
17aef13ae7

+ 1
- 1
deploy/.s/1636896505560465-cn-shanghai-stategrid-service-invoice-filling-httpTrigger.json 查看文件

@@ -22,7 +22,7 @@
22 22
       "disableURLInternet": false
23 23
     },
24 24
     "createdTime": "2022-07-18T02:02:16Z",
25
-    "lastModifiedTime": "2024-07-06T13:07:59Z",
25
+    "lastModifiedTime": "2024-07-15T06:37:49Z",
26 26
     "status": null,
27 27
     "targetArn": null,
28 28
     "name": "httpTrigger"

+ 3
- 3
deploy/.s/1636896505560465-cn-shanghai-stategrid-service-invoice-filling.json 查看文件

@@ -8,13 +8,13 @@
8 8
     "timeout": 30,
9 9
     "initializer": "",
10 10
     "initializationTimeout": 3,
11
-    "codeSize": 69225605,
12
-    "codeChecksum": "16716663287251665922",
11
+    "codeSize": 69225779,
12
+    "codeChecksum": "7433530922618334546",
13 13
     "memorySize": 1024,
14 14
     "gpuMemorySize": null,
15 15
     "environmentVariables": {},
16 16
     "createdTime": "2022-07-18T02:02:16Z",
17
-    "lastModifiedTime": "2024-07-06T13:07:58Z",
17
+    "lastModifiedTime": "2024-07-15T06:37:49Z",
18 18
     "instanceConcurrency": 1,
19 19
     "instanceSoftConcurrency": null,
20 20
     "customContainerConfig": null,

+ 1
- 1
deploy/.s/1636896505560465-cn-shanghai-stategrid-service.json 查看文件

@@ -12,7 +12,7 @@
12 12
     },
13 13
     "serviceId": "6e96fa7b-9988-4908-b06a-0aa7e510c881",
14 14
     "createdTime": "2022-02-26T04:50:56Z",
15
-    "lastModifiedTime": "2024-07-06T13:07:59Z",
15
+    "lastModifiedTime": "2024-07-15T06:37:49Z",
16 16
     "vpcConfig": {
17 17
       "vpcId": "",
18 18
       "vSwitchIds": [],

+ 1
- 1
deploy/.s/invoice-filling.stategrid.njyunzhi.com.json 查看文件

@@ -29,7 +29,7 @@
29 29
     ]
30 30
   },
31 31
   "createdTime": "2022-07-18T02:03:47Z",
32
-  "lastModifiedTime": "2024-07-06T13:07:59Z",
32
+  "lastModifiedTime": "2024-07-15T06:37:49Z",
33 33
   "keepFullPath": null,
34 34
   "subdomainCount": null,
35 35
   "wafConfig": null

+ 1
- 0
deploy/readme.md 查看文件

@@ -0,0 +1 @@
1
+已经移植到了 47.101.36.130 服务器上

+ 1
- 1
deploy/s.prod.yaml 查看文件

@@ -49,7 +49,7 @@ services:
49 49
       function:
50 50
         name: invoice-filling
51 51
         description: '发票确认'
52
-        codeUri: ../target/invoice-0.0.10.jar
52
+        codeUri: ../target/invoice-0.0.11.jar
53 53
         runtime: custom
54 54
         memorySize: 1024
55 55
         timeout: 30

+ 1
- 1
pom.xml 查看文件

@@ -10,7 +10,7 @@
10 10
 	</parent>
11 11
 	<groupId>com.njyunzhi</groupId>
12 12
 	<artifactId>invoice</artifactId>
13
-	<version>0.0.10</version>
13
+	<version>0.0.11</version>
14 14
 	<name>invoice-fill</name>
15 15
 	<description>发票填报</description>
16 16
 	<properties>

+ 3
- 3
src/main/resources/application-prod.yml 查看文件

@@ -1,16 +1,16 @@
1 1
 
2 2
 server:
3
-  port: 9000
3
+  port: 8099
4 4
 
5 5
 spring:
6 6
   datasource:
7
-    url: jdbc:mysql://rm-uf6z3z6jq11x653d77o.mysql.rds.aliyuncs.com:3306/invoice_fill?serverTimezone=Asia/Shanghai&useUnicode=true&characterEncoding=utf8&useSSL=false&allowPublicKeyRetrieval=true
7
+    url: jdbc:mysql://rm-2ze1a4hqb68h7ud14fo.mysql.rds.aliyuncs.com:3306/invoice_fill?serverTimezone=Asia/Shanghai&useUnicode=true&characterEncoding=utf8&useSSL=false&allowPublicKeyRetrieval=true
8 8
     username: invoice_fill
9 9
     password: invoice_fill@ABCD1234
10 10
 
11 11
 ### 跨域
12 12
 cors:
13
-  enabled: true
13
+  enabled: false
14 14
   origins:
15 15
     - http://h5.njyunzhi.com
16 16
     - https://h5.njyunzhi.com

+ 2
- 1
src/main/resources/mapper/TaInvoiceDetailMapper.xml 查看文件

@@ -106,7 +106,8 @@
106 106
             t.`status`,
107 107
             t.`create_date`,
108 108
             t.`is_need_lodging`,
109
-            t.`room_code`
109
+            t.`room_code`,
110
+            t.email
110 111
         FROM
111 112
             ta_invoice_detail t
112 113
                 INNER JOIN ta_invoice_item s ON t.invoice_id = s.invoice_id AND t.invoice_person_id = s.invoice_person_id