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.
21 lines
482 B
21 lines
482 B
package com.fr.plugin.idm.sso.dao; |
|
|
|
import com.fr.plugin.idm.sso.entity.UserOrgEntity; |
|
import com.fr.stable.db.dao.BaseDAO; |
|
import com.fr.stable.db.session.DAOSession; |
|
|
|
/** |
|
* @Author fr.open |
|
* @Date 2020/8/19 |
|
* @Description |
|
**/ |
|
public class UserOrgDao extends BaseDAO<UserOrgEntity> { |
|
public UserOrgDao(DAOSession daoSession) { |
|
super(daoSession); |
|
} |
|
|
|
@Override |
|
protected Class<UserOrgEntity> getEntityClass() { |
|
return UserOrgEntity.class; |
|
} |
|
}
|
|
|