This commit is contained in:
2026-07-18 11:49:53 +08:00
26 changed files with 1062 additions and 74 deletions

View File

@@ -0,0 +1,14 @@
package yysy
import (
"context"
"hyapi-server/internal/domains/api/dto"
"hyapi-server/internal/domains/api/services/processors"
)
// ProcessYYSYC2V7Request YYSYP72D 运营商近3个月平均账单天远中转
func ProcessYYSYC2V7Request(ctx context.Context, params []byte, deps *processors.ProcessorDependencies) ([]byte, error) {
var paramsDto dto.YYSYC2V7Req
return processors.ValidateParamsAndCallTianyuan(ctx, deps, "YYSYP72D", params, &paramsDto)
}