Commit 45ca1277 by 田超

Merge branch 'feature/1004787' into 'master'

feat: [1004787] 自有码数据完善-读者查询数据优化

See merge request rays/pcloud-common-parent!202
parents 7dd306c9 cfa4afff
......@@ -112,6 +112,11 @@ public class UserActionMessageDto implements Serializable {
* (行为时间)
*/
private Date actionDate = new Date();
/**
* 编辑ID
*/
private Long adviserId;
public UserActionMessageDto() {
super();
......@@ -204,6 +209,14 @@ public class UserActionMessageDto implements Serializable {
this.targetOriginId = targetOriginId;
}
public Long getAdviserId() {
return adviserId;
}
public void setAdviserId(Long adviserId) {
this.adviserId = adviserId;
}
public Long getUserId() {
return userId;
}
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment