16 lines
834 B
Go
16 lines
834 B
Go
package entity
|
||
|
||
//Bundle 私有化环境下bundle管理由运营端管理,这里新建一个表来处理
|
||
//机构端创建应用时,只需要选择其中一个,选择之后会重新生成一个新的bundleInfo与应用关联
|
||
type Bundle struct {
|
||
BundleID string `json:"bundleId" bson:"bundleId"`
|
||
Remark string `json:"remark" bson:"remark"`
|
||
SDKKey string `json:"SDKKey" bson:"SDKKey"`
|
||
SDKID string `json:"SDKID" bson:"SDKID"`
|
||
IsFirstCreate bool `json:"isFirstCreate" bson:"isFirstCreate"` //是否第一次创建
|
||
CreatedAt int64 `json:"createdAt" bson:"createdAt"`
|
||
CreatedAccount string `json:"createdAccount" bson:"createdAccount"`
|
||
CreatedBy string `json:"createdBy" bson:"createdBy"`
|
||
IsForbidden int `json:"isForbidden" bson:"isForbidden"` //0:可用 1:禁用
|
||
}
|