package com.pets.dummy; import java.util.Date; /** * �û�˵˵ * * 2014��7��23�� */ public class DummyDailyShareRecord { private int id; private String username; private String title; private String content; private Date time; private String img; public String getImg() { return img; } public void setImg(String img) { this.img = img; } public int getId() { return id; } public void setId(int id) { this.id = id; } public String getUsername() { return username; } public void setUsername(String username) { this.username = username; } public String getTitle() { return title; } public void setTitle(String title) { this.title = title; } public String getContent() { return content; } public void setContent(String content) { this.content = content; } public Date getTime() { return time; } public void setTime(Date time) { this.time = time; } }