From bb07147aaa96d1ef4c99e358dbbe7dad160dc62a Mon Sep 17 00:00:00 2001 From: yujian <yujian@163.com> Date: 星期四, 19 十二月 2019 15:43:23 +0800 Subject: [PATCH] Merge branch 'div' of ssh://193.112.35.168:29418/fanli-server into div --- 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