Commit 547ccb5e by 李传峰

Merge branch 'release' into 'master'

Release20220428

See merge request rays/pcloud-common-parent!268
parents 41e5048e 9abafa40
......@@ -33,6 +33,17 @@ public class OperationLogDto implements Serializable{
* 代理ID
*/
private Long agentId;
private String token;
public String getToken() {
return token;
}
public void setToken(String token) {
this.token = token;
}
public String getContent() {
return content;
}
......@@ -66,9 +77,16 @@ public class OperationLogDto implements Serializable{
public static long getSerialversionuid() {
return serialVersionUID;
}
@Override
public String toString() {
return "OperationLog [content=" + content + ", editorId=" + editorId + ", ip=" + ip + ", time=" + time
+ ", agentId=" + agentId + "]";
return "OperationLogDto{" +
"content='" + content + '\'' +
", editorId=" + editorId +
", ip='" + ip + '\'' +
", time=" + time +
", agentId=" + agentId +
", token='" + token + '\'' +
'}';
}
}
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