package logic import ( "context" "jygit.jydev.jianyu360.cn/ApplicationCenter/publicService/api/.xc/internal/svc" "jygit.jydev.jianyu360.cn/ApplicationCenter/publicService/api/.xc/internal/types" "github.com/zeromicro/go-zero/core/logx" ) type DatasmtListLogic struct { logx.Logger ctx context.Context svcCtx *svc.ServiceContext } func NewDatasmtListLogic(ctx context.Context, svcCtx *svc.ServiceContext) *DatasmtListLogic { return &DatasmtListLogic{ Logger: logx.WithContext(ctx), ctx: ctx, svcCtx: svcCtx, } } func (l *DatasmtListLogic) DatasmtList(req *types.DatasmtReqList) (resp *types.CommonResp, err error) { // todo: add your logic here and delete this line return }