You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
16 lines
636 B
16 lines
636 B
package model |
|
|
|
// VipInfoBoResp vipinfo bo resp. |
|
type VipInfoBoResp struct { |
|
Mid int64 `json:"mid"` |
|
VipType int32 `json:"vip_type"` |
|
PayType int32 `json:"pay_type"` |
|
PayChannelID int32 `json:"pay_channel_id"` |
|
VipStatus int32 `json:"vip_status"` |
|
VipStartTime int64 `json:"vip_start_time"` |
|
VipOverdueTime int64 `json:"vip_overdue_time"` |
|
AnnualVipOverdueTime int64 `json:"annual_vip_overdue_time"` |
|
VipRecentTime int64 `json:"vip_recent_time"` |
|
AutoRenewed int32 `json:"auto_renewed"` |
|
IosOverdueTime int64 `json:"ios_overdue_time"` |
|
}
|
|
|