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

16 lines
834 B
Go
Raw Permalink Blame History

This file contains ambiguous Unicode characters!

This file contains ambiguous Unicode characters that may be confused with others in your current locale. If your use case is intentional and legitimate, you can safely ignore this warning. Use the Escape button to highlight these characters.

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禁用
}