czt
2026-01-13 5eeefc6b1dd8c8c4f69efcec0c7ad13d35395487
fzzy-igdss-inte/src/main/java/com/fzzy/igds/api/v1/service/ApiV1Service3030.java
@@ -10,6 +10,7 @@
import com.fzzy.igds.service.SnapRecordService;
import com.fzzy.igds.utils.ContextUtil;
import com.ruoyi.common.config.FrameworkConfig;
import lombok.extern.slf4j.Slf4j;
import org.apache.commons.lang3.time.DateUtils;
import org.springframework.scheduling.annotation.Async;
import org.springframework.stereotype.Component;
@@ -21,6 +22,7 @@
 * @Author CZT
 * @Date 2026/1/7 11:07
 */
@Slf4j
@Component
public class ApiV1Service3030 {
@@ -35,7 +37,7 @@
     * @param gatewaySer
     * @return
     */
    public ApiV1Resp<Object> analysis(ApiV1Req<JSONObject> req, GatewaySer gatewaySer) throws Exception{
    public ApiV1Resp<Object> analysis(ApiV1Req<Object> req, GatewaySer gatewaySer) throws Exception{
        //转化为对象
        List<Param3030> list = JSONObject.parseArray(req.getData().toString(), Param3030.class);
@@ -78,7 +80,7 @@
            snapRecordService.addData(snapRecord);
        }
        log.info("质押监管接口V1,3030接口解析完成");
    }
}