IDeleteRentingConfigBMO.java 377 Bytes
package com.java110.user.bmo.rentingConfig;

import com.java110.po.renting.RentingConfigPo;
import org.springframework.http.ResponseEntity;

public interface IDeleteRentingConfigBMO {


    /**
     * 修改房屋出租配置
     * add by wuxw
     *
     * @param rentingConfigPo
     * @return
     */
    ResponseEntity<String> delete(RentingConfigPo rentingConfigPo);


}