planVo.go 160 B

1234567
  1. package vo
  2. type PlanVo struct {
  3. SendAmount int `json:"send_amount"`
  4. ReceiveAmount int `json:"receive_amount"`
  5. ReportAmount int `json:"report_amount"`
  6. }