JSD-8486 开源任务材料
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.

22 lines
465 B

package com.fr.plugin.idm.sso.dao;
import com.fr.plugin.idm.sso.entity.UserEntity;
import com.fr.stable.db.dao.BaseDAO;
import com.fr.stable.db.session.DAOSession;
/**
* @Author fr.open
* @Date 2020/8/19
* @Description
**/
public class UserDao extends BaseDAO<UserEntity> {
public UserDao(DAOSession daoSession) {
super(daoSession);
}
@Override
protected Class<UserEntity> getEntityClass() {
return UserEntity.class;
}
}