|
@@ -369,33 +369,33 @@ type EditMonitorParamObject struct {
|
369
|
369
|
MonitoringDate int64 `json:"monitoring_date"`
|
370
|
370
|
OperateTime int64 `json:"operate_time"`
|
371
|
371
|
// MonitoringTime string `json:"monitoring_time"`
|
372
|
|
- SystolicBP float64 `json:"systolic_bp"`
|
373
|
|
- DiastolicBP float64 `json:"diastolic_bp"`
|
374
|
|
- PulseFrequency float64 `json:"pulse_frequency"`
|
375
|
|
- BreathingRated float64 `json:"breathing_rated"`
|
376
|
|
- BloodFlowVolume float64 `json:"blood_flow_volume"`
|
377
|
|
- VenousPressure float64 `json:"venous_pressure"`
|
378
|
|
- VenousPressureType int64 `json:"venous_pressure_type"`
|
379
|
|
- TransmembranePressure float64 `json:"transmembrane_pressure"`
|
380
|
|
- TransmembranePressureType int64 `json:"transmembrane_pressure_type"`
|
381
|
|
- UltrafiltrationVolume float64 `json:"ultrafiltration_volume"`
|
382
|
|
- UltrafiltrationRate float64 `json:"ultrafiltration_rate"`
|
383
|
|
- ArterialPressure float64 `json:"arterial_pressure"`
|
384
|
|
- ArterialPressureType int64 `json:"arterial_pressure_type"`
|
385
|
|
- SodiumConcentration float64 `json:"sodium_concentration"`
|
386
|
|
- DialysateTemperature float64 `json:"dialysate_temperature"`
|
387
|
|
- Temperature float64 `json:"temperature"`
|
388
|
|
- ReplacementRate float64 `json:"replacement_rate"`
|
389
|
|
- DisplacementQuantity float64 `json:"displacement_quantity"`
|
390
|
|
- KTV float64 `json:"ktv"`
|
391
|
|
- Symptom string `json:"symptom"`
|
392
|
|
- Dispose string `json:"dispose"`
|
393
|
|
- Result string `json:"result"`
|
394
|
|
- Conductivity float64 `json:"conductivity"`
|
395
|
|
- DisplacementFlowQuantity float64 `json:"displacement_flow_quantity"`
|
396
|
|
- BloodOxygenSaturation string `gorm:"column:blood_oxygen_saturation" json:"blood_oxygen_saturation" form:"blood_oxygen_saturation"`
|
397
|
|
- Heparin float64 `gorm:"column:heparin" json:"heparin" form:"heparin"`
|
398
|
|
- DialysateFlow float64 `gorm:"column:dialysate_flow" json:"dialysate_flow" form:"dialysate_flow"`
|
|
372
|
+ SystolicBP float64 `json:"systolic_bp"`
|
|
373
|
+ DiastolicBP float64 `json:"diastolic_bp"`
|
|
374
|
+ PulseFrequency float64 `json:"pulse_frequency"`
|
|
375
|
+ BreathingRated float64 `json:"breathing_rated"`
|
|
376
|
+ BloodFlowVolume float64 `json:"blood_flow_volume"`
|
|
377
|
+ VenousPressure float64 `json:"venous_pressure"`
|
|
378
|
+ VenousPressureType int64 `json:"venous_pressure_type"`
|
|
379
|
+ TransmembranePressure float64 `json:"transmembrane_pressure"`
|
|
380
|
+ TransmembranePressureType int64 `json:"transmembrane_pressure_type"`
|
|
381
|
+ UltrafiltrationVolume float64 `json:"ultrafiltration_volume"`
|
|
382
|
+ UltrafiltrationRate float64 `json:"ultrafiltration_rate"`
|
|
383
|
+ ArterialPressure float64 `json:"arterial_pressure"`
|
|
384
|
+ ArterialPressureType int64 `json:"arterial_pressure_type"`
|
|
385
|
+ SodiumConcentration float64 `json:"sodium_concentration"`
|
|
386
|
+ DialysateTemperature float64 `json:"dialysate_temperature"`
|
|
387
|
+ Temperature float64 `json:"temperature"`
|
|
388
|
+ ReplacementRate float64 `json:"replacement_rate"`
|
|
389
|
+ DisplacementQuantity float64 `json:"displacement_quantity"`
|
|
390
|
+ KTV float64 `json:"ktv"`
|
|
391
|
+ Symptom string `json:"symptom"`
|
|
392
|
+ Dispose string `json:"dispose"`
|
|
393
|
+ Result string `json:"result"`
|
|
394
|
+ Conductivity float64 `json:"conductivity"`
|
|
395
|
+ DisplacementFlowQuantity float64 `json:"displacement_flow_quantity"`
|
|
396
|
+ BloodOxygenSaturation string `gorm:"column:blood_oxygen_saturation" json:"blood_oxygen_saturation" form:"blood_oxygen_saturation"`
|
|
397
|
+ Heparin float64 `gorm:"column:heparin" json:"heparin" form:"heparin"`
|
|
398
|
+ DialysateFlow float64 `gorm:"column:dialysate_flow" json:"dialysate_flow" form:"dialysate_flow"`
|
399
|
399
|
}
|
400
|
400
|
|
401
|
401
|
// /api/dislysis/monitor/edit [post]
|
|
@@ -472,31 +472,31 @@ func (this *DialysisRecordAPIController) EditMonitor() {
|
472
|
472
|
MonitoringDate: monitorParam.MonitoringDate,
|
473
|
473
|
OperateTime: monitorParam.OperateTime,
|
474
|
474
|
// MonitoringTime: monitorParam.MonitoringTime,
|
475
|
|
- PulseFrequency: monitorParam.PulseFrequency,
|
476
|
|
- BreathingRate: monitorParam.BreathingRated,
|
477
|
|
- SystolicBloodPressure: monitorParam.SystolicBP,
|
478
|
|
- DiastolicBloodPressure: monitorParam.DiastolicBP,
|
479
|
|
- BloodFlowVolume: monitorParam.BloodFlowVolume,
|
480
|
|
- VenousPressure: monitorParam.VenousPressure,
|
481
|
|
- VenousPressureType: monitorParam.VenousPressureType,
|
482
|
|
- ArterialPressure: monitorParam.ArterialPressure,
|
483
|
|
- ArterialPressureType: monitorParam.ArterialPressureType,
|
484
|
|
- TransmembranePressure: monitorParam.TransmembranePressure,
|
|
475
|
+ PulseFrequency: monitorParam.PulseFrequency,
|
|
476
|
+ BreathingRate: monitorParam.BreathingRated,
|
|
477
|
+ SystolicBloodPressure: monitorParam.SystolicBP,
|
|
478
|
+ DiastolicBloodPressure: monitorParam.DiastolicBP,
|
|
479
|
+ BloodFlowVolume: monitorParam.BloodFlowVolume,
|
|
480
|
+ VenousPressure: monitorParam.VenousPressure,
|
|
481
|
+ VenousPressureType: monitorParam.VenousPressureType,
|
|
482
|
+ ArterialPressure: monitorParam.ArterialPressure,
|
|
483
|
+ ArterialPressureType: monitorParam.ArterialPressureType,
|
|
484
|
+ TransmembranePressure: monitorParam.TransmembranePressure,
|
485
|
485
|
TransmembranePressureType: monitorParam.TransmembranePressureType,
|
486
|
|
- UltrafiltrationRate: monitorParam.UltrafiltrationRate,
|
487
|
|
- UltrafiltrationVolume: monitorParam.UltrafiltrationVolume,
|
488
|
|
- SodiumConcentration: monitorParam.SodiumConcentration,
|
489
|
|
- DialysateTemperature: monitorParam.DialysateTemperature,
|
490
|
|
- Temperature: monitorParam.Temperature,
|
491
|
|
- ReplacementRate: monitorParam.ReplacementRate,
|
492
|
|
- DisplacementQuantity: monitorParam.DisplacementQuantity,
|
493
|
|
- Ktv: monitorParam.KTV,
|
494
|
|
- Symptom: monitorParam.Symptom,
|
495
|
|
- Dispose: monitorParam.Dispose,
|
496
|
|
- Result: monitorParam.Result,
|
497
|
|
- MonitoringNurse: adminUserInfo.AdminUser.Id,
|
498
|
|
- Conductivity: monitorParam.Conductivity,
|
499
|
|
- DisplacementFlowQuantity: monitorParam.DisplacementFlowQuantity,
|
|
486
|
+ UltrafiltrationRate: monitorParam.UltrafiltrationRate,
|
|
487
|
+ UltrafiltrationVolume: monitorParam.UltrafiltrationVolume,
|
|
488
|
+ SodiumConcentration: monitorParam.SodiumConcentration,
|
|
489
|
+ DialysateTemperature: monitorParam.DialysateTemperature,
|
|
490
|
+ Temperature: monitorParam.Temperature,
|
|
491
|
+ ReplacementRate: monitorParam.ReplacementRate,
|
|
492
|
+ DisplacementQuantity: monitorParam.DisplacementQuantity,
|
|
493
|
+ Ktv: monitorParam.KTV,
|
|
494
|
+ Symptom: monitorParam.Symptom,
|
|
495
|
+ Dispose: monitorParam.Dispose,
|
|
496
|
+ Result: monitorParam.Result,
|
|
497
|
+ MonitoringNurse: adminUserInfo.AdminUser.Id,
|
|
498
|
+ Conductivity: monitorParam.Conductivity,
|
|
499
|
+ DisplacementFlowQuantity: monitorParam.DisplacementFlowQuantity,
|
500
|
500
|
Status: 1,
|
501
|
501
|
CreatedTime: time.Now().Unix(),
|
502
|
502
|
UpdatedTime: time.Now().Unix(),
|