This commit is contained in:
2026-07-24 10:44:33 +08:00
parent 40f6bc5bc1
commit 991f7c16f6
4 changed files with 6 additions and 6 deletions

View File

@@ -9,9 +9,9 @@ import (
"hyapi-server/internal/domains/api/services/processors"
)
// ProcessFLXLD77Request FLXLD77 API处理方法 - 劳动仲裁查询天远
func ProcessFLXLD77Request(ctx context.Context, params []byte, deps *processors.ProcessorDependencies) ([]byte, error) {
var paramsDto dto.FLXLD77Req
// ProcessFLXLLD77Request FLXLLD77 API处理方法 - 劳动仲裁查询天远
func ProcessFLXLLD77Request(ctx context.Context, params []byte, deps *processors.ProcessorDependencies) ([]byte, error) {
var paramsDto dto.FLXLLD77Req
if err := json.Unmarshal(params, &paramsDto); err != nil {
return nil, errors.Join(processors.ErrSystem, err)
}