YYC
2025-05-16 fd33b1408f39e30fcfee037468ace9050e27b739
熏蒸备案调整
已修改3个文件
12 ■■■■ 文件已修改
src/main/java/com/fzzy/api/view/Api1306.view.xml 2 ●●● 补丁 | 查看 | 原始文档 | blame | 历史
src/main/java/com/fzzy/api/view/repository/Api9201Rep.java 6 ●●●● 补丁 | 查看 | 原始文档 | blame | 历史
src/main/java/com/fzzy/otherview/gd2022/pr/GDApi9201PR.java 4 ●●●● 补丁 | 查看 | 原始文档 | blame | 历史
src/main/java/com/fzzy/api/view/Api1306.view.xml
@@ -230,7 +230,7 @@
      <PropertyDef name="ctz">
        <Property></Property>
        <Property name="label">CT值</Property>
        <Property name="dataType">double</Property>
        <Property name="dataType">Double</Property>
      </PropertyDef>
      <PropertyDef name="sqqlhqnd">
        <Property></Property>
src/main/java/com/fzzy/api/view/repository/Api9201Rep.java
@@ -19,14 +19,14 @@
    /**
     * 根据表单主键更新操作标志状态
     *
     * @param dwdm 主键ID
     * @param
     * @param czbz 操作标志
     * @return
     */
    @Transactional
    @Modifying
    @Query("update Api9201 set czbz =:czbz where dwdm =:dwdm ")
    int updateStatus(@Param("dwdm") String dwdm, @Param("czbz") String czbz);
    @Query("update Api9201 set czbz =:czbz where tbrq =:tbrq and czbz = 'i'")
    int updateStatus(@Param("tbrq") Date tbrq, @Param("czbz") String czbz);
    @Query("from Api9201 where kqdm=:kqdm and zhgxsj >=:start and zhgxsj <:end order by zhgxsj ")
src/main/java/com/fzzy/otherview/gd2022/pr/GDApi9201PR.java
@@ -217,7 +217,7 @@
            result += responseDto.toString();
            if (responseDto.getSuccess() == 0) {
                if (Constant.CZBZ_I.equals(d.getCzbz())) {
                    api9201Rep.updateStatus(data.getDwdm(), Constant.CZBZ_U);
                    api9201Rep.updateStatus(data.getTbrq(), Constant.CZBZ_U);
                }
            }
        }
@@ -245,7 +245,7 @@
            for (Api9201 data : items) {
                if (Constant.CZBZ_I.equals(data.getCzbz())) {
                    //更新状态
                    api9201Rep.updateStatus(data.getDwdm(), Constant.CZBZ_U);
                    api9201Rep.updateStatus(data.getTbrq(), Constant.CZBZ_U);
                }
            }
        }