forked from free-lancers/electricity_bill_calc_service
		
	fix(charge):基本完成用户充值功能部分的测试。
This commit is contained in:
		| @@ -24,9 +24,9 @@ type UserChargeDetail struct { | ||||
| } | ||||
|  | ||||
| type ChargeRecordCreationForm struct { | ||||
| 	UserId   string           `json:"userId"` | ||||
| 	Fee      *decimal.Decimal `json:"fee"` | ||||
| 	Discount *decimal.Decimal `json:"discount"` | ||||
| 	Amount   *decimal.Decimal `json:"amount"` | ||||
| 	ChargeTo types.Date       `json:"chargeTo"` | ||||
| 	UserId   string              `json:"userId"` | ||||
| 	Fee      decimal.NullDecimal `json:"fee"` | ||||
| 	Discount decimal.NullDecimal `json:"discount"` | ||||
| 	Amount   decimal.NullDecimal `json:"amount"` | ||||
| 	ChargeTo types.Date          `json:"chargeTo"` | ||||
| } | ||||
|   | ||||
		Reference in New Issue
	
	Block a user