dto.go
1.3 KB
package dto
import "time"
type CooperationContractItem struct {
CooperationContractId int `json:"cooperationContractId,string,"`
CooperationContractNumber string `json:"cooperationContractNumber"` //合约编号
CooperationProjectNumber string `json:"cooperationProjectNumber"`
CooperationContractName string `json:"CooperationContractName"` //合约名称
Department string `json:"department"`
IncentivesType string `json:"incentivesType"` //Incentives激励方式
CooperationContractSponsor struct {
UserId int `json:"userId,string,"`
UserName string `json:"userName"`
} `json:"cooperationContractSponsor"` //共创发起人
CooperationMode struct {
CooperationModeId int `json:"cooperationModeId,string,"` // 共创模式ID
CooperationModeNumber string `json:"cooperationModeNumber"` // 共创模式编码,
CooperationModeName string `json:"cooperationModeName"` // 模式名称,
} `json:"cooperationMode"` //共创模式
Status int `json:"status"` //合约状态
CreateTtime time.Time `json:"createTtime"`
Org struct {
OrgId int `json:"orgId"` //发部门, id
OrgName string `json:"orgName"` //发起企业
} `json:"org"` //组织结构
}
type CooperationContractInfo struct {
}