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.
|
- package com.iformall.mapper;
-
- import com.iformall.domain.po.sm.ApiGuide;
- import com.baomidou.mybatisplus.core.mapper.BaseMapper;
-
- import java.util.List;
-
- /**
- * @Entity com.iformall.domain.po.sm.ApiGuide
- */
- public interface ApiGuideMapper extends BaseMapper<ApiGuide> {
-
- List<ApiGuide> listApiGuide(ApiGuide apiGuide);
- }
-
-
-
|