GAAS GFrame项目web后台
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

20 lines
301 B

package task
import (
services "LAPP_GAAS_GFrame_BACKEND/services/schedule"
)
var ApsReleaseStatus int
func StartApsRelease() {
if ApsReleaseStatus == 0 {
ApsReleaseStatus = 1
defer func() {
ApsReleaseStatus = 0
}()
} else {
return
}
plantNr := 100
services.ApsRelease(plantNr)
}