mobile test

测试

Posted in 未分类. 没有评论 »

code test


Code   ViewCopyPrint


  1. package com.hanyun.hdr.model;   

  2.   

  3. import java.util.Date;   

  4.   

  5. public class Fetched {   

  6.     public Long id;   

  7.     public Integer type;   

  8.     public String url;   

  9.     public Date fetchDate;   

  10.        

  11.     public Long getId() {   

  12.         return id;   

  13.     }   

  14.     public void setId(Long id) {   

  15.         this.id = id;   

  16.     }   

  17.     public Integer getType() {   

  18.         return type;   

  19.     }   

  20.     public void setType(Integer type) {   

  21.         this.type = type;   

  22.     }   

  23.     public String getUrl() {   

  24.         return url;   

  25.     }   

  26.     public void setUrl(String url) {   

  27.         this.url = url;   

  28.     }   

  29.     public Date getFetchDate() {   

  30.         return fetchDate;   

  31.     }   

  32.     public void setFetchDate(Date fetchDate) {   

  33.         this.fetchDate = fetchDate;   

  34.     }   

  35. }   

Posted in 未分类. 没有评论 »