cooperation_user_list.go 371 字节
package query

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

type CooperationUserListQuery struct {
	//操作人
	Operator domain.Operator `json:"-"`
	//用户名称
	UserName string `json:"userName"`
	//共创公司
	CooperationCompany string   `json:"cooperationCompany"`
	SelectedField      []string `json:"selectedField"`
}