wuxw
2020-02-17 9f9836688fc39f714fb1e77322672115e98150ee
WebService/src/main/java/com/java110/web/components/fee/PropertyPayComponent.java
@@ -2,6 +2,7 @@
import com.java110.core.context.IPageData;
import com.java110.web.smo.IFeeServiceSMO;
import com.java110.web.smo.feeConfig.IListFeeConfigsSMO;
import org.springframework.beans.factory.annotation.Autowired;
import org.springframework.http.ResponseEntity;
import org.springframework.stereotype.Component;
@@ -20,8 +21,11 @@
    @Autowired
    private IFeeServiceSMO feeServiceSMOImpl;
    @Autowired
    private IListFeeConfigsSMO listFeeConfigsSMOImpl;
    public ResponseEntity<String> loadPropertyConfigData(IPageData pd) {
        return feeServiceSMOImpl.loadPropertyConfigFee(pd, "");
        return listFeeConfigsSMOImpl.listFeeConfigs(pd);
    }