1.修改流量统计折线图的时区设置;
2.修改服务接口的参数,将版本信息改为在接口的方法参数中,而不是接口URL参数中; 3.修改配置启停任务调度逻辑。
This commit is contained in:
@@ -1582,6 +1582,26 @@
|
||||
AND a.CFG_ID!=#{cfgId,jdbcType=BIGINT}
|
||||
</if>
|
||||
</select>
|
||||
|
||||
|
||||
<!-- 配置状态启停,定时任务使用 -->
|
||||
<update id="updateCfgStatus" parameterType="com.nis.domain.configuration.BaseCfg">
|
||||
update ${tableName} set is_valid = #{isValid,jdbcType=INTEGER},
|
||||
edit_time = #{editTime,jdbcType=TIMESTAMP}
|
||||
<if test="isAudit != null" >
|
||||
,is_audit = #{isAudit,jdbcType=INTEGER}
|
||||
,audit_time=#{auditTime,jdbcType=TIMESTAMP}
|
||||
</if>
|
||||
<trim prefix="WHERE" prefixOverrides="AND |OR ">
|
||||
<if test="cfgId !=null ">
|
||||
AND cfg_id = #{cfgId,jdbcType=BIGINT}
|
||||
</if>
|
||||
<if test="compileId !=null ">
|
||||
AND compile_id = #{compileId,jdbcType=INTEGER}
|
||||
</if>
|
||||
and function_id=#{functionId,jdbcType=INTEGER}
|
||||
</trim>
|
||||
</update>
|
||||
<!-- <select id="findAppPolicyList" resultMap="AppPolicyCfgMap" parameterType="com.nis.domain.configuration.AppPolicyCfg" >
|
||||
select
|
||||
<include refid="AppPolicyCfg_Column"/>
|
||||
|
||||
Reference in New Issue
Block a user