liusheng
18 小时以前 d2b45544842581d9f335f06dbad13da02ad5dd60
修改存储过程字段长度
已修改2个文件
6 ■■■■ 文件已修改
ruoyi-quartz/src/main/java/com/ruoyi/quartz/util/CreateDataTable.java 4 ●●●● 补丁 | 查看 | 原始文档 | blame | 历史
smartor/src/main/resources/mapper/smartor/PatMedOuthospMapper.xml 2 ●●● 补丁 | 查看 | 原始文档 | blame | 历史
ruoyi-quartz/src/main/java/com/ruoyi/quartz/util/CreateDataTable.java
@@ -220,11 +220,11 @@
                    // varchar / char / text 等字符串类型
                    if (dataType.contains("char") || dataType.contains("text") || dataType.contains("enum")) {
                        if (colName.equals("deptcode")) {
                            activeParams.add(new Object[]{"p_" + colName, colName, "in", colType});
                            activeParams.add(new Object[]{"p_" + colName, colName, "in", "TEXT"});
                            break;
                        }
                        if (colName.equals("hospitaldistrictcode")) {
                            activeParams.add(new Object[]{"p_" + colName, colName, "in", colType});
                            activeParams.add(new Object[]{"p_" + colName, colName, "in", "TEXT"});
                            break;
                        }
                        String kind = forceEqCols.contains(colName) ? "eq" : (eqPattern.matcher(colName).find() ? "eq" : "like");
smartor/src/main/resources/mapper/smartor/PatMedOuthospMapper.xml
@@ -397,7 +397,7 @@
                #{diagcheckFlag,          jdbcType=VARCHAR,  mode=IN},
                #{fuflag,          jdbcType=VARCHAR,  mode=IN},
                #{campusid,          jdbcType=VARCHAR,  mode=IN},
                #{serverState,      jdbcType=VARCHAR,  mode=IN}
                #{serverState,      jdbcType=VARCHAR,  mode=IN},
                #{pageSize,      jdbcType=INTEGER,  mode=IN},
                #{pageNum,       jdbcType=INTEGER,  mode=IN}
            )}