ClientService.java 328 B

12345678910111213141516171819
  1. package com.example.hotel.bl.user;
  2. import com.example.hotel.vo.OrderVO;
  3. import java.util.List;
  4. /**
  5. * @Author: chenyizong
  6. * @Date: 2020-02-29
  7. */
  8. public interface ClientService {
  9. /**
  10. * 预订酒店添加订单
  11. * @param orderVO
  12. */
  13. void addOrder(OrderVO orderVO);
  14. List<OrderVO> retrieveOrders();
  15. }