16 lines
198 B
Plaintext
16 lines
198 B
Plaintext
|
|
package managecenterModel
|
||
|
|
|
||
|
|
// 合作商类型
|
||
|
|
type PartnerType int32
|
||
|
|
|
||
|
|
const (
|
||
|
|
// IOS
|
||
|
|
Con_IOS PartnerType = 0
|
||
|
|
|
||
|
|
// Android
|
||
|
|
Con_Android PartnerType = 1
|
||
|
|
|
||
|
|
// 越狱
|
||
|
|
Con_JailBreak PartnerType = 2
|
||
|
|
)
|