Commit f34a2f7d by Ren Ping

fix:服务类消息新增服务类消息类别,0:上门延误,1:服务超时

1 parent 353554db
......@@ -60,6 +60,11 @@ public class MsgDTO {
*/
private String capacityDate;
/**
* 服务类消息类别,0:上门延误,1:服务超时
*/
private Integer serviceMsgType;
@Data
public static class IdDTO {
......
......@@ -76,5 +76,10 @@ public class MsgResp {
*/
private String receivers;
/**
* 服务类消息类别,0:上门延误,1:服务超时
*/
private Integer serviceMsgType;
}
......@@ -85,5 +85,11 @@ public class MsgEntity {
@Column(name = "capacity_date")
private String capacityDate;
/**
* 服务类消息类别,0:上门延误,1:服务超时
*/
@Column(name = "service_msg_type")
private Integer serviceMsgType;
}
Markdown is supported
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!