2012 年 2 月 23 日 — quake
- package com.hanyun.hdr.model;
-
- import java.util.Date;
-
- public class Fetched {
- public Long id;
- public Integer type;
- public String url;
- public Date fetchDate;
-
- public Long getId() {
- return id;
- }
- public void setId(Long id) {
- this.id = id;
- }
- public Integer getType() {
- return type;
- }
- public void setType(Integer type) {
- this.type = type;
- }
- public String getUrl() {
- return url;
- }
- public void setUrl(String url) {
- this.url = url;
- }
- public Date getFetchDate() {
- return fetchDate;
- }
- public void setFetchDate(Date fetchDate) {
- this.fetchDate = fetchDate;
- }
- }