1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
| package com.java110.community.bmo.resourceStore;
|
| import com.java110.po.purchase.ResourceStorePo;
| import org.springframework.http.ResponseEntity;
|
| /**
| * 查询资源表物品信息
| *
| * @author fqz
| * @date 2021-03-17 11:22
| */
| public interface IGetResourceStoreBMO {
|
| /**
| * 查询资源表物品信息
| *
| * @param resourceStorePo
| * @return
| */
| ResponseEntity<String> get(ResourceStorePo resourceStorePo);
|
| }
|
|