修改了系统优惠卷 问诊类型

This commit is contained in:
2024-06-05 17:39:18 +08:00
parent 52888553bf
commit 7f5330361f
4 changed files with 50 additions and 10 deletions
+20
View File
@@ -663,3 +663,23 @@ func AddFinishStatusToString(i int) string {
return "未知"
}
}
// CouponInquiryTypeToString 关联问诊类型,application_scope=问诊时存在生效,逗号分隔(1:全部 2:快速问诊 3:专家问诊 4:公益问诊 5:问诊购药 6:检测)
func CouponInquiryTypeToString(i int) string {
switch i {
case 1:
return "全部"
case 2:
return "快速问诊"
case 3:
return "专家问诊"
case 4:
return "公益问诊"
case 5:
return "问诊购药"
case 6:
return "检测"
default:
return "未知"
}
}