Browse Source

Merge branch 'master' of http://git.shengws.com/csx/XT_New

XMLWAN 5 years ago
parent
commit
21b81096cb
1 changed files with 2 additions and 2 deletions
  1. 2 2
      controllers/mobile_api_controllers/dialysis_api_controller.go

+ 2 - 2
controllers/mobile_api_controllers/dialysis_api_controller.go View File

785
 	is_eat, _ := c.GetInt64("is_eat", 0)
785
 	is_eat, _ := c.GetInt64("is_eat", 0)
786
 
786
 
787
 	cvc_a, _ := c.GetFloat("cvc_a", 0)
787
 	cvc_a, _ := c.GetFloat("cvc_a", 0)
788
-	cvc_b, _ := c.GetFloat("cvc_b", 0)
788
+	cvc_v, _ := c.GetFloat("cvc_v", 0)
789
 	channels, _ := c.GetInt64("channel", 0)
789
 	channels, _ := c.GetInt64("channel", 0)
790
 
790
 
791
 	if id <= 0 {
791
 	if id <= 0 {
875
 		InAdvanceReasonOther:         in_advance_reason_other,
875
 		InAdvanceReasonOther:         in_advance_reason_other,
876
 		IsEat:                        is_eat,
876
 		IsEat:                        is_eat,
877
 		CvcA:                         cvc_a,
877
 		CvcA:                         cvc_a,
878
-		CvcB:                         cvc_b,
878
+		CvcV:                         cvc_v,
879
 		Channel:                      channels,
879
 		Channel:                      channels,
880
 	}
880
 	}
881
 
881