package cn.wisenergy.mapper; import cn.wisenergy.model.app.shopZx; import com.baomidou.mybatisplus.core.mapper.BaseMapper; import org.apache.ibatis.annotations.Mapper; import org.apache.ibatis.annotations.Param; import java.util.List; /** * Created by m1991 on 2021/2/24 14:50 */ @Mapper public interface ShopZxMapper extends BaseMapper<shopZx> { /** * 添加方法 zxUrl userId zxName zxField imgUrl * @param * @return 1 */ int zxadd(@Param("zxUrl") String zxUrl,@Param("userId") String userId,@Param("zxName") String zxName,@Param("zxField") String zxField,@Param("imgUrl") String imgUrl,@Param("zxAddress") String zxAddress); /** * 查询资讯数据 */ List<shopZx> selectPage(@Param("pageNum") Integer pageNum, @Param("pageSize") Integer pageSize); }