审查视图

pkg/application/web/undertakerFeedback/command/search_feedback.go 396 字节
tangxuhui authored
1 2 3 4 5 6 7 8
package command

import "gitlab.fjmaimaimai.com/allied-creation/allied-creation-gateway/pkg/domain"

type SearchFeedbackCommand struct {
	//操作人
	Operator domain.Operator `json:"-"`
	// 页面大小
tangxuhui authored
9
	PageNumber int64 ` json:"pageNumber"`
tangxuhui authored
10
	// 页面大小
tangxuhui authored
11 12 13
	PageSize       int64  ` json:"pageSize"`
	ContractName   string `json:"contractName"`
	UndertakerName string `json:"undertakerName"`
tangxuhui authored
14
}