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
500 B
22 lines
500 B
4 years ago
|
package com.fr.plugin.dingding.webhook.dao;
|
||
|
|
||
|
import com.fr.plugin.dingding.webhook.entity.WebHookEntity;
|
||
|
import com.fr.stable.db.dao.BaseDAO;
|
||
|
import com.fr.stable.db.session.DAOSession;
|
||
|
|
||
|
/**
|
||
|
* @Author fr.open
|
||
|
* @Date 2020/9/15
|
||
|
* @Description
|
||
|
**/
|
||
|
public class WebHookDao extends BaseDAO<WebHookEntity> {
|
||
|
public WebHookDao(DAOSession daoSession) {
|
||
|
super(daoSession);
|
||
|
}
|
||
|
|
||
|
@Override
|
||
|
protected Class<WebHookEntity> getEntityClass() {
|
||
|
return WebHookEntity.class;
|
||
|
}
|
||
|
}
|