1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
| package com.moral.yunfushao.model;
|
| /**
| * Created by haijiang on 2017/5/3.
| */
|
| public class EventMessage{
| private int type;
| public int getType() {
| return type;
| }
|
| public void setType(int type) {
| this.type = type;
| }
| }
|
|