labour_service.dart 186 B

12345678910111213
  1. /*
  2. * Labour组件对应的路由抽象接口
  3. */
  4. abstract class LabourService {
  5. void startLabourRequestPage();
  6. void startLabourTemplatePage();
  7. void startLabourReviewPage();
  8. }