wuxw
2019-08-13 9e29441646434d9f54a2c3e855a724633885d8a4
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.web.components.parkingSpace;
 
 
import com.java110.core.context.IPageData;
import com.java110.web.smo.IParkingSpaceServiceSMO;
import org.springframework.beans.factory.annotation.Autowired;
import org.springframework.http.ResponseEntity;
import org.springframework.stereotype.Component;
 
/**
 * 停车位 组件处理类
 */
@Component("listParkingSpace")
public class ListParkingSpaceComponent {
 
    
    @Autowired
    private IParkingSpaceServiceSMO ownerServiceSMOImpl;
 
    /**
     * 显示 停车位
     *
     * @param pd 页面数据封装对象
     * @return 停车位信息
     */
    public ResponseEntity<String> list(IPageData pd) {
 
        return ownerServiceSMOImpl.listParkingSpace(pd);
    }
 
 
    public IParkingSpaceServiceSMO getParkingSpaceServiceSMOImpl() {
        return ownerServiceSMOImpl;
    }
 
    public void setParkingSpaceServiceSMOImpl(IParkingSpaceServiceSMO ownerServiceSMOImpl) {
        this.ownerServiceSMOImpl = ownerServiceSMOImpl;
    }
}