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.

12 lines
272 B

  1. package com.example.gb.dao;
  2. import com.example.gb.bean.LivePindao;
  3. import com.example.gb.bean.vo.LivePindaoVO;
  4. import org.apache.ibatis.annotations.Mapper;
  5. import java.util.List;
  6. @Mapper
  7. public interface GoldbeanPindaoMapper {
  8. List<LivePindaoVO> getPindaoList();
  9. }