package com.yeshi.buwan.domain; import java.io.Serializable; import com.google.gson.annotations.Expose; public class CategoryContry implements Serializable{ @Expose private Long id; @Expose private Long cid; @Expose private String name; private CategoryContry parent; @Expose private String createtime; @Expose private int orderby; public int getOrderby() { return orderby; } public void setOrderby(int orderby) { this.orderby = orderby; } public Long getId() { return id; } public void setId(Long id) { this.id = id; } public Long getCid() { return cid; } public void setCid(Long cid) { this.cid = cid; } public String getName() { return name; } public void setName(String name) { this.name = name; } public CategoryContry getParent() { return parent; } public void setParent(CategoryContry parent) { this.parent = parent; } public String getCreatetime() { return createtime; } public void setCreatetime(String createtime) { this.createtime = createtime; } }