finclip-app-manager/domain/entity/bundle.go

16 lines
834 B
Go
Raw Normal View History

2023-10-31 14:07:26 +08:00
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禁用
}