|
12345678910111213141516171819202122232425262728293031 |
- package core
-
- import (
- "context"
- "github.com/zeromicro/go-zero/core/logx"
- clientCore "gitlink.org.cn/JointCloud/pcm-coordinator/client"
- "gitlink.org.cn/JointCloud/pcm-coordinator/internal/svc"
- )
-
- type PushNoticeLogic struct {
- logx.Logger
- ctx context.Context
- svcCtx *svc.ServiceContext
- }
-
- func NewPushNoticeLogic(ctx context.Context, svcCtx *svc.ServiceContext) *PushNoticeLogic {
- return &PushNoticeLogic{
- Logger: logx.WithContext(ctx),
- ctx: ctx,
- svcCtx: svcCtx,
- }
- }
-
- func (l *PushNoticeLogic) PushNotice(req *clientCore.PushNoticeReq) (resp *clientCore.PushNoticeResp, err error) {
- result := l.svcCtx.DbEngin.Table("t_notice").Create(&req.NoticeInfo)
- if result.Error != nil {
- return nil, result.Error
- }
-
- return
- }
|