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; @PrimaryKey({"userid","roleid"}) @Table public class UserRole{ private String userid; private String roleid; @Column(DE.id_32) public String getUserid() { return userid; } public void setUserid(String userid) { this.userid = userid; } @Column(DE.id_32) public String getRoleid() { return roleid; } public void setRoleid(String roleid) { this.roleid = roleid; } }