You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

57 lines
831 B

package model;
import java.util.HashSet;
import java.util.Set;
/**
* TClassify entity. @author MyEclipse Persistence Tools
*/
public class Classify implements java.io.Serializable {
// Fields
private Integer cid;
private String cname;
private Integer csort;
// Constructors
/** default constructor */
public Classify() {
}
/** full constructor */
public Classify(String cname, Integer csort) {
this.cname = cname;
this.csort = csort;
}
// Property accessors
public Integer getCid() {
return this.cid;
}
public void setCid(Integer cid) {
this.cid = cid;
}
public String getCname() {
return this.cname;
}
public void setCname(String cname) {
this.cname = cname;
}
public Integer getCsort() {
return this.csort;
}
public void setCsort(Integer csort) {
this.csort = csort;
}
}