From 43850fdd5d3e95e2650cc48f1a76c761772b680b Mon Sep 17 00:00:00 2001 From: meixiongfeng <766881921@qq.com> Date: Tue, 14 Jun 2022 12:47:35 +0800 Subject: [PATCH] =?UTF-8?q?=E6=B5=8B=E8=AF=95=E6=96=87=E4=BB=B6?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- modules/mail_test.go | 29 +++++++++++++++++++++++++++++ 1 file changed, 29 insertions(+) create mode 100644 modules/mail_test.go diff --git a/modules/mail_test.go b/modules/mail_test.go new file mode 100644 index 000000000..d4b5da355 --- /dev/null +++ b/modules/mail_test.go @@ -0,0 +1,29 @@ +package modules + +import ( + "go_dreamfactory/comm" + "go_dreamfactory/lego/sys/log" + "go_dreamfactory/pb" + "testing" + "time" +) + +var ( + obj MComp_DBComp +) + +func TestCreatemoudles(t *testing.T) { + _mail := &pb.DB_MailData{ + + UserId: "uid123", + Title: "系统邮件", + Contex: "恭喜获得专属礼包一份", + CreateTime: uint64(time.Now().Unix()), + DueTime: uint64(time.Now().Unix()) + 30*24*3600, + Check: false, + Reward: false, + } + obj.InsertModelLogs("mail", "uid123", comm.LogHandleType_Insert, _mail) + + log.Debugf("insert : %v", _mail) +}