recharge_param.go 394 B

1234567891011
  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. Others string `json:"others"` // 充值流水号或操作人
  9. }