11 lines
241 B
Go
11 lines
241 B
Go
|
package model
|
||
|
|
||
|
import (
|
||
|
arcMDL "go-common/app/service/main/archive/model/archive"
|
||
|
)
|
||
|
|
||
|
// ArcVisible .
|
||
|
func ArcVisible(state int32) bool {
|
||
|
return state == arcMDL.StateOpen || state == arcMDL.StateOrange || state == arcMDL.StateForbidFixed
|
||
|
}
|