shiyj
2019-07-17 87f19e0894585ad0f378ac2fbc229ee7ca933670
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
41
42
43
44
45
46
package com.java110.vo.api.notice;
 
import java.io.Serializable;
import java.util.Date;
 
public class ApiNoticeDataVo implements Serializable {
 
    private String noticeId;
private String title;
private String noticeTypeCd;
private String context;
private String startTime;
public String getNoticeId() {
        return noticeId;
    }
public void setNoticeId(String noticeId) {
        this.noticeId = noticeId;
    }
public String getTitle() {
        return title;
    }
public void setTitle(String title) {
        this.title = title;
    }
public String getNoticeTypeCd() {
        return noticeTypeCd;
    }
public void setNoticeTypeCd(String noticeTypeCd) {
        this.noticeTypeCd = noticeTypeCd;
    }
public String getContext() {
        return context;
    }
public void setContext(String context) {
        this.context = context;
    }
public String getStartTime() {
        return startTime;
    }
public void setStartTime(String startTime) {
        this.startTime = startTime;
    }
 
 
 
}