get_cooperation_project.go 348 字节
package query

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

type GetCooperationProjectQuery struct {
	//操作人
	Operator domain.Operator `json:"-"`
	// 共创项目ID
	CooperationProjectId     int    `json:"-"`
	CooperationProjectNumber string `json:"-"`
	OrgId                    int    `json:"-"`
}