You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
18 lines
806 B
18 lines
806 B
package vote
|
|
|
|
// 条件筛选
|
|
type GetVoteDetailListReq struct {
|
|
PageNo int `v:"required" json:"pageNo" dc:"页码" d:"1"`
|
|
PageSize int `v:"required" json:"pageSize" dc:"页面大小" d:"10"`
|
|
ActivityId int `v:"required" json:"activityId" dc:"活动id"`
|
|
Jwcode string `json:"jwcode" dc:"查询条件中的精网号"`
|
|
Dept string `json:"dept" dc:"查询条件中的部门"`
|
|
StartDate string `json:"startDate" dc:"开始时间"`
|
|
EndDate string `json:"endDate" dc:"结束时间"`
|
|
//StartTime *gtime.Time `json:"startTime" dc:"开始时间"`
|
|
// EndTime *gtime.Time `json:"endTime" dc:"结束时间"`
|
|
}
|
|
type GetActivityListReq struct {
|
|
PageNo int `v:"required" json:"pageNo" dc:"页码" d:"1"`
|
|
PageSize int `v:"required" json:"pageSize" dc:"页面大小" d:"24"`
|
|
}
|