|
@@ -5,7 +5,7 @@ import javax.persistence.Id;
|
|
|
import javax.persistence.IdClass;
|
|
|
import javax.persistence.Table;
|
|
|
|
|
|
-import cn.com.qmth.examcloud.commons.web.support.JpaEntitySupport;
|
|
|
+import cn.com.qmth.examcloud.commons.web.jpa.JpaEntity;
|
|
|
|
|
|
/**
|
|
|
* 权限
|
|
@@ -17,7 +17,7 @@ import cn.com.qmth.examcloud.commons.web.support.JpaEntitySupport;
|
|
|
@Entity
|
|
|
@Table(name = "EC_B_USER_PRIV_RELATION")
|
|
|
@IdClass(UserPrivilegeRelationPK.class)
|
|
|
-public class UserPrivilegeRelation extends JpaEntitySupport {
|
|
|
+public class UserPrivilegeRelation extends JpaEntity {
|
|
|
|
|
|
private static final long serialVersionUID = -2673489395106849624L;
|
|
|
|