| | |
| | | private ICarServiceSMO carServiceSMOImpl; |
| | | |
| | | |
| | | @Autowired |
| | | private IFeeServiceSMO feeServiceSMOImpl; |
| | | |
| | | /** |
| | | * 查询小区楼信息 |
| | | * |
| | |
| | | return carServiceSMOImpl.saveCar(pd); |
| | | } |
| | | |
| | | /** |
| | | * 查询出售费用配置 |
| | | * |
| | | * @param pd 页面封装对象 包含页面请求数据 |
| | | * @return ResponseEntity对象返回给页面 |
| | | */ |
| | | public ResponseEntity<String> loadSellParkingSpaceConfigData(IPageData pd) { |
| | | String paramIn = pd.getReqData(); |
| | | JSONObject paramObj = JSONObject.parseObject(paramIn); |
| | | return feeServiceSMOImpl.loadPropertyConfigFee(pd, "1001".equals(paramObj.getString("typeCd")) |
| | | ? FeeTypeConstant.FEE_TYPE_SELL_UP_PARKING_SPACE : FeeTypeConstant.FEE_TYPE_SELL_DOWN_PARKING_SPACE); |
| | | } |
| | | |
| | | |
| | | public ICarServiceSMO getCarServiceSMOImpl() { |
| | | return carServiceSMOImpl; |
| | |
| | | this.carServiceSMOImpl = carServiceSMOImpl; |
| | | } |
| | | |
| | | public IFeeServiceSMO getFeeServiceSMOImpl() { |
| | | return feeServiceSMOImpl; |
| | | } |
| | | |
| | | public void setFeeServiceSMOImpl(IFeeServiceSMO feeServiceSMOImpl) { |
| | | this.feeServiceSMOImpl = feeServiceSMOImpl; |
| | | } |
| | | } |