Browse Source

docs: 众蚁云

李学松 2 năm trước cách đây
mục cha
commit
f2bfa085d5
1 tập tin đã thay đổi với 22 bổ sung0 xóa
  1. 22 0
      db/v2.0/230217.sql

+ 22 - 0
db/v2.0/230217.sql

@@ -0,0 +1,22 @@
+-- deptSub字段大小修改
+alter table sys_dept_sub
+    modify app_id varchar(255) default '0' null;
+
+alter table sys_dept_sub
+    modify app_secret varchar(2048) null;
+
+alter table sys_dept_sub
+    modify rsa_public_key varchar(2048) null;
+
+-- 众蚁云回调异步通知记录
+create table zhongyiyun_input_record
+(
+    id           int auto_increment comment '主键id'
+        primary key,
+    req_type     varchar(20)                        not null comment '请求业务类型',
+    req_id       varchar(64)                        null comment '请求序号',
+    req_body     text                               null comment '请求body',
+    decrypt_body text                               null comment '解密后的body',
+    create_time  datetime default CURRENT_TIMESTAMP null comment '创建时间'
+)
+    comment '众蚁云回调异步通知记录';