38 lines
1.1 KiB
Go
38 lines
1.1 KiB
Go
// Code scaffolded by goctl. Safe to edit.
|
|
// goctl 1.9.2
|
|
|
|
package socialServiceGovernmentProgram
|
|
|
|
import (
|
|
"context"
|
|
|
|
"github.com/JACKYMYPERSON/hldrCenter/config"
|
|
"github.com/JACKYMYPERSON/hldrCenter/internal/social_service_governmentprogram/internal/model"
|
|
|
|
"github.com/JACKYMYPERSON/hldrCenter/internal/social_service_governmentprogram/internal/types"
|
|
|
|
"github.com/zeromicro/go-zero/core/logx"
|
|
)
|
|
|
|
type GetSocialServiceGovernmentProgramLogic struct {
|
|
logx.Logger
|
|
ctx context.Context
|
|
cfg *config.Config
|
|
model model.SocialServiceGovernmentprogramModel
|
|
}
|
|
|
|
func NewGetSocialServiceGovernmentProgramLogic(ctx context.Context, cfg *config.Config, model model.SocialServiceGovernmentprogramModel) *GetSocialServiceGovernmentProgramLogic {
|
|
return &GetSocialServiceGovernmentProgramLogic{
|
|
Logger: logx.WithContext(ctx),
|
|
ctx: ctx,
|
|
cfg: cfg,
|
|
model: model,
|
|
}
|
|
}
|
|
|
|
func (l *GetSocialServiceGovernmentProgramLogic) GetSocialServiceGovernmentProgram(req *types.GetSocialServiceGovernmentProgramReq) (resp *types.GetSocialServiceGovernmentProgramResp, err error) {
|
|
// todo: add your logic here and delete this line
|
|
|
|
return
|
|
}
|