1
2
3
4
5
6
7
8
9
10
11
12
| package com.ruoyi.purchase.mapper;
|
| import com.baomidou.mybatisplus.core.mapper.BaseMapper;
| import com.ruoyi.purchase.pojo.PurchaseApplicationProduct;
| import org.apache.ibatis.annotations.Mapper;
|
| /**
| * 采购申请产品明细 Mapper 接口
| */
| @Mapper
| public interface PurchaseApplicationProductMapper extends BaseMapper<PurchaseApplicationProduct> {
| }
|
|