Browse Source

Merge branch 'sprint/S3' into release/S3

master
clong 1 year ago
parent
commit
17d8a7edd2
2 changed files with 5 additions and 0 deletions
  1. +3
    -0
      demo-athenaopt_backend/develop/src/main/java/com/digiwin/athena/app/chatFile/infra/entity/ChatFileEntity.java
  2. +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 '问题单号';

Loading…
Cancel
Save