chengf
2025-08-22 f4d855f8d2d5cd52c0831e690dcb12e700b91eb1
java110-interface/src/main/java/com/java110/intf/common/ICarInoutV1InnerServiceSMO.java
@@ -17,6 +17,7 @@
import com.java110.config.feign.FeignConfiguration;
import com.java110.dto.machine.CarInoutDto;
import com.java110.po.car.CarInoutFeeHistoryPo;
import com.java110.po.car.CarInoutPo;
import org.springframework.cloud.openfeign.FeignClient;
import org.springframework.web.bind.annotation.RequestBody;
@@ -41,6 +42,12 @@
    @RequestMapping(value = "/saveCarInout", method = RequestMethod.POST)
    public int saveCarInout(@RequestBody CarInoutPo carInoutPo);
    @RequestMapping(value = "/saveCarInoutFeeHistory", method = RequestMethod.POST)
    public int saveCarInoutFeeHistory(@RequestBody CarInoutFeeHistoryPo carInoutFeeHistoryPo);
    @RequestMapping(value = "/queryCarInoutFeeHistoryList", method = RequestMethod.POST)
    List<CarInoutFeeHistoryPo> queryCarInoutFeeHistoryList(@RequestBody CarInoutFeeHistoryPo carInoutFeeHistoryPo);
    @RequestMapping(value = "/updateCarInout", method = RequestMethod.POST)
    public int updateCarInout(@RequestBody CarInoutPo carInoutPo);