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.

11 lines
260 B

  1. package com.example.gb.dao;
  2. import com.example.gb.bean.vo.LiveOrderVO;
  3. import org.apache.ibatis.annotations.Mapper;
  4. import java.util.List;
  5. @Mapper
  6. public interface GoldbeanConsumeMapper {
  7. List<LiveOrderVO> getLiveConsumeList(LiveOrderVO liveOrderVO);
  8. }