recharge_param.go 331 B

123456789
  1. package vo
  2. type RechargeParam struct {
  3. EnterpriseId string `json:"enterprise_id"` // 企业id
  4. SubAccountId int64 `json:"sub_account_id"`
  5. RechargeState int64 `json:"recharge_state"` // 充值状态(1充值待确认 2已充值 3充值失败)
  6. Page int `json:"page"`
  7. PageSize int `json:"page_size"`
  8. }