11 lines
175 B
Go
11 lines
175 B
Go
|
|
package managecenterModel
|
||
|
|
|
||
|
|
// 白名单列表对象
|
||
|
|
type WhiteList struct {
|
||
|
|
// 合作商Id
|
||
|
|
PartnerId int32 `json:"PartnerId"`
|
||
|
|
|
||
|
|
// 用户Id
|
||
|
|
UserId string `json:"UserId"`
|
||
|
|
}
|