changeconsultationnotificationhandler.dart 380 B

12345678910111213
  1. import 'package:fis_jsonrpc/rpc.dart';
  2. ///接受会诊
  3. class ChangeConsultationNotificationHandler
  4. extends NotificationHandler<ChangeConsultationNotification> {
  5. ChangeConsultationNotificationHandler()
  6. : super(NotificationTypeEnum.ChangeConsultationNotification);
  7. @override
  8. void execute(ChangeConsultationNotification message) {
  9. super.execute(message);
  10. }
  11. }