21 lines
374 B
Go
21 lines
374 B
Go
package wechatx
|
|
|
|
import (
|
|
"time"
|
|
|
|
uuid "github.com/satori/go.uuid"
|
|
)
|
|
|
|
// 构造消息
|
|
func (w *wechat) BuildTextMsg(to string, content string) *WechatMessage {
|
|
msg := &WechatMessage{
|
|
ToUserName: to,
|
|
FromUserName: w.sourceId,
|
|
CreateTime: time.Now().Unix(),
|
|
MsgType: "text",
|
|
Content: content,
|
|
MsgId: uuid.NewV4().String(),
|
|
}
|
|
return msg
|
|
}
|