Browse Source

feat:工博会chatFile添加字段question_no

master
郑贵龙 1 year ago
parent
commit
f231d00a2a
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") @SerializedName(value = "question")
private String question; private String question;
@SerializedName(value = "question_no")
private String questionNo;
@SerializedName(value = "feedback_person") @SerializedName(value = "feedback_person")
private String feedbackPerson; 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', `deleted` tinyint(255) DEFAULT '0' COMMENT '逻辑删除标志,默认0',
PRIMARY KEY (`id`) PRIMARY KEY (`id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4; ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4;
alter table cim_chat_file Add column question_no varchar(32) null default '' COMMENT '问题单号';

Loading…
Cancel
Save