package com.wgcloud.dto;
|
|
import com.wgcloud.entity.BaseEntity;
|
|
/**
|
* @version v3.3
|
* @ClassName:MessageDto.java
|
* @author: http://www.wgstart.com
|
* @date: 2021年1月16日
|
* @Description: 返回页面信息
|
* @Copyright: 2019-2021 wgcloud. All rights reserved.
|
*/
|
public class MessageDto extends BaseEntity {
|
|
/**
|
*
|
*/
|
private static final long serialVersionUID = -2913111613773445949L;
|
|
|
private String code;
|
|
private String msg;
|
|
public String getCode() {
|
return code;
|
}
|
|
public void setCode(String code) {
|
this.code = code;
|
}
|
|
public String getMsg() {
|
return msg;
|
}
|
|
public void setMsg(String msg) {
|
this.msg = msg;
|
}
|
}
|