12 lines
171 B
Go
12 lines
171 B
Go
|
package response
|
||
|
|
||
|
import "goweb-gin-demo/global"
|
||
|
|
||
|
type WtRuleResult struct {
|
||
|
global.GLOBAL_MODEL
|
||
|
UserId int
|
||
|
Reporters []string
|
||
|
StartTime string
|
||
|
EndTime string
|
||
|
}
|