From eda623f37c3260f4b4657e34a8a39798c72432b1 Mon Sep 17 00:00:00 2001 From: admin <weikou2014> Date: 星期日, 28 六月 2020 15:49:14 +0800 Subject: [PATCH] 搜索接口增加小黄条返回 --- fanli/src/main/java/com/yeshi/fanli/dto/mq/user/body/UserInfoUpdateMQMsg.java | 15 ++++++++++++++- 1 files changed, 14 insertions(+), 1 deletions(-) diff --git a/fanli/src/main/java/com/yeshi/fanli/dto/mq/user/body/UserInfoUpdateMQMsg.java b/fanli/src/main/java/com/yeshi/fanli/dto/mq/user/body/UserInfoUpdateMQMsg.java index 066f6f7..414cd24 100644 --- a/fanli/src/main/java/com/yeshi/fanli/dto/mq/user/body/UserInfoUpdateMQMsg.java +++ b/fanli/src/main/java/com/yeshi/fanli/dto/mq/user/body/UserInfoUpdateMQMsg.java @@ -28,7 +28,20 @@ private Long uid;// 鐢ㄦ埛ID private UserInfoUpdateTypeEnum type;// 绫诲瀷 private String value;// 鍊� - private Date createTime;//鏃堕棿 + private Date createTime;// 鏃堕棿 + + public UserInfoUpdateMQMsg(Long uid, UserInfoUpdateTypeEnum type, String value, Date createTime) { + super(); + this.uid = uid; + this.type = type; + this.value = value; + this.createTime = createTime; + } + + public UserInfoUpdateMQMsg() { + super(); + + } public Long getUid() { return uid; -- Gitblit v1.8.0