1、修正网站、文件传输提交审核时区域IP列表为空的BUG;
2、修改HTTP的配置域标识,与服务接口端统一。 Signed-off-by: zhangwei <zhangwei@intranet.com>
This commit is contained in:
@@ -29,7 +29,7 @@ public interface FileTransferCfgDao extends CrudDao<CfgIndexInfo> {
|
||||
public void saveFtpKeywordCfg(BaseStringCfg entity);
|
||||
public void deleteFtpIpCfg(CfgIndexInfo entity);
|
||||
public void deleteFtpKeywordCfg(CfgIndexInfo entity);
|
||||
public void deleteFtpFileDigestCfg(CfgIndexInfo entity);
|
||||
public void deleteFileDigestCfg(CfgIndexInfo entity);
|
||||
public void updateCfgIndex(CfgIndexInfo entity);
|
||||
public void updateCfgValid(BaseCfg entity);
|
||||
public void auditCfg(BaseCfg entity);
|
||||
|
||||
@@ -329,12 +329,12 @@
|
||||
<select id="getHttpReqBodyList" resultMap="stringCfgMap" parameterType="com.nis.domain.configuration.CfgIndexInfo">
|
||||
SELECT
|
||||
<include refid="StrCfg_Column" />
|
||||
FROM http_body_cfg a where compile_id=#{compileId} and cfg_type='http_req_body' and function_id=#{functionId}
|
||||
FROM http_body_cfg a where compile_id=#{compileId} and cfg_type=#{cfgType} and function_id=#{functionId}
|
||||
</select>
|
||||
<select id="getHttpResBodyList" resultMap="stringCfgMap" parameterType="com.nis.domain.configuration.CfgIndexInfo">
|
||||
SELECT
|
||||
<include refid="StrCfg_Column" />
|
||||
FROM http_body_cfg a where compile_id=#{compileId} and cfg_type='http_res_body' and function_id=#{functionId}
|
||||
FROM http_body_cfg a where compile_id=#{compileId} and cfg_type=#{cfgType} and function_id=#{functionId}
|
||||
</select>
|
||||
<select id="getHttpReqHdrList" resultMap="complexCfgMap" parameterType="com.nis.domain.configuration.CfgIndexInfo">
|
||||
SELECT
|
||||
|
||||
Reference in New Issue
Block a user