14 lines
277 B
Go
14 lines
277 B
Go
package api_feature
|
|
|
|
// PlatformStatus 平台状态
|
|
type PlatformStatus string
|
|
|
|
const (
|
|
PlatformStatusActive PlatformStatus = "active" // 启用
|
|
PlatformStatusInactive PlatformStatus = "inactive" // 停用
|
|
)
|
|
|
|
func (s PlatformStatus) String() string {
|
|
return string(s)
|
|
}
|