mirror of
https://github.com/iLoveElysia/openbilibili.git
synced 2026-06-08 05:58:29 -05:00
25 lines
444 B
Go
25 lines
444 B
Go
|
|
package param
|
||
|
|
|
||
|
|
import "go-common/app/interface/main/app-resource/model"
|
||
|
|
|
||
|
|
// Param struct
|
||
|
|
type Param struct {
|
||
|
|
Name string `json:"-"`
|
||
|
|
Value string `json:"-"`
|
||
|
|
Plat int8 `json:"-"`
|
||
|
|
Build int `json:"-"`
|
||
|
|
Condition string `json:"-"`
|
||
|
|
}
|
||
|
|
|
||
|
|
// Change func
|
||
|
|
func (p *Param) Change() {
|
||
|
|
switch p.Plat {
|
||
|
|
case 10:
|
||
|
|
p.Plat = model.PlatAndroidB
|
||
|
|
case 11:
|
||
|
|
p.Plat = model.PlatAndroidTVYST
|
||
|
|
case 12:
|
||
|
|
p.Plat = model.PlatIPhoneB
|
||
|
|
}
|
||
|
|
}
|