const.go 283 字节 原文件 审查 历史 永久链接 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 package push /* PushType 推送类型 */ const ( PushToSingle = iota + 1 //单推 PushToList //群推 ) /* MsgType 消息类型 -> 决定发送的模板样式 */ const ( SystemTransmission = iota + 1 //系统消息 SystemNotification //系统通知 )