15 lines
351 B
Java
15 lines
351 B
Java
package net.srt.mapper;
|
|
|
|
import net.srt.entity.ApiConfigEntity;
|
|
import net.srt.framework.mybatis.dao.BaseDao;
|
|
import org.apache.ibatis.annotations.Mapper;
|
|
import org.apache.ibatis.annotations.Param;
|
|
|
|
@Mapper
|
|
public interface ApiConfigDao extends BaseDao<ApiConfigEntity> {
|
|
void xia(@Param("id") Long id);
|
|
|
|
void shang(@Param("id") Long id);
|
|
|
|
}
|