| | |
| | | import com.boying.entity.Park; |
| | | import com.boying.service.EnterParkService; |
| | | import com.boying.service.ParkService; |
| | | |
| | | import lombok.RequiredArgsConstructor; |
| | | import org.springframework.web.bind.annotation.PostMapping; |
| | | import org.springframework.web.bind.annotation.RequestMapping; |
| | |
| | | import java.util.List; |
| | | |
| | | @RestController |
| | | @RequestMapping("notice") |
| | | @RequestMapping("ffzf/notice") |
| | | @RequiredArgsConstructor |
| | | public class NoticeController { |
| | | |
| | |
| | | return R.ok(all); |
| | | } |
| | | |
| | | //停车场内的车辆 根据状态查询 |
| | | @PostMapping("/enterPark") |
| | | public Object enterPark(Integer status, Page page){ |
| | | if(status==null){ |