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
ca0856c6fa
...
17d8a7edd2
Author
SHA1
Message
Date
clong
17d8a7edd2
Merge branch 'sprint/S3' into release/S3
1 year ago
郑贵龙
f231d00a2a
feat:工博会chatFile添加字段question_no
1 year ago
2 changed files
with
5 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
+2
-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
=
"question_no"
)
private
String
questionNo
;
@SerializedName
(
value
=
"feedback_person"
)
private
String
feedbackPerson
;
+ 2
- 0
doc/sql/app-20230703-ddl.sql
View File
@ -24,3 +24,5 @@ CREATE TABLE `cim_chat_file` (
`
deleted
`
tinyint
(
255
)
DEFAULT
'
0
'
COMMENT
'
逻辑删除标志,默认0
'
,
PRIMARY
KEY
(
`
id
`
)
)
ENGINE
=
InnoDB
DEFAULT
CHARSET
=
utf8mb4
;
alter
table
cim_chat_file
Add
column
question_no
varchar
(
32
)
null
default
'
'
COMMENT
'
问题单号
'
;
Write
Preview
Loading…
Cancel
Save