This website works better with JavaScript.
Home
Explore
Help
Register
Sign In
athena-demo
/
athena-opt-demo
Watch
14
Star
0
Fork
0
Code
Issues
0
Pull Requests
0
Projects
0
Releases
105
Wiki
Activity
2 Commits
be877f387a
...
2f190fd6cd
Author
SHA1
Message
Date
clong
2f190fd6cd
Merge branch 'sprint/S3' into release/S3
1 year ago
郑贵龙
e45afdb7eb
feat:工博会chatFile添加字段user_id
1 year ago
2 changed files
with
4 additions
and
0 deletions
Split View
Diff Options
Show Stats
+3
-0
demo-athenaopt_backend/develop/src/main/java/com/digiwin/athena/app/chatFile/infra/entity/ChatFileEntity.java
+1
-0
doc/sql/app-20230703-ddl.sql
+ 3
- 0
demo-athenaopt_backend/develop/src/main/java/com/digiwin/athena/app/chatFile/infra/entity/ChatFileEntity.java
View File
@ -25,6 +25,9 @@ public class ChatFileEntity extends BaseMgrEntity<ChatFileEntity> {
@SerializedName
(
value
=
"question"
)
private
String
question
;
@SerializedName
(
value
=
"user_id"
)
private
String
userId
;
@SerializedName
(
value
=
"question_no"
)
private
String
questionNo
;
+ 1
- 0
doc/sql/app-20230703-ddl.sql
View File
@ -26,3 +26,4 @@ CREATE TABLE `cim_chat_file` (
)
ENGINE
=
InnoDB
DEFAULT
CHARSET
=
utf8mb4
;
alter
table
cim_chat_file
Add
column
question_no
varchar
(
32
)
null
default
'
'
COMMENT
'
问题单号
'
;
alter
table
cim_chat_file
Add
column
user_id
varchar
(
32
)
null
default
'
'
COMMENT
'
用户id
'
;
Write
Preview
Loading…
Cancel
Save