feat:完善项目信息

This commit is contained in:
henry
2022-01-20 15:49:44 +08:00
parent b87cd837be
commit bfa9af1654
8 changed files with 110 additions and 11 deletions

View File

@ -122,6 +122,24 @@ const (
TechnologyMaturityForProduce
)
func GetTechnologyMaturityTitle(key TechnologyMaturity) string {
switch key {
case TechnologyMaturityForDev:
return "正在研发"
case TechnologyMaturityForTest:
return "小试阶段"
case TechnologyMaturityForTestFinish:
return "通过小试"
case TechnologyMaturityForModerateTest:
return "中试阶段"
case TechnologyMaturityForModerateTestFinish:
return "通过中试"
case TechnologyMaturityForProduce:
return "可规模生产"
}
return ""
}
// TechnologyCooperationMode 科技合作模式
type TechnologyCooperationMode int
@ -145,3 +163,27 @@ const (
// TechnologyCooperationModeForOther 其他
TechnologyCooperationModeForOther
)
func GetTechnologyCooperationModeTitle(key TechnologyCooperationMode) string {
switch key {
case TechnologyCooperationModeForJSTransfer:
return "技术转让"
case TechnologyCooperationModeForJSPermit:
return "技术许可"
case TechnologyCooperationModeForJSShare:
return "技术入股"
case TechnologyCooperationModeForCooperation:
return "合作开发"
case TechnologyCooperationModeForFinancing:
return "融资"
case TechnologyCooperationModeForCompany:
return "公司"
case TechnologyCooperationModeForAgentJoin:
return "代理加盟"
case TechnologyCooperationModeForMarketing:
return "市场推广"
case TechnologyCooperationModeForOther:
return "其他"
}
return ""
}