[ Executor ] modify base function part - 1

This commit is contained in:
zeaslity
2023-06-26 14:52:53 +08:00
parent 97187363cc
commit 193c1118f2
2 changed files with 9 additions and 8 deletions

View File

@@ -29,12 +29,13 @@ type OctopusMsgBuilder interface {
}
type OctopusMessage struct {
UUID string `json:"uuid"`
InitTime string `json:"init_time" format:"2023-03-21 16:38:30"`
Type string `json:"type"`
Content interface{} `json:"content"`
Result interface{} `json:"result"`
ACTime string `json:"ac_time" format:"2023-03-21 16:38:30"`
UUID string `json:"uuid"`
InitTime string `json:"init_time" format:"2023-03-21 16:38:30"`
Type string `json:"type"`
Content interface{} `json:"content"`
Result interface{} `json:"result"`
ResultCode string `json:"resultCode"`
ACTime string `json:"ac_time" format:"2023-03-21 16:38:30"`
}
func (om *OctopusMessage) Handle() {