|
@@ -1,123 +1,522 @@
|
|
|
-import 'package:fisjsonrpc/base_model.dart';
|
|
|
-
|
|
|
-class RemedicalFilterModel {
|
|
|
- RemedicalFilterModel({
|
|
|
- this.recordId,
|
|
|
- });
|
|
|
-
|
|
|
- String? recordId;
|
|
|
-
|
|
|
- Map<String, dynamic> toJson() {
|
|
|
- Map<String, dynamic> map = {};
|
|
|
- if (this.recordId != null) map['RecordId'] = this.recordId;
|
|
|
- return map;
|
|
|
- }
|
|
|
-}
|
|
|
-
|
|
|
-class RemedicalQueryRequest extends PagedRequest {
|
|
|
- RemedicalQueryRequest({
|
|
|
- required this.sessionId,
|
|
|
- int currentPage = 1,
|
|
|
- int pageSize = 10,
|
|
|
- this.filter = const {},
|
|
|
- }) : super();
|
|
|
-
|
|
|
- final String sessionId;
|
|
|
- final Map<String, String> filter;
|
|
|
-
|
|
|
- @override
|
|
|
- Map<String, dynamic> toJson() {
|
|
|
- var map = super.toJson();
|
|
|
- map['filter'] = this.filter;
|
|
|
- map['sessionId'] = this.sessionId;
|
|
|
- return map;
|
|
|
- }
|
|
|
-
|
|
|
- factory RemedicalQueryRequest.fromJson(Map<String, dynamic> map) {
|
|
|
- return RemedicalQueryRequest(
|
|
|
- sessionId: map['sessionId'],
|
|
|
- currentPage: map['currentPage'],
|
|
|
- pageSize: map['pageSize'],
|
|
|
- filter: map['filter'],
|
|
|
- );
|
|
|
- }
|
|
|
-}
|
|
|
-
|
|
|
-class RemedicalModel {
|
|
|
- RemedicalModel({
|
|
|
- required this.id,
|
|
|
- required this.createTime,
|
|
|
- required this.recordId,
|
|
|
- required this.patientName,
|
|
|
- required this.idCardNo,
|
|
|
- required this.birthday,
|
|
|
- required this.genderType,
|
|
|
- this.sourceOrg,
|
|
|
- this.terminalImages = const [],
|
|
|
- });
|
|
|
-
|
|
|
- Map<String, dynamic> toJson() {
|
|
|
- Map<String, dynamic> map = {};
|
|
|
- map['id'] = this.id;
|
|
|
- map['createTime'] = this.createTime;
|
|
|
- map['recordId'] = this.recordId;
|
|
|
- map['patientName'] = this.patientName;
|
|
|
- map['idCardNo'] = this.idCardNo;
|
|
|
- map['birthday'] = this.birthday;
|
|
|
- map['genderType'] = this.genderType;
|
|
|
- map['terminalImages'] = this.terminalImages.map((e) => e.toJson()).toList();
|
|
|
- return map;
|
|
|
- }
|
|
|
-
|
|
|
- factory RemedicalModel.fromJson(Map<String, dynamic> map) {
|
|
|
- final imgsData = map['TerminalImages'];
|
|
|
- return RemedicalModel(
|
|
|
- id: map['Id'],
|
|
|
- createTime: map['CreateTime'],
|
|
|
- recordId: map['RecordId'],
|
|
|
- patientName: map['PatientName'],
|
|
|
- idCardNo: map['IdCardNo'],
|
|
|
- birthday: map['Birthday'],
|
|
|
- genderType: map['GenderType'],
|
|
|
- sourceOrg: map['SourceOrg'],
|
|
|
- terminalImages: imgsData != null
|
|
|
- ? (imgsData as List)
|
|
|
- .map((e) => RemedicalTerminalImageModel.fromJson(e))
|
|
|
- .toList()
|
|
|
- : const [],
|
|
|
- );
|
|
|
- }
|
|
|
-
|
|
|
- final String id;
|
|
|
- final String createTime;
|
|
|
- final String recordId;
|
|
|
- final String patientName;
|
|
|
- final String idCardNo;
|
|
|
- final String birthday;
|
|
|
- final int genderType;
|
|
|
- final String? sourceOrg;
|
|
|
- final List<RemedicalTerminalImageModel> terminalImages;
|
|
|
-}
|
|
|
-
|
|
|
-class RemedicalTerminalImageModel {
|
|
|
- RemedicalTerminalImageModel({
|
|
|
- required this.previewUrl,
|
|
|
- required this.imageUrl,
|
|
|
- });
|
|
|
- factory RemedicalTerminalImageModel.fromJson(Map<String, dynamic> map) {
|
|
|
- return RemedicalTerminalImageModel(
|
|
|
- imageUrl: map['ImageUrl'],
|
|
|
- previewUrl: map['PreviewUrl'],
|
|
|
- );
|
|
|
- }
|
|
|
-
|
|
|
- Map<String, dynamic> toJson() {
|
|
|
- Map<String, dynamic> map = {};
|
|
|
- map['previewUrl'] = this.previewUrl;
|
|
|
- map['imageUrl'] = this.imageUrl;
|
|
|
- return map;
|
|
|
- }
|
|
|
-
|
|
|
- final String previewUrl;
|
|
|
- final String imageUrl;
|
|
|
+import 'package:fis_common/json_convert.dart';
|
|
|
+
|
|
|
+enum GenderTypeEnum {
|
|
|
+ Male,
|
|
|
+ Female,
|
|
|
+}
|
|
|
+
|
|
|
+enum PatientTypeEnum {
|
|
|
+ Default,
|
|
|
+}
|
|
|
+
|
|
|
+class PatientInfo {
|
|
|
+ String? patientCode;
|
|
|
+ String? firstName;
|
|
|
+ String? lastName;
|
|
|
+ String? patientCardNo;
|
|
|
+ DateTime? birthday;
|
|
|
+ GenderTypeEnum genderType;
|
|
|
+ String? patientCaseHistory;
|
|
|
+ String? patientPhone;
|
|
|
+ PatientTypeEnum patientType;
|
|
|
+ String? id;
|
|
|
+ DateTime? createTime;
|
|
|
+ DateTime? updateTime;
|
|
|
+ bool isDelete;
|
|
|
+
|
|
|
+ PatientInfo({
|
|
|
+ this.patientCode,
|
|
|
+ this.firstName,
|
|
|
+ this.lastName,
|
|
|
+ this.patientCardNo,
|
|
|
+ this.birthday,
|
|
|
+ this.genderType=GenderTypeEnum.Male,
|
|
|
+ this.patientCaseHistory,
|
|
|
+ this.patientPhone,
|
|
|
+ this.patientType=PatientTypeEnum.Default,
|
|
|
+ this.id,
|
|
|
+ this.createTime,
|
|
|
+ this.updateTime,
|
|
|
+ this.isDelete=false,
|
|
|
+ });
|
|
|
+
|
|
|
+ factory PatientInfo.fromJson(Map<String, dynamic> map) {
|
|
|
+ return PatientInfo(
|
|
|
+ patientCode: map['PatientCode'],
|
|
|
+ firstName: map['FirstName'],
|
|
|
+ lastName: map['LastName'],
|
|
|
+ patientCardNo: map['PatientCardNo'],
|
|
|
+ birthday: map['Birthday'] != null ? DateTime.parse(map['Birthday']) : null,
|
|
|
+ genderType: GenderTypeEnum.values.firstWhere((e) => e.index == map['GenderType']),
|
|
|
+ patientCaseHistory: map['PatientCaseHistory'],
|
|
|
+ patientPhone: map['PatientPhone'],
|
|
|
+ patientType: PatientTypeEnum.values.firstWhere((e) => e.index == map['PatientType']),
|
|
|
+ id: map['Id'],
|
|
|
+ createTime: map['CreateTime'] != null ? DateTime.parse(map['CreateTime']) : null,
|
|
|
+ updateTime: map['UpdateTime'] != null ? DateTime.parse(map['UpdateTime']) : null,
|
|
|
+ isDelete: map['IsDelete'],
|
|
|
+ );
|
|
|
+ }
|
|
|
+
|
|
|
+ Map<String, dynamic> toJson() {
|
|
|
+ final map = Map<String, dynamic>();
|
|
|
+ if(patientCode != null)
|
|
|
+ map['PatientCode'] = patientCode;
|
|
|
+ if(firstName != null)
|
|
|
+ map['FirstName'] = firstName;
|
|
|
+ if(lastName != null)
|
|
|
+ map['LastName'] = lastName;
|
|
|
+ if(patientCardNo != null)
|
|
|
+ map['PatientCardNo'] = patientCardNo;
|
|
|
+ if(birthday != null)
|
|
|
+ map['Birthday'] = birthday;
|
|
|
+ map['GenderType'] = genderType.index;
|
|
|
+ if(patientCaseHistory != null)
|
|
|
+ map['PatientCaseHistory'] = patientCaseHistory;
|
|
|
+ if(patientPhone != null)
|
|
|
+ map['PatientPhone'] = patientPhone;
|
|
|
+ map['PatientType'] = patientType.index;
|
|
|
+ if(id != null)
|
|
|
+ map['Id'] = id;
|
|
|
+ if(createTime != null)
|
|
|
+ map['CreateTime'] = createTime;
|
|
|
+ if(updateTime != null)
|
|
|
+ map['UpdateTime'] = updateTime;
|
|
|
+ map['IsDelete'] = isDelete;
|
|
|
+ return map;
|
|
|
+ }
|
|
|
}
|
|
|
+
|
|
|
+class CreatePatientInfoRequest {
|
|
|
+ PatientInfo? info;
|
|
|
+ String? sessionId;
|
|
|
+
|
|
|
+ CreatePatientInfoRequest({
|
|
|
+ this.info,
|
|
|
+ this.sessionId,
|
|
|
+ });
|
|
|
+
|
|
|
+ factory CreatePatientInfoRequest.fromJson(Map<String, dynamic> map) {
|
|
|
+ return CreatePatientInfoRequest(
|
|
|
+ info: map['Info'],
|
|
|
+ sessionId: map['SessionId'],
|
|
|
+ );
|
|
|
+ }
|
|
|
+
|
|
|
+ Map<String, dynamic> toJson() {
|
|
|
+ final map = Map<String, dynamic>();
|
|
|
+ if(info != null)
|
|
|
+ map['Info'] = info;
|
|
|
+ if(sessionId != null)
|
|
|
+ map['SessionId'] = sessionId;
|
|
|
+ return map;
|
|
|
+ }
|
|
|
+}
|
|
|
+
|
|
|
+enum DeviceDataTypeEnum {
|
|
|
+ Default,
|
|
|
+}
|
|
|
+
|
|
|
+class DeviceData {
|
|
|
+ String? deviceDataCode;
|
|
|
+ String? deviceCode;
|
|
|
+ String? deviceFileCode;
|
|
|
+ String? recordCode;
|
|
|
+ String? patientCode;
|
|
|
+ String? previewImageToken;
|
|
|
+ String? dataToken;
|
|
|
+ DeviceDataTypeEnum deviceDataType;
|
|
|
+ String? processResult;
|
|
|
+ String? id;
|
|
|
+ DateTime? createTime;
|
|
|
+ DateTime? updateTime;
|
|
|
+ bool isDelete;
|
|
|
+
|
|
|
+ DeviceData({
|
|
|
+ this.deviceDataCode,
|
|
|
+ this.deviceCode,
|
|
|
+ this.deviceFileCode,
|
|
|
+ this.recordCode,
|
|
|
+ this.patientCode,
|
|
|
+ this.previewImageToken,
|
|
|
+ this.dataToken,
|
|
|
+ this.deviceDataType=DeviceDataTypeEnum.Default,
|
|
|
+ this.processResult,
|
|
|
+ this.id,
|
|
|
+ this.createTime,
|
|
|
+ this.updateTime,
|
|
|
+ this.isDelete=false,
|
|
|
+ });
|
|
|
+
|
|
|
+ factory DeviceData.fromJson(Map<String, dynamic> map) {
|
|
|
+ return DeviceData(
|
|
|
+ deviceDataCode: map['DeviceDataCode'],
|
|
|
+ deviceCode: map['DeviceCode'],
|
|
|
+ deviceFileCode: map['DeviceFileCode'],
|
|
|
+ recordCode: map['RecordCode'],
|
|
|
+ patientCode: map['PatientCode'],
|
|
|
+ previewImageToken: map['PreviewImageToken'],
|
|
|
+ dataToken: map['DataToken'],
|
|
|
+ deviceDataType: DeviceDataTypeEnum.values.firstWhere((e) => e.index == map['DeviceDataType']),
|
|
|
+ processResult: map['ProcessResult'],
|
|
|
+ id: map['Id'],
|
|
|
+ createTime: map['CreateTime'] != null ? DateTime.parse(map['CreateTime']) : null,
|
|
|
+ updateTime: map['UpdateTime'] != null ? DateTime.parse(map['UpdateTime']) : null,
|
|
|
+ isDelete: map['IsDelete'],
|
|
|
+ );
|
|
|
+ }
|
|
|
+
|
|
|
+ Map<String, dynamic> toJson() {
|
|
|
+ final map = Map<String, dynamic>();
|
|
|
+ if(deviceDataCode != null)
|
|
|
+ map['DeviceDataCode'] = deviceDataCode;
|
|
|
+ if(deviceCode != null)
|
|
|
+ map['DeviceCode'] = deviceCode;
|
|
|
+ if(deviceFileCode != null)
|
|
|
+ map['DeviceFileCode'] = deviceFileCode;
|
|
|
+ if(recordCode != null)
|
|
|
+ map['RecordCode'] = recordCode;
|
|
|
+ if(patientCode != null)
|
|
|
+ map['PatientCode'] = patientCode;
|
|
|
+ if(previewImageToken != null)
|
|
|
+ map['PreviewImageToken'] = previewImageToken;
|
|
|
+ if(dataToken != null)
|
|
|
+ map['DataToken'] = dataToken;
|
|
|
+ map['DeviceDataType'] = deviceDataType.index;
|
|
|
+ if(processResult != null)
|
|
|
+ map['ProcessResult'] = processResult;
|
|
|
+ if(id != null)
|
|
|
+ map['Id'] = id;
|
|
|
+ if(createTime != null)
|
|
|
+ map['CreateTime'] = createTime;
|
|
|
+ if(updateTime != null)
|
|
|
+ map['UpdateTime'] = updateTime;
|
|
|
+ map['IsDelete'] = isDelete;
|
|
|
+ return map;
|
|
|
+ }
|
|
|
+}
|
|
|
+
|
|
|
+class CreateDeviceDataRequest {
|
|
|
+ DeviceData? info;
|
|
|
+ String? sessionId;
|
|
|
+
|
|
|
+ CreateDeviceDataRequest({
|
|
|
+ this.info,
|
|
|
+ this.sessionId,
|
|
|
+ });
|
|
|
+
|
|
|
+ factory CreateDeviceDataRequest.fromJson(Map<String, dynamic> map) {
|
|
|
+ return CreateDeviceDataRequest(
|
|
|
+ info: map['Info'],
|
|
|
+ sessionId: map['SessionId'],
|
|
|
+ );
|
|
|
+ }
|
|
|
+
|
|
|
+ Map<String, dynamic> toJson() {
|
|
|
+ final map = Map<String, dynamic>();
|
|
|
+ if(info != null)
|
|
|
+ map['Info'] = info;
|
|
|
+ if(sessionId != null)
|
|
|
+ map['SessionId'] = sessionId;
|
|
|
+ return map;
|
|
|
+ }
|
|
|
+}
|
|
|
+
|
|
|
+enum RecordTypeEnum {
|
|
|
+ Ultrasound,
|
|
|
+ Electrocardio,
|
|
|
+}
|
|
|
+
|
|
|
+enum CheckTypeEnum {
|
|
|
+ Default,
|
|
|
+}
|
|
|
+
|
|
|
+enum RecordStatusEnum {
|
|
|
+ Default,
|
|
|
+}
|
|
|
+
|
|
|
+class RecordInfo {
|
|
|
+ String? recordCode;
|
|
|
+ String? patientCode;
|
|
|
+ String? patientName;
|
|
|
+ String? orgName;
|
|
|
+ RecordTypeEnum recordType;
|
|
|
+ CheckTypeEnum checkType;
|
|
|
+ String? localRecordCode;
|
|
|
+ RecordStatusEnum recordStatus;
|
|
|
+ String? recordRemark;
|
|
|
+ String? tags;
|
|
|
+ String? id;
|
|
|
+ DateTime? createTime;
|
|
|
+ DateTime? updateTime;
|
|
|
+ bool isDelete;
|
|
|
+
|
|
|
+ RecordInfo({
|
|
|
+ this.recordCode,
|
|
|
+ this.patientCode,
|
|
|
+ this.patientName,
|
|
|
+ this.orgName,
|
|
|
+ this.recordType=RecordTypeEnum.Ultrasound,
|
|
|
+ this.checkType=CheckTypeEnum.Default,
|
|
|
+ this.localRecordCode,
|
|
|
+ this.recordStatus=RecordStatusEnum.Default,
|
|
|
+ this.recordRemark,
|
|
|
+ this.tags,
|
|
|
+ this.id,
|
|
|
+ this.createTime,
|
|
|
+ this.updateTime,
|
|
|
+ this.isDelete=false,
|
|
|
+ });
|
|
|
+
|
|
|
+ factory RecordInfo.fromJson(Map<String, dynamic> map) {
|
|
|
+ return RecordInfo(
|
|
|
+ recordCode: map['RecordCode'],
|
|
|
+ patientCode: map['PatientCode'],
|
|
|
+ patientName: map['PatientName'],
|
|
|
+ orgName: map['OrgName'],
|
|
|
+ recordType: RecordTypeEnum.values.firstWhere((e) => e.index == map['RecordType']),
|
|
|
+ checkType: CheckTypeEnum.values.firstWhere((e) => e.index == map['CheckType']),
|
|
|
+ localRecordCode: map['LocalRecordCode'],
|
|
|
+ recordStatus: RecordStatusEnum.values.firstWhere((e) => e.index == map['RecordStatus']),
|
|
|
+ recordRemark: map['RecordRemark'],
|
|
|
+ tags: map['Tags'],
|
|
|
+ id: map['Id'],
|
|
|
+ createTime: map['CreateTime'] != null ? DateTime.parse(map['CreateTime']) : null,
|
|
|
+ updateTime: map['UpdateTime'] != null ? DateTime.parse(map['UpdateTime']) : null,
|
|
|
+ isDelete: map['IsDelete'],
|
|
|
+ );
|
|
|
+ }
|
|
|
+
|
|
|
+ Map<String, dynamic> toJson() {
|
|
|
+ final map = Map<String, dynamic>();
|
|
|
+ if(recordCode != null)
|
|
|
+ map['RecordCode'] = recordCode;
|
|
|
+ if(patientCode != null)
|
|
|
+ map['PatientCode'] = patientCode;
|
|
|
+ if(patientName != null)
|
|
|
+ map['PatientName'] = patientName;
|
|
|
+ if(orgName != null)
|
|
|
+ map['OrgName'] = orgName;
|
|
|
+ map['RecordType'] = recordType.index;
|
|
|
+ map['CheckType'] = checkType.index;
|
|
|
+ if(localRecordCode != null)
|
|
|
+ map['LocalRecordCode'] = localRecordCode;
|
|
|
+ map['RecordStatus'] = recordStatus.index;
|
|
|
+ if(recordRemark != null)
|
|
|
+ map['RecordRemark'] = recordRemark;
|
|
|
+ if(tags != null)
|
|
|
+ map['Tags'] = tags;
|
|
|
+ if(id != null)
|
|
|
+ map['Id'] = id;
|
|
|
+ if(createTime != null)
|
|
|
+ map['CreateTime'] = createTime;
|
|
|
+ if(updateTime != null)
|
|
|
+ map['UpdateTime'] = updateTime;
|
|
|
+ map['IsDelete'] = isDelete;
|
|
|
+ return map;
|
|
|
+ }
|
|
|
+}
|
|
|
+
|
|
|
+class CreateRecordInfoRequest {
|
|
|
+ RecordInfo? info;
|
|
|
+ String? sessionId;
|
|
|
+
|
|
|
+ CreateRecordInfoRequest({
|
|
|
+ this.info,
|
|
|
+ this.sessionId,
|
|
|
+ });
|
|
|
+
|
|
|
+ factory CreateRecordInfoRequest.fromJson(Map<String, dynamic> map) {
|
|
|
+ return CreateRecordInfoRequest(
|
|
|
+ info: map['Info'],
|
|
|
+ sessionId: map['SessionId'],
|
|
|
+ );
|
|
|
+ }
|
|
|
+
|
|
|
+ Map<String, dynamic> toJson() {
|
|
|
+ final map = Map<String, dynamic>();
|
|
|
+ if(info != null)
|
|
|
+ map['Info'] = info;
|
|
|
+ if(sessionId != null)
|
|
|
+ map['SessionId'] = sessionId;
|
|
|
+ return map;
|
|
|
+ }
|
|
|
+}
|
|
|
+
|
|
|
+class GetDeviceDataDetailRequest {
|
|
|
+ String? deviceDataCode;
|
|
|
+ String? sessionId;
|
|
|
+
|
|
|
+ GetDeviceDataDetailRequest({
|
|
|
+ this.deviceDataCode,
|
|
|
+ this.sessionId,
|
|
|
+ });
|
|
|
+
|
|
|
+ factory GetDeviceDataDetailRequest.fromJson(Map<String, dynamic> map) {
|
|
|
+ return GetDeviceDataDetailRequest(
|
|
|
+ deviceDataCode: map['DeviceDataCode'],
|
|
|
+ sessionId: map['SessionId'],
|
|
|
+ );
|
|
|
+ }
|
|
|
+
|
|
|
+ Map<String, dynamic> toJson() {
|
|
|
+ final map = Map<String, dynamic>();
|
|
|
+ if(deviceDataCode != null)
|
|
|
+ map['DeviceDataCode'] = deviceDataCode;
|
|
|
+ if(sessionId != null)
|
|
|
+ map['SessionId'] = sessionId;
|
|
|
+ return map;
|
|
|
+ }
|
|
|
+}
|
|
|
+
|
|
|
+class GetRecordInfoDetailRequest {
|
|
|
+ String? recordCode;
|
|
|
+ String? sessionId;
|
|
|
+
|
|
|
+ GetRecordInfoDetailRequest({
|
|
|
+ this.recordCode,
|
|
|
+ this.sessionId,
|
|
|
+ });
|
|
|
+
|
|
|
+ factory GetRecordInfoDetailRequest.fromJson(Map<String, dynamic> map) {
|
|
|
+ return GetRecordInfoDetailRequest(
|
|
|
+ recordCode: map['RecordCode'],
|
|
|
+ sessionId: map['SessionId'],
|
|
|
+ );
|
|
|
+ }
|
|
|
+
|
|
|
+ Map<String, dynamic> toJson() {
|
|
|
+ final map = Map<String, dynamic>();
|
|
|
+ if(recordCode != null)
|
|
|
+ map['RecordCode'] = recordCode;
|
|
|
+ if(sessionId != null)
|
|
|
+ map['SessionId'] = sessionId;
|
|
|
+ return map;
|
|
|
+ }
|
|
|
+}
|
|
|
+
|
|
|
+class GetDeviceDataListRequest {
|
|
|
+ String? recordCode;
|
|
|
+ String? sessionId;
|
|
|
+
|
|
|
+ GetDeviceDataListRequest({
|
|
|
+ this.recordCode,
|
|
|
+ this.sessionId,
|
|
|
+ });
|
|
|
+
|
|
|
+ factory GetDeviceDataListRequest.fromJson(Map<String, dynamic> map) {
|
|
|
+ return GetDeviceDataListRequest(
|
|
|
+ recordCode: map['RecordCode'],
|
|
|
+ sessionId: map['SessionId'],
|
|
|
+ );
|
|
|
+ }
|
|
|
+
|
|
|
+ Map<String, dynamic> toJson() {
|
|
|
+ final map = Map<String, dynamic>();
|
|
|
+ if(recordCode != null)
|
|
|
+ map['RecordCode'] = recordCode;
|
|
|
+ if(sessionId != null)
|
|
|
+ map['SessionId'] = sessionId;
|
|
|
+ return map;
|
|
|
+ }
|
|
|
+}
|
|
|
+
|
|
|
+class PageCollection<T> {
|
|
|
+ int currentPage;
|
|
|
+ int pageSize;
|
|
|
+ int dataCount;
|
|
|
+ List<T>? pageData;
|
|
|
+
|
|
|
+ PageCollection({
|
|
|
+ this.currentPage=0,
|
|
|
+ this.pageSize=0,
|
|
|
+ this.dataCount=0,
|
|
|
+ this.pageData,
|
|
|
+ });
|
|
|
+
|
|
|
+ factory PageCollection.fromJson(Map<String, dynamic> map) {
|
|
|
+ List<T> pageDataList = [];
|
|
|
+ if (map['PageData'] != null) {
|
|
|
+ pageDataList.addAll(
|
|
|
+ (map['PageData'] as List).map((e) => FJsonConvert.fromJson<T>(e)!));
|
|
|
+ }
|
|
|
+ return PageCollection(
|
|
|
+ currentPage: map['CurrentPage'],
|
|
|
+ pageSize: map['PageSize'],
|
|
|
+ dataCount: map['DataCount'],
|
|
|
+ pageData: pageDataList,
|
|
|
+ );
|
|
|
+ }
|
|
|
+
|
|
|
+ Map<String, dynamic> toJson() {
|
|
|
+ final map = Map<String, dynamic>();
|
|
|
+ map['CurrentPage'] = currentPage;
|
|
|
+ map['PageSize'] = pageSize;
|
|
|
+ map['DataCount'] = dataCount;
|
|
|
+ if(pageData != null)
|
|
|
+ map['PageData'] = pageData;
|
|
|
+ return map;
|
|
|
+ }
|
|
|
+}
|
|
|
+
|
|
|
+class PageRequest {
|
|
|
+ int currentPage;
|
|
|
+ int pageSize;
|
|
|
+ Map<String,String>? filter;
|
|
|
+ String? sessionId;
|
|
|
+
|
|
|
+ PageRequest({
|
|
|
+ this.currentPage=0,
|
|
|
+ this.pageSize=0,
|
|
|
+ this.filter,
|
|
|
+ this.sessionId,
|
|
|
+ });
|
|
|
+
|
|
|
+ factory PageRequest.fromJson(Map<String, dynamic> map) {
|
|
|
+ return PageRequest(
|
|
|
+ currentPage: map['CurrentPage'],
|
|
|
+ pageSize: map['PageSize'],
|
|
|
+ filter: map['Filter'].cast<String,String>(),
|
|
|
+ sessionId: map['SessionId'],
|
|
|
+ );
|
|
|
+ }
|
|
|
+
|
|
|
+ Map<String, dynamic> toJson() {
|
|
|
+ final map = Map<String, dynamic>();
|
|
|
+ map['CurrentPage'] = currentPage;
|
|
|
+ map['PageSize'] = pageSize;
|
|
|
+ if(filter != null)
|
|
|
+ map['Filter'] = filter;
|
|
|
+ if(sessionId != null)
|
|
|
+ map['SessionId'] = sessionId;
|
|
|
+ return map;
|
|
|
+ }
|
|
|
+}
|
|
|
+
|
|
|
+class GetPatientInfoRequest {
|
|
|
+ String? patientCode;
|
|
|
+ String? sessionId;
|
|
|
+
|
|
|
+ GetPatientInfoRequest({
|
|
|
+ this.patientCode,
|
|
|
+ this.sessionId,
|
|
|
+ });
|
|
|
+
|
|
|
+ factory GetPatientInfoRequest.fromJson(Map<String, dynamic> map) {
|
|
|
+ return GetPatientInfoRequest(
|
|
|
+ patientCode: map['PatientCode'],
|
|
|
+ sessionId: map['SessionId'],
|
|
|
+ );
|
|
|
+ }
|
|
|
+
|
|
|
+ Map<String, dynamic> toJson() {
|
|
|
+ final map = Map<String, dynamic>();
|
|
|
+ if(patientCode != null)
|
|
|
+ map['PatientCode'] = patientCode;
|
|
|
+ if(sessionId != null)
|
|
|
+ map['SessionId'] = sessionId;
|
|
|
+ return map;
|
|
|
+ }
|
|
|
+}
|
|
|
+
|
|
|
+
|