package nobugs.team.shopping.repo.entity; import com.google.gson.annotations.Expose; /** * Created by Administrator on 2015/8/23 0023. */ public class ShopPo extends BasePo{ @Expose private Integer id; @Expose private String name; @Expose private Integer userid; @Expose private String introduction; public Integer getId() { return id; } public void setId(Integer id) { this.id = id; } public String getName() { return name; } public void setName(String name) { this.name = name; } public Integer getUserid() { return userid; } public void setUserid(Integer userid) { this.userid = userid; } public String getIntroduction() { return introduction; } public void setIntroduction(String introduction) { this.introduction = introduction; } }