get_school_ids_logic.go 658 B

123456789101112131415161718192021222324252627282930
  1. package logic
  2. import (
  3. "context"
  4. "git.i2edu.net/i2/i2-bill-erp/internal/svc"
  5. "git.i2edu.net/i2/i2-bill-erp/transform"
  6. "git.i2edu.net/i2/go-zero/core/logx"
  7. )
  8. type GetSchoolIdsLogic struct {
  9. ctx context.Context
  10. svcCtx *svc.ServiceContext
  11. logx.Logger
  12. }
  13. func NewGetSchoolIdsLogic(ctx context.Context, svcCtx *svc.ServiceContext) *GetSchoolIdsLogic {
  14. return &GetSchoolIdsLogic{
  15. ctx: ctx,
  16. svcCtx: svcCtx,
  17. Logger: logx.WithContext(ctx),
  18. }
  19. }
  20. func (l *GetSchoolIdsLogic) GetSchoolIds(in *transform.SchoolIdsReq) (*transform.SchoolIdsRes, error) {
  21. // todo: add your logic here and delete this line
  22. return &transform.SchoolIdsRes{}, nil
  23. }