cgf
2025-08-23 9ec0a61f90ac2464eebc643bfe2d93ac9ba6e569
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);