This commit is contained in:
IT 老营长 @云轩领航-创始人 2025-06-12 08:22:19 +08:00
parent 2dd86622f0
commit 68ee945b5e

View File

@ -50,6 +50,7 @@ const (
MeetValue
MeetCheck
MeetPlan
MeetCode
)
var MeetTypeList = map[MeetType]string{
@ -57,6 +58,7 @@ var MeetTypeList = map[MeetType]string{
MeetValue: "原型评审",
MeetCheck: "项目验收",
MeetPlan: "方向规划",
MeetCode: "编程直播",
}
func (s MeetType) String() string { return MeetTypeList[s] }