1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
| package se.wgcloud.dto;
|
| import se.wgcloud.entity.BaseEntity;
|
| /**
| * @version v2.3
| * @ClassName: MessageDto.java
| * @author:
| * @date: 2019年11月16日
| * @Description: 表单提交返回信息
| * @Copyright:
| */
| 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;
| }
| }
|
|