1.1
陶杰
2024-11-08 a089358ffa1b63b880ade9365bc6f361258a9719
1
2
3
4
5
6
7
8
9
10
11
12
13
14
package com.mzl.flower.mapper.payment;
 
import com.baomidou.mybatisplus.core.mapper.BaseMapper;
import com.baomidou.mybatisplus.extension.plugins.pagination.Page;
import com.mzl.flower.entity.payment.OrderPointGoods;
import org.apache.ibatis.annotations.Param;
import org.springframework.stereotype.Repository;
 
import java.util.List;
 
@Repository
public interface OrderPointGoodsMapper extends BaseMapper<OrderPointGoods> {
 
}