代理操控业务部分功能提交配置、导入、导出
This commit is contained in:
@@ -21,5 +21,5 @@ public interface ProxyFileStrategyDao {
|
||||
public void insert(ProxyFileStrategyCfg entity);
|
||||
public void update(ProxyFileStrategyCfg entity);
|
||||
|
||||
|
||||
public List<ProxyFileStrategyCfg> fingResPages(ProxyFileStrategyCfg entity);
|
||||
}
|
||||
|
||||
@@ -310,6 +310,22 @@
|
||||
where cfg_id = #{cfgId,jdbcType=BIGINT}
|
||||
</update>
|
||||
|
||||
|
||||
<select id="fingResPages" parameterType="com.nis.domain.callback.ProxyFileStrategyCfg" resultMap="ProxyFileStrategyCfg">
|
||||
SELECT
|
||||
<include refid="ProxyFileStrategyCfgColumn" />
|
||||
FROM
|
||||
pxy_profile_response_pages a
|
||||
<where>
|
||||
<if test="isValid != null">
|
||||
AND a.IS_VALID=#{isValid,jdbcType=INTEGER}
|
||||
</if>
|
||||
<if test="isValid == null">
|
||||
AND a.IS_VALID != -1
|
||||
</if>
|
||||
<if test="isAudit != null">
|
||||
AND a.IS_AUDIT=#{isAudit,jdbcType=INTEGER}
|
||||
</if>
|
||||
</where>
|
||||
</select>
|
||||
|
||||
</mapper>
|
||||
Reference in New Issue
Block a user