package com.newvideo.domain;
|
|
public class CategoryContry {
|
private Long id;
|
private Long cid;
|
private String name;
|
private CategoryContry parent;
|
private String createtime;
|
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;
|
}
|
|
}
|