datasmtlistlogic.go 704 B

123456789101112131415161718192021222324252627282930
  1. package logic
  2. import (
  3. "context"
  4. "jygit.jydev.jianyu360.cn/ApplicationCenter/publicService/api/.xc/internal/svc"
  5. "jygit.jydev.jianyu360.cn/ApplicationCenter/publicService/api/.xc/internal/types"
  6. "github.com/zeromicro/go-zero/core/logx"
  7. )
  8. type DatasmtListLogic struct {
  9. logx.Logger
  10. ctx context.Context
  11. svcCtx *svc.ServiceContext
  12. }
  13. func NewDatasmtListLogic(ctx context.Context, svcCtx *svc.ServiceContext) *DatasmtListLogic {
  14. return &DatasmtListLogic{
  15. Logger: logx.WithContext(ctx),
  16. ctx: ctx,
  17. svcCtx: svcCtx,
  18. }
  19. }
  20. func (l *DatasmtListLogic) DatasmtList(req *types.DatasmtReqList) (resp *types.CommonResp, err error) {
  21. // todo: add your logic here and delete this line
  22. return
  23. }