mirror of
https://github.com/TeaOSLab/EdgeNode.git
synced 2025-11-03 06:40:25 +08:00
18 lines
348 B
Go
18 lines
348 B
Go
// Copyright 2021 GoEdge goedge.cdn@gmail.com. All rights reserved.
|
|
|
|
package waf
|
|
|
|
type BaseAction struct {
|
|
currentActionId int64
|
|
}
|
|
|
|
// ActionId 读取ActionId
|
|
func (this *BaseAction) ActionId() int64 {
|
|
return this.currentActionId
|
|
}
|
|
|
|
// SetActionId 设置Id
|
|
func (this *BaseAction) SetActionId(actionId int64) {
|
|
this.currentActionId = actionId
|
|
}
|