12345678910111213141516171819202122232425262728293031 |
- package logic
- import (
- "context"
- "jyBXBase/rpc/bxcollection/bxcol"
- "jyBXBase/rpc/bxcollection/internal/svc"
- "github.com/zeromicro/go-zero/core/logx"
- )
- type BCActionLogic struct {
- ctx context.Context
- svcCtx *svc.ServiceContext
- logx.Logger
- }
- func NewBCActionLogic(ctx context.Context, svcCtx *svc.ServiceContext) *BCActionLogic {
- return &BCActionLogic{
- ctx: ctx,
- svcCtx: svcCtx,
- Logger: logx.WithContext(ctx),
- }
- }
- // 招标信息收藏
- func (l *BCActionLogic) BCAction(in *bxcol.BCActionReq) (*bxcol.LabelActionRes, error) {
- // todo: add your logic here and delete this line
- return &bxcol.LabelActionRes{}, nil
- }
|