java110
2021-09-13 9903732d7844ca9c44bbb6145d1af62c3ede60b4
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
package com.java110.api.components.parkingSpace;
 
import com.java110.core.context.IPageData;
import com.java110.api.smo.parkingArea.IListParkingAreasSMO;
import org.springframework.beans.factory.annotation.Autowired;
import org.springframework.http.ResponseEntity;
import org.springframework.stereotype.Component;
 
/**
 * 添加停车位组件
 */
@Component("parkingAreaSelect2")
public class ParkingAreaSelect2Component {
 
    @Autowired
    private IListParkingAreasSMO listParkingAreasSMOImpl;
 
 
    public ResponseEntity<String> list(IPageData pd) {
 
        return listParkingAreasSMOImpl.listParkingAreas(pd);
    }
 
 
    public IListParkingAreasSMO getListParkingAreasSMOImpl() {
        return listParkingAreasSMOImpl;
    }
 
    public void setListParkingAreasSMOImpl(IListParkingAreasSMO listParkingAreasSMOImpl) {
        this.listParkingAreasSMOImpl = listParkingAreasSMOImpl;
    }
}