archive.go 241 B

12345678910
  1. package model
  2. import (
  3. arcMDL "go-common/app/service/main/archive/model/archive"
  4. )
  5. // ArcVisible .
  6. func ArcVisible(state int32) bool {
  7. return state == arcMDL.StateOpen || state == arcMDL.StateOrange || state == arcMDL.StateForbidFixed
  8. }