| | |
| | | |
| | | |
| | | import com.java110.core.context.IPageData; |
| | | import com.java110.front.smo.store.IGetStoreSMO; |
| | | import com.java110.front.smo.store.IListStoreSMO; |
| | | import org.springframework.beans.factory.annotation.Autowired; |
| | | import org.springframework.http.ResponseEntity; |
| | |
| | | |
| | | @Autowired |
| | | private IListStoreSMO listStoreSMOImpl; |
| | | @Autowired |
| | | private IGetStoreSMO getStoreSMOImpl; |
| | | |
| | | /** |
| | | * 查询钥匙申请列表 |
| | |
| | | return listStoreSMOImpl.listStores(pd); |
| | | } |
| | | |
| | | |
| | | public ResponseEntity<String> getStoreInfo(IPageData pd) { |
| | | return getStoreSMOImpl.getStoreInfo(pd); |
| | | } |
| | | |
| | | public IListStoreSMO getListStoreSMOImpl() { |
| | | return listStoreSMOImpl; |
| | | } |