19 lines
263 B
Go
19 lines
263 B
Go
|
package request
|
||
|
|
||
|
import (
|
||
|
"goweb-gin-demo/model/common/request"
|
||
|
"goweb-gin-demo/model/wt"
|
||
|
)
|
||
|
|
||
|
type WtRuleSearch struct{
|
||
|
wt.WtRule
|
||
|
request.PageInfo
|
||
|
}
|
||
|
|
||
|
type WtRuleRes struct {
|
||
|
ID uint
|
||
|
UserId int
|
||
|
Reporters []string
|
||
|
StartTime string
|
||
|
EndTime string
|
||
|
}
|