package db import ( "go_dreamfactory/pb" "github.com/liwei1dao/lego/core" ) type IMail interface { } const ( //Redis DB_MailTable core.SqlTable = "mail" ) type IMain interface { QueryUserMail(uId uint32) (pack *pb.DB_UserPackData, err error) }