features.dart 812 B

123456789101112131415161718192021222324252627282930313233343536
  1. ///功能模块静态词典
  2. // ignore_for_file: constant_identifier_names
  3. class FeatureKeys {
  4. FeatureKeys._();
  5. /// 最近检测记录
  6. static const RecentTestRecords = 'ZJJCJLCZ';
  7. /// 健康档案操作
  8. static const HealthRecordHandling = 'JKDACZ';
  9. /// 健康检测记录
  10. static const HealthCheckupRecords = 'JKJCJLCZ';
  11. /// 身份证读卡器
  12. static const IDCardReader = 'SFZDKQ';
  13. /// 人脸识别
  14. static const FaceRecognition = 'RLSB';
  15. /// 身份证拍照OCR识别
  16. static const IdCardPhotoOCR = 'SFZSBCZ';
  17. /// 健康信息
  18. static const HealthInformation = 'JKXXCZ';
  19. /// 随访记录操作
  20. static const FollowUpRecord = 'SFJLCZ';
  21. /// 体检记录操作
  22. static const HealthCheckRecord = 'TJJLCZ';
  23. /// 签约记录操作
  24. static const SigningRecord = 'QYJLCZ';
  25. }