czt
2025-09-25 8e095a4a2e882e31836e98742bf4f408233bd351
src/main/java/com/fzzy/api/service/ApiTriggerService.java
@@ -123,10 +123,10 @@
                return bizCode;
            }
            if (Constant.TRIGGER_P_LSPZ.equals(parentCode)) {
                result = Integer.valueOf(bizCode) * 1000000 + "";
                result = bizCode + "000000";
                result = result.substring(0, 7);
            } else if (Constant.TRIGGER_P_LSXZ.equals(parentCode)) {
                result = Integer.valueOf(bizCode) * 100 + "";
                result = bizCode + "00";
                result = result.substring(0, 3);
            } else {
                result = bizCode;
@@ -149,10 +149,10 @@
                return bizCode;
            }
            if (Constant.TRIGGER_P_LSPZ.equals(parentCode)) {
                result = Integer.valueOf(bizCode) * 1000000 + "";
                result = bizCode + "000000";
                result = result.substring(0, 7);
            } else if (Constant.TRIGGER_P_LSXZ.equals(parentCode)) {
                result = Integer.valueOf(bizCode) * 100 + "";
                result = bizCode + "00";
                result = result.substring(0, 3);
            } else {
                result = bizCode;
@@ -215,6 +215,7 @@
        list.add(new ApiTrigger(SyncProtocol.FZZY_V30_GB.getCode(), SyncProtocol.FZZY_V30_GB.getName()));
        list.add(new ApiTrigger(SyncProtocol.FZZY_V35_GB.getCode(), SyncProtocol.FZZY_V35_GB.getName()));
        list.add(new ApiTrigger(SyncProtocol.FZZY_V40_GB.getCode(), SyncProtocol.FZZY_V40_GB.getName()));
        list.add(new ApiTrigger(SyncProtocol.FZZY_V61_GB.getCode(), SyncProtocol.FZZY_V61_GB.getName()));
        list.add(new ApiTrigger(SyncProtocol.FZZY_V40_WHJL.getCode(), SyncProtocol.FZZY_V40_WHJL.getName()));
        list.add(new ApiTrigger(SyncProtocol.FZZY_V35_SHYZ.getCode(), SyncProtocol.FZZY_V35_SHYZ.getName()));
        return list;