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
478 B

3 years ago
package com.fr.plugin.xx.zyjn.dao;
import com.fr.plugin.xx.zyjn.entity.SyncOrgEntity;
import com.fr.stable.db.dao.BaseDAO;
import com.fr.stable.db.session.DAOSession;
/**
* @Author xx
* @Date 2022/10/12
* @Description
**/
public class SyncOrgDao extends BaseDAO<SyncOrgEntity> {
public SyncOrgDao(DAOSession daoSession) {
super(daoSession);
}
@Override
protected Class<SyncOrgEntity> getEntityClass() {
return SyncOrgEntity.class;
}
}