提交消息的结构调整

This commit is contained in:
daihh
2022-11-10 17:48:57 +08:00
parent fadb842a5b
commit d044beb702

View File

@@ -40,6 +40,21 @@ public class Message extends IdEntity {
@Column(name = "ref_type",nullable = true)
private String refType;
/**用于页面跳转类型*/
@Column(name = "page_type",nullable = true,length=32)
private String pageType;
/**用于页面的参数*/
@Column(name = "page_params",nullable = true,length=100)
private String pageParams;
/**
* 数据来源,1表新系统2表外部系统
*/
@Column(name = "source",nullable = true)
private Integer source;
/**
* 发送人,如果是系统消息,就写“系统”
*/
@@ -85,6 +100,7 @@ public class Message extends IdEntity {
@JsonFormat(pattern = "yyyy-MM-dd HH:mm:ss")
@Column(name = "msg_time")
private LocalDateTime msgTime;
/**
* 课程类型 微课 录播课
* */