package com.ekexiu.console.system.po;
import org.jfw.apt.orm.annotation.entry.Column;
import org.jfw.apt.orm.annotation.entry.PrimaryKey;
import org.jfw.apt.orm.annotation.entry.Table;
import org.jfw.apt.orm.core.enums.DE;
import com.ekexiu.console.basepo.DescpSupported;
@PrimaryKey("id")
@Table
public class SysRight implements DescpSupported {
private int id;
private String name;
private String descp;
private String type;
@Column(DE.int_de)
public int getId() {
return id;
}
public void setId(int id) {
this.id = id;
}
@Column(DE.string_de)
public String getName() {
return name;
}
public void setName(String name) {
this.name = name;
}
public String getDescp() {
return descp;
}
public void setDescp(String descp) {
this.descp = descp;
}
@Column(DE.string_de)
public String getType() {
return type;
}
public void setType(String type) {
this.type = type;
}
}
|