爬虫SpringBoot服务
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.

17 lines
336 B

package com.qniao.zsh.infrastructure.dao;
import com.baomidou.mybatisplus.core.mapper.BaseMapper;
import com.qniao.zsh.domain.aggregate.spiderstate.entity.SpiderState;
import org.apache.ibatis.annotations.Mapper;
/**
* @author wh
* @date 2023/2/22
*/
@Mapper
public interface SpiderStateDao extends BaseMapper<SpiderState> {
}