wuxw
2021-04-23 fdf45f690fa4eca9191aa0fb6abf077e7b36ce06
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
package com.java110.community.bmo.resourceStore.impl;
 
import com.java110.community.bmo.resourceStore.IGetResourceStoreBMO;
import com.java110.intf.community.IResourceStoreServiceSMO;
import com.java110.po.purchase.ResourceStorePo;
import com.java110.vo.ResultVo;
import org.springframework.beans.factory.annotation.Autowired;
import org.springframework.http.HttpStatus;
import org.springframework.http.ResponseEntity;
import org.springframework.stereotype.Service;
 
import java.util.ArrayList;
import java.util.List;
 
/**
 * 查询资源物品信息
 *
 * @author fqz
 * @date 2021-03-17 11:27
 */
@Service("getResourceStoreBMOImpl")
public class GetResourceStoreBMOImpl implements IGetResourceStoreBMO {
 
    @Autowired
    private IResourceStoreServiceSMO resourceStoreServiceSMO;
 
    @Override
    public ResponseEntity<String> get(ResourceStorePo resourceStorePo) {
        int count = resourceStoreServiceSMO.getResourceStoresCount(resourceStorePo);
        List<ResourceStorePo> resourceStorePos = null;
        if (count > 0) {
            resourceStorePos = resourceStoreServiceSMO.getResourceStores(resourceStorePo);
        } else {
            resourceStorePos = new ArrayList<>();
        }
        ResultVo resultVo = new ResultVo(count, count, resourceStorePos);
        ResponseEntity<String> responseEntity = new ResponseEntity<String>(resultVo.toString(), HttpStatus.OK);
        return responseEntity;
    }
}