mirror of
https://gitcode.com/flipped-aurora/gin-vue-admin.git
synced 2026-05-17 20:57:46 +00:00
13 lines
295 B
Go
13 lines
295 B
Go
|
|
package request
|
||
|
|
|
||
|
|
import (
|
||
|
|
"github.com/flipped-aurora/gin-vue-admin/server/model/common/request"
|
||
|
|
"time"
|
||
|
|
)
|
||
|
|
|
||
|
|
type InfoSearch struct {
|
||
|
|
StartCreatedAt *time.Time `json:"startCreatedAt" form:"startCreatedAt"`
|
||
|
|
EndCreatedAt *time.Time `json:"endCreatedAt" form:"endCreatedAt"`
|
||
|
|
request.PageInfo
|
||
|
|
}
|