12345678910111213141516171819202122232425262728293031 |
- package logic
- import (
- "context"
- "jyBXBuyer/rpc/internal/svc"
- "jyBXBuyer/rpc/type/bxbuyer"
- "github.com/zeromicro/go-zero/core/logx"
- )
- type BuyerListLogic struct {
- ctx context.Context
- svcCtx *svc.ServiceContext
- logx.Logger
- }
- func NewBuyerListLogic(ctx context.Context, svcCtx *svc.ServiceContext) *BuyerListLogic {
- return &BuyerListLogic{
- ctx: ctx,
- svcCtx: svcCtx,
- Logger: logx.WithContext(ctx),
- }
- }
- // 采购单位搜索
- func (l *BuyerListLogic) BuyerList(in *bxbuyer.BuyerListReq) (*bxbuyer.BuyerListResp, error) {
- // todo: add your logic here and delete this line
- return &bxbuyer.BuyerListResp{}, nil
- }
|