2 天以前 5f73eb1fb9d04040fe6ba377d5ae582024429f2f
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.PurchaseApplication;
import org.apache.ibatis.annotations.Mapper;
 
/**
 * 采购申请单 Mapper 接口
 */
@Mapper
public interface PurchaseApplicationMapper extends BaseMapper<PurchaseApplication> {
}