You can not select more than 25 topics
Topics must start with a chinese character,a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
- package enum
-
- type SynergyStatus int64
-
- const (
- SYNERGIZED SynergyStatus = 0
- NOT_SYNERGIZED SynergyStatus = 1
- )
-
- func (s SynergyStatus) String() string {
- switch s {
- case SYNERGIZED:
- return "已协同"
- case NOT_SYNERGIZED:
- return "未协同"
- default:
- return ""
- }
- }
|