mirror of
https://codeup.aliyun.com/67762337eccfc218f6110e0e/per-boe/java-servers.git
synced 2025-12-18 23:36:52 +08:00
提交消息的结构调整
This commit is contained in:
@@ -40,6 +40,21 @@ public class Message extends IdEntity {
|
|||||||
@Column(name = "ref_type",nullable = true)
|
@Column(name = "ref_type",nullable = true)
|
||||||
private String refType;
|
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")
|
@JsonFormat(pattern = "yyyy-MM-dd HH:mm:ss")
|
||||||
@Column(name = "msg_time")
|
@Column(name = "msg_time")
|
||||||
private LocalDateTime msgTime;
|
private LocalDateTime msgTime;
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* 课程类型 微课 录播课
|
* 课程类型 微课 录播课
|
||||||
* */
|
* */
|
||||||
|
|||||||
Reference in New Issue
Block a user