service/api/interfaces/hvyogo_signable.go

10 lines
167 B
Go
Raw Normal View History

2024-06-17 22:25:43 +08:00
package interfaces
2024-06-18 17:10:42 +08:00
import "service/api/message"
2024-06-17 22:25:43 +08:00
type HvyogoSignable interface {
2024-06-18 17:10:42 +08:00
GetArgList() []*message.JsonParamEntry
2024-06-17 22:25:43 +08:00
SetSign(string)
GetCooperatorId() string
}