job_sg_service_impl.dart 476 B

1234567891011121314151617181920212223242526272829
  1. import 'package:plugin_basic/basic_export.dart';
  2. import 'package:router/componentRouter/job_sg_service.dart';
  3. import 'package:shared/utils/log_utils.dart';
  4. class JobSGServiceImpl extends GetxService implements JobSGService {
  5. @override
  6. void onInit() {
  7. super.onInit();
  8. //初始化资源
  9. }
  10. @override
  11. void onClose() {
  12. super.onClose();
  13. //销毁资源
  14. }
  15. @override
  16. void startJobListPage() {
  17. }
  18. @override
  19. void startReviseListPage() {
  20. }
  21. }