cooperation_info.go 251 字节 原文件 审查 历史 永久链接 1 2 3 4 5 6 7 8 9 10 11 package domain import "time" // 共创信息 type CooperationInfo struct { // 共创公司 CooperationCompany string `json:"cooperationCompany"` // 共创到期时间 (yyyy-MM-dd) CooperationDeadline time.Time `json:"cooperationDeadline"` }