service_service.dart 162 B

12345678910
  1. /*
  2. * Service 组件对应的路由抽象接口
  3. */
  4. abstract class ServiceService {
  5. void startServicePage();
  6. void startServiceOrderDetailPage(String id);
  7. }