架构调整

Former-commit-id: 5da36ebac22af42ece0424d966465abe260ea6fe
master
王兵 4 years ago
parent f9eafc07c3
commit be5e62951f

@ -32,14 +32,14 @@
)
VALUES
(
#{request.id},
#{request.logType,jdbcType=VARCHAR},
#{request.logTitle,jdbcType=VARCHAR},
#{request.logNote,jdbcType=VARCHAR},
#{request.logState,jdbcType=VARCHAR},
${r'#'}{request.id},
${r'#'}{request.logType,jdbcType=VARCHAR},
${r'#'}{request.logTitle,jdbcType=VARCHAR},
${r'#'}{request.logNote,jdbcType=VARCHAR},
${r'#'}{request.logState,jdbcType=VARCHAR},
0,
0,
#{token.userId,jdbcType=NUMERIC},
${r'#'}{token.userId,jdbcType=NUMERIC},
sysdate(),
NULL,
NULL
@ -54,14 +54,14 @@
)
VALUES
<foreach collection="list" item="item" index="index" separator="," open="(" close=")">
#{item.id},
#{item.logType,jdbcType=VARCHAR},
#{item.logTitle,jdbcType=VARCHAR},
#{item.logNote,jdbcType=VARCHAR},
#{item.logState,jdbcType=VARCHAR},
${r'#'}{item.id},
${r'#'}{item.logType,jdbcType=VARCHAR},
${r'#'}{item.logTitle,jdbcType=VARCHAR},
${r'#'}{item.logNote,jdbcType=VARCHAR},
${r'#'}{item.logState,jdbcType=VARCHAR},
0,
0,
#{token.userId,jdbcType=NUMERIC},
${r'#'}{token.userId,jdbcType=NUMERIC},
sysdate(),
NULL,
NULL
@ -73,7 +73,7 @@
<include refid="table"/>
SET `IS_DELETED` = 1
WHERE `IS_DELETED` = 0
AND `ID` = #{id}
AND `ID` = ${r'#'}{id}
</update>
<update id="deleteBatch">
@ -83,7 +83,7 @@
WHERE `IS_DELETED` = 0
AND `ID` IN
<foreach collection="list" item="item" index="index" separator="," open="(" close=")">
#{item}
${r'#'}{item}
</foreach>
</update>
@ -91,16 +91,16 @@
UPDATE
<include refid="table"/>
SET
`LOG_TYPE` = #{request.logType,jdbcType=VARCHAR},
`LOG_TITLE` = #{request.logTitle,jdbcType=VARCHAR},
`LOG_NOTE` = #{request.logNote,jdbcType=VARCHAR},
`LOG_STATE` = #{request.logState,jdbcType=VARCHAR},
`LOG_TYPE` = ${r'#'}{request.logType,jdbcType=VARCHAR},
`LOG_TITLE` = ${r'#'}{request.logTitle,jdbcType=VARCHAR},
`LOG_NOTE` = ${r'#'}{request.logNote,jdbcType=VARCHAR},
`LOG_STATE` = ${r'#'}{request.logState,jdbcType=VARCHAR},
`ROW_VERSION` = `ROW_VERSION` + 1,
`LAST_UPDATE_BY` = #{token.userId},
`LAST_UPDATE_BY` = ${r'#'}{token.userId},
`LAST_UPDATE_TIME` = sysdate()
WHERE `IS_DELETED` = 0
AND `ID` = #{request.id}
AND `ROW_VERSION` = #{request.rowVersion}
AND `ID` = ${r'#'}{request.id}
AND `ROW_VERSION` = ${r'#'}{request.rowVersion}
</update>
<select id="select" resultMap="logerr">
@ -110,13 +110,13 @@
<include refid="table"/>
WHERE `IS_DELETED` = 0
<if test="request.logType != null and request.logType != ''">
AND `LOG_TYPE` = #{request.logType}
AND `LOG_TYPE` = ${r'#'}{request.logType}
</if>
<if test="request.logTitle != null and request.logTitle != ''">
AND `LOG_TITLE` = #{request.logTitle}
AND `LOG_TITLE` = ${r'#'}{request.logTitle}
</if>
<if test="request.logState != null and request.logState != ''">
AND `LOG_STATE` = #{request.logState}
AND `LOG_STATE` = ${r'#'}{request.logState}
</if>
</select>
@ -127,19 +127,19 @@
<include refid="table"/>
WHERE `IS_DELETED` = 0
<if test="request.logType != null and request.logType != ''">
AND `LOG_TYPE` = #{request.logType}
AND `LOG_TYPE` = ${r'#'}{request.logType}
</if>
<if test="request.logTitle != null and request.logTitle != ''">
AND `LOG_TITLE` = #{request.logTitle}
AND `LOG_TITLE` = ${r'#'}{request.logTitle}
</if>
<if test="request.logState != null and request.logState != ''">
AND `LOG_STATE` = #{request.logState}
AND `LOG_STATE` = ${r'#'}{request.logState}
</if>
<if test="request.startDate != null">
AND `CREATE_TIME` &gt;= #{request.startDate}
AND `CREATE_TIME` &gt;= ${r'#'}{request.startDate}
</if>
<if test="request.endDate != null">
AND `CREATE_TIME` &lt;= #{request.endDate}
AND `CREATE_TIME` &lt;= ${r'#'}{request.endDate}
</if>
</select>
@ -157,7 +157,7 @@
FROM
<include refid="table"/>
WHERE `IS_DELETED` = 0
AND `ID` = #{request.id}
AND `ID` = ${r'#'}{request.id}
</select>
<select id="getByIds" resultMap="logerr">
@ -168,7 +168,7 @@
WHERE `IS_DELETED` = 0
AND `ID` IN
<foreach collection="list" item="item" index="index" separator="," open="(" close=")">
#{item}
${r'#'}{item}
</foreach>
</select>
</mapper>

@ -31,13 +31,13 @@
)
VALUES
(
#{request.id},
#{request.active,jdbcType=VARCHAR},
#{request.key,jdbcType=VARCHAR},
#{request.value,jdbcType=VARCHAR},
${r'#'}{request.id},
${r'#'}{request.active,jdbcType=VARCHAR},
${r'#'}{request.key,jdbcType=VARCHAR},
${r'#'}{request.value,jdbcType=VARCHAR},
0,
0,
#{token.userId,jdbcType=NUMERIC},
${r'#'}{token.userId,jdbcType=NUMERIC},
sysdate(),
NULL,
NULL
@ -52,13 +52,13 @@
)
VALUES
<foreach collection="list" item="item" index="index" separator="," open="(" close=")">
#{item.id},
#{item.active,jdbcType=VARCHAR},
#{item.key,jdbcType=VARCHAR},
#{item.value,jdbcType=VARCHAR},
${r'#'}{item.id},
${r'#'}{item.active,jdbcType=VARCHAR},
${r'#'}{item.key,jdbcType=VARCHAR},
${r'#'}{item.value,jdbcType=VARCHAR},
0,
0,
#{token.userId,jdbcType=NUMERIC},
${r'#'}{token.userId,jdbcType=NUMERIC},
sysdate(),
NULL,
NULL
@ -70,7 +70,7 @@
<include refid="table"/>
SET `IS_DELETED` = 1
WHERE `IS_DELETED` = 0
AND `ID` = #{id}
AND `ID` = ${r'#'}{id}
</update>
<update id="deleteBatch">
@ -80,7 +80,7 @@
WHERE `IS_DELETED` = 0
AND `ID` IN
<foreach collection="list" item="item" index="index" separator="," open="(" close=")">
#{item}
${r'#'}{item}
</foreach>
</update>
@ -88,15 +88,15 @@
UPDATE
<include refid="table"/>
SET
`ACTIVE` = #{request.active,jdbcType=VARCHAR},
`KEY` = #{request.key,jdbcType=VARCHAR},
`VALUE` = #{request.value,jdbcType=VARCHAR},
`ACTIVE` = ${r'#'}{request.active,jdbcType=VARCHAR},
`KEY` = ${r'#'}{request.key,jdbcType=VARCHAR},
`VALUE` = ${r'#'}{request.value,jdbcType=VARCHAR},
`ROW_VERSION` = `ROW_VERSION` + 1,
`LAST_UPDATE_BY` = #{token.userId},
`LAST_UPDATE_BY` = ${r'#'}{token.userId},
`LAST_UPDATE_TIME` = sysdate()
WHERE `IS_DELETED` = 0
AND `ID` = #{request.id}
AND `ROW_VERSION` = #{request.rowVersion}
AND `ID` = ${r'#'}{request.id}
AND `ROW_VERSION` = ${r'#'}{request.rowVersion}
</update>
<select id="select" resultMap="profiles">
@ -106,10 +106,10 @@
<include refid="table"/>
WHERE `IS_DELETED` = 0
<if test="request.active != null and request.active != ''">
AND `ACTIVE` = #{request.active}
AND `ACTIVE` = ${r'#'}{request.active}
</if>
<if test="request.key != null and request.key != ''">
AND `KEY` = #{request.key}
AND `KEY` = ${r'#'}{request.key}
</if>
</select>
@ -120,16 +120,16 @@
<include refid="table"/>
WHERE `IS_DELETED` = 0
<if test="request.active != null and request.active != ''">
AND `ACTIVE` = #{request.active}
AND `ACTIVE` = ${r'#'}{request.active}
</if>
<if test="request.key != null and request.key != ''">
AND `KEY` = #{request.key}
AND `KEY` = ${r'#'}{request.key}
</if>
<if test="request.startDate != null">
AND `CREATE_TIME` &gt;= #{request.startDate}
AND `CREATE_TIME` &gt;= ${r'#'}{request.startDate}
</if>
<if test="request.endDate != null">
AND `CREATE_TIME` &lt;= #{request.endDate}
AND `CREATE_TIME` &lt;= ${r'#'}{request.endDate}
</if>
</select>
@ -147,7 +147,7 @@
FROM
<include refid="table"/>
WHERE `IS_DELETED` = 0
AND `ID` = #{request.id}
AND `ID` = ${r'#'}{request.id}
</select>
<select id="getByIds" resultMap="profiles">
@ -158,7 +158,7 @@
WHERE `IS_DELETED` = 0
AND `ID` IN
<foreach collection="list" item="item" index="index" separator="," open="(" close=")">
#{item}
${r'#'}{item}
</foreach>
</select>
</mapper>

@ -34,16 +34,16 @@
)
VALUES
(
#{request.id},
#{request.seqName,jdbcType=VARCHAR},
#{request.seqNote,jdbcType=VARCHAR},
#{request.year,jdbcType=VARCHAR},
#{request.month,jdbcType=VARCHAR},
#{request.date,jdbcType=VARCHAR},
#{request.nextValue,jdbcType=INTEGER},
${r'#'}{request.id},
${r'#'}{request.seqName,jdbcType=VARCHAR},
${r'#'}{request.seqNote,jdbcType=VARCHAR},
${r'#'}{request.year,jdbcType=VARCHAR},
${r'#'}{request.month,jdbcType=VARCHAR},
${r'#'}{request.date,jdbcType=VARCHAR},
${r'#'}{request.nextValue,jdbcType=INTEGER},
0,
0,
#{token.userId,jdbcType=NUMERIC},
${r'#'}{token.userId,jdbcType=NUMERIC},
sysdate(),
NULL,
NULL
@ -58,16 +58,16 @@
)
VALUES
<foreach collection="list" item="item" index="index" separator="," open="(" close=")">
#{item.id},
#{item.seqName,jdbcType=VARCHAR},
#{item.seqNote,jdbcType=VARCHAR},
#{item.year,jdbcType=VARCHAR},
#{item.month,jdbcType=VARCHAR},
#{item.date,jdbcType=VARCHAR},
#{item.nextValue,jdbcType=INTEGER},
${r'#'}{item.id},
${r'#'}{item.seqName,jdbcType=VARCHAR},
${r'#'}{item.seqNote,jdbcType=VARCHAR},
${r'#'}{item.year,jdbcType=VARCHAR},
${r'#'}{item.month,jdbcType=VARCHAR},
${r'#'}{item.date,jdbcType=VARCHAR},
${r'#'}{item.nextValue,jdbcType=INTEGER},
0,
0,
#{token.userId,jdbcType=NUMERIC},
${r'#'}{token.userId,jdbcType=NUMERIC},
sysdate(),
NULL,
NULL
@ -79,7 +79,7 @@
<include refid="table"/>
SET `IS_DELETED` = 1
WHERE `IS_DELETED` = 0
AND `ID` = #{id}
AND `ID` = ${r'#'}{id}
</update>
<update id="deleteBatch">
@ -89,7 +89,7 @@
WHERE `IS_DELETED` = 0
AND `ID` IN
<foreach collection="list" item="item" index="index" separator="," open="(" close=")">
#{item}
${r'#'}{item}
</foreach>
</update>
@ -97,18 +97,18 @@
UPDATE
<include refid="table"/>
SET
`SEQ_NAME` = #{request.seqName,jdbcType=VARCHAR},
`SEQ_NOTE` = #{request.seqNote,jdbcType=VARCHAR},
`YEAR` = #{request.year,jdbcType=VARCHAR},
`MONTH` = #{request.month,jdbcType=VARCHAR},
`DATE` = #{request.date,jdbcType=VARCHAR},
`NEXT_VALUE` = #{request.nextValue,jdbcType=INTEGER},
`SEQ_NAME` = ${r'#'}{request.seqName,jdbcType=VARCHAR},
`SEQ_NOTE` = ${r'#'}{request.seqNote,jdbcType=VARCHAR},
`YEAR` = ${r'#'}{request.year,jdbcType=VARCHAR},
`MONTH` = ${r'#'}{request.month,jdbcType=VARCHAR},
`DATE` = ${r'#'}{request.date,jdbcType=VARCHAR},
`NEXT_VALUE` = ${r'#'}{request.nextValue,jdbcType=INTEGER},
`ROW_VERSION` = `ROW_VERSION` + 1,
`LAST_UPDATE_BY` = #{token.userId},
`LAST_UPDATE_BY` = ${r'#'}{token.userId},
`LAST_UPDATE_TIME` = sysdate()
WHERE `IS_DELETED` = 0
AND `ID` = #{request.id}
AND `ROW_VERSION` = #{request.rowVersion}
AND `ID` = ${r'#'}{request.id}
AND `ROW_VERSION` = ${r'#'}{request.rowVersion}
</update>
<select id="select" resultMap="sequence">
@ -118,16 +118,16 @@
<include refid="table"/>
WHERE `IS_DELETED` = 0
<if test="request.seqName != null and request.seqName != ''">
AND `SEQ_NAME` = #{request.seqName}
AND `SEQ_NAME` = ${r'#'}{request.seqName}
</if>
<if test="request.year != null and request.year != ''">
AND `YEAR` = #{request.year}
AND `YEAR` = ${r'#'}{request.year}
</if>
<if test="request.month != null and request.month != ''">
AND `MONTH` = #{request.month}
AND `MONTH` = ${r'#'}{request.month}
</if>
<if test="request.date != null and request.date != ''">
AND `DATE` = #{request.date}
AND `DATE` = ${r'#'}{request.date}
</if>
</select>
@ -138,22 +138,22 @@
<include refid="table"/>
WHERE `IS_DELETED` = 0
<if test="request.seqName != null and request.seqName != ''">
AND `SEQ_NAME` = #{request.seqName}
AND `SEQ_NAME` = ${r'#'}{request.seqName}
</if>
<if test="request.year != null and request.year != ''">
AND `YEAR` = #{request.year}
AND `YEAR` = ${r'#'}{request.year}
</if>
<if test="request.month != null and request.month != ''">
AND `MONTH` = #{request.month}
AND `MONTH` = ${r'#'}{request.month}
</if>
<if test="request.date != null and request.date != ''">
AND `DATE` = #{request.date}
AND `DATE` = ${r'#'}{request.date}
</if>
<if test="request.startDate != null">
AND `CREATE_TIME` &gt;= #{request.startDate}
AND `CREATE_TIME` &gt;= ${r'#'}{request.startDate}
</if>
<if test="request.endDate != null">
AND `CREATE_TIME` &lt;= #{request.endDate}
AND `CREATE_TIME` &lt;= ${r'#'}{request.endDate}
</if>
</select>
@ -171,7 +171,7 @@
FROM
<include refid="table"/>
WHERE `IS_DELETED` = 0
AND `ID` = #{request.id}
AND `ID` = ${r'#'}{request.id}
</select>
<select id="getByIds" resultMap="sequence">
@ -182,7 +182,7 @@
WHERE `IS_DELETED` = 0
AND `ID` IN
<foreach collection="list" item="item" index="index" separator="," open="(" close=")">
#{item}
${r'#'}{item}
</foreach>
</select>
</mapper>

@ -33,15 +33,15 @@
)
VALUES
(
#{request.id},
#{request.appName,jdbcType=VARCHAR},
#{request.appNote,jdbcType=VARCHAR},
#{request.appKey,jdbcType=VARCHAR},
#{request.appSecret,jdbcType=VARCHAR},
#{request.valid,jdbcType=BIT},
${r'#'}{request.id},
${r'#'}{request.appName,jdbcType=VARCHAR},
${r'#'}{request.appNote,jdbcType=VARCHAR},
${r'#'}{request.appKey,jdbcType=VARCHAR},
${r'#'}{request.appSecret,jdbcType=VARCHAR},
${r'#'}{request.valid,jdbcType=BIT},
0,
0,
#{token.userId,jdbcType=NUMERIC},
${r'#'}{token.userId,jdbcType=NUMERIC},
sysdate(),
NULL,
NULL
@ -56,15 +56,15 @@
)
VALUES
<foreach collection="list" item="item" index="index" separator="," open="(" close=")">
#{item.id},
#{item.appName,jdbcType=VARCHAR},
#{item.appNote,jdbcType=VARCHAR},
#{item.appKey,jdbcType=VARCHAR},
#{item.appSecret,jdbcType=VARCHAR},
#{item.valid,jdbcType=BIT},
${r'#'}{item.id},
${r'#'}{item.appName,jdbcType=VARCHAR},
${r'#'}{item.appNote,jdbcType=VARCHAR},
${r'#'}{item.appKey,jdbcType=VARCHAR},
${r'#'}{item.appSecret,jdbcType=VARCHAR},
${r'#'}{item.valid,jdbcType=BIT},
0,
0,
#{token.userId,jdbcType=NUMERIC},
${r'#'}{token.userId,jdbcType=NUMERIC},
sysdate(),
NULL,
NULL
@ -76,7 +76,7 @@
<include refid="table"/>
SET `IS_DELETED` = 1
WHERE `IS_DELETED` = 0
AND `ID` = #{id}
AND `ID` = ${r'#'}{id}
</update>
<update id="deleteBatch">
@ -86,7 +86,7 @@
WHERE `IS_DELETED` = 0
AND `ID` IN
<foreach collection="list" item="item" index="index" separator="," open="(" close=")">
#{item}
${r'#'}{item}
</foreach>
</update>
@ -94,17 +94,17 @@
UPDATE
<include refid="table"/>
SET
`APP_NAME` = #{request.appName,jdbcType=VARCHAR},
`APP_NOTE` = #{request.appNote,jdbcType=VARCHAR},
`APP_KEY` = #{request.appKey,jdbcType=VARCHAR},
`APP_SECRET` = #{request.appSecret,jdbcType=VARCHAR},
`VALID` = #{request.valid,jdbcType=BIT},
`APP_NAME` = ${r'#'}{request.appName,jdbcType=VARCHAR},
`APP_NOTE` = ${r'#'}{request.appNote,jdbcType=VARCHAR},
`APP_KEY` = ${r'#'}{request.appKey,jdbcType=VARCHAR},
`APP_SECRET` = ${r'#'}{request.appSecret,jdbcType=VARCHAR},
`VALID` = ${r'#'}{request.valid,jdbcType=BIT},
`ROW_VERSION` = `ROW_VERSION` + 1,
`LAST_UPDATE_BY` = #{token.userId},
`LAST_UPDATE_BY` = ${r'#'}{token.userId},
`LAST_UPDATE_TIME` = sysdate()
WHERE `IS_DELETED` = 0
AND `ID` = #{request.id}
AND `ROW_VERSION` = #{request.rowVersion}
AND `ID` = ${r'#'}{request.id}
AND `ROW_VERSION` = ${r'#'}{request.rowVersion}
</update>
<select id="select" resultMap="visitor">
@ -114,16 +114,16 @@
<include refid="table"/>
WHERE `IS_DELETED` = 0
<if test="request.appName != null and request.appName != ''">
AND `APP_NAME` = #{request.appName}
AND `APP_NAME` = ${r'#'}{request.appName}
</if>
<if test="request.appKey != null and request.appKey != ''">
AND `APP_KEY` = #{request.appKey}
AND `APP_KEY` = ${r'#'}{request.appKey}
</if>
<if test="request.appSecret != null and request.appSecret != ''">
AND `APP_SECRET` = #{request.appSecret}
AND `APP_SECRET` = ${r'#'}{request.appSecret}
</if>
<if test="request.valid != null">
AND `VALID` = #{request.valid}
AND `VALID` = ${r'#'}{request.valid}
</if>
</select>
@ -134,22 +134,22 @@
<include refid="table"/>
WHERE `IS_DELETED` = 0
<if test="request.appName != null and request.appName != ''">
AND `APP_NAME` = #{request.appName}
AND `APP_NAME` = ${r'#'}{request.appName}
</if>
<if test="request.appKey != null and request.appKey != ''">
AND `APP_KEY` = #{request.appKey}
AND `APP_KEY` = ${r'#'}{request.appKey}
</if>
<if test="request.appSecret != null and request.appSecret != ''">
AND `APP_SECRET` = #{request.appSecret}
AND `APP_SECRET` = ${r'#'}{request.appSecret}
</if>
<if test="request.valid != null">
AND `VALID` = #{request.valid}
AND `VALID` = ${r'#'}{request.valid}
</if>
<if test="request.startDate != null">
AND `CREATE_TIME` &gt;= #{request.startDate}
AND `CREATE_TIME` &gt;= ${r'#'}{request.startDate}
</if>
<if test="request.endDate != null">
AND `CREATE_TIME` &lt;= #{request.endDate}
AND `CREATE_TIME` &lt;= ${r'#'}{request.endDate}
</if>
</select>
@ -167,7 +167,7 @@
FROM
<include refid="table"/>
WHERE `IS_DELETED` = 0
AND `ID` = #{request.id}
AND `ID` = ${r'#'}{request.id}
</select>
<select id="getByIds" resultMap="visitor">
@ -178,7 +178,7 @@
WHERE `IS_DELETED` = 0
AND `ID` IN
<foreach collection="list" item="item" index="index" separator="," open="(" close=")">
#{item}
${r'#'}{item}
</foreach>
</select>
</mapper>

@ -32,14 +32,14 @@
)
VALUES
(
#{request.id},
#{request.appId,jdbcType=BIGINT},
#{request.appKey,jdbcType=VARCHAR},
#{request.resId,jdbcType=BIGINT},
#{request.resCode,jdbcType=VARCHAR},
${r'#'}{request.id},
${r'#'}{request.appId,jdbcType=BIGINT},
${r'#'}{request.appKey,jdbcType=VARCHAR},
${r'#'}{request.resId,jdbcType=BIGINT},
${r'#'}{request.resCode,jdbcType=VARCHAR},
0,
0,
#{token.userId,jdbcType=NUMERIC},
${r'#'}{token.userId,jdbcType=NUMERIC},
sysdate(),
NULL,
NULL
@ -54,14 +54,14 @@
)
VALUES
<foreach collection="list" item="item" index="index" separator="," open="(" close=")">
#{item.id},
#{item.appId,jdbcType=BIGINT},
#{item.appKey,jdbcType=VARCHAR},
#{item.resId,jdbcType=BIGINT},
#{item.resCode,jdbcType=VARCHAR},
${r'#'}{item.id},
${r'#'}{item.appId,jdbcType=BIGINT},
${r'#'}{item.appKey,jdbcType=VARCHAR},
${r'#'}{item.resId,jdbcType=BIGINT},
${r'#'}{item.resCode,jdbcType=VARCHAR},
0,
0,
#{token.userId,jdbcType=NUMERIC},
${r'#'}{token.userId,jdbcType=NUMERIC},
sysdate(),
NULL,
NULL
@ -73,7 +73,7 @@
<include refid="table"/>
SET `IS_DELETED` = 1
WHERE `IS_DELETED` = 0
AND `ID` = #{id}
AND `ID` = ${r'#'}{id}
</update>
<update id="deleteBatch">
@ -83,7 +83,7 @@
WHERE `IS_DELETED` = 0
AND `ID` IN
<foreach collection="list" item="item" index="index" separator="," open="(" close=")">
#{item}
${r'#'}{item}
</foreach>
</update>
@ -91,16 +91,16 @@
UPDATE
<include refid="table"/>
SET
`APP_ID` = #{request.appId,jdbcType=BIGINT},
`APP_KEY` = #{request.appKey,jdbcType=VARCHAR},
`RES_ID` = #{request.resId,jdbcType=BIGINT},
`RES_CODE` = #{request.resCode,jdbcType=VARCHAR},
`APP_ID` = ${r'#'}{request.appId,jdbcType=BIGINT},
`APP_KEY` = ${r'#'}{request.appKey,jdbcType=VARCHAR},
`RES_ID` = ${r'#'}{request.resId,jdbcType=BIGINT},
`RES_CODE` = ${r'#'}{request.resCode,jdbcType=VARCHAR},
`ROW_VERSION` = `ROW_VERSION` + 1,
`LAST_UPDATE_BY` = #{token.userId},
`LAST_UPDATE_BY` = ${r'#'}{token.userId},
`LAST_UPDATE_TIME` = sysdate()
WHERE `IS_DELETED` = 0
AND `ID` = #{request.id}
AND `ROW_VERSION` = #{request.rowVersion}
AND `ID` = ${r'#'}{request.id}
AND `ROW_VERSION` = ${r'#'}{request.rowVersion}
</update>
<select id="select" resultMap="visitorRes">
@ -110,16 +110,16 @@
<include refid="table"/>
WHERE `IS_DELETED` = 0
<if test="request.appId != null and request.appId != 0">
AND `APP_ID` = #{request.appId}
AND `APP_ID` = ${r'#'}{request.appId}
</if>
<if test="request.appKey != null and request.appKey != ''">
AND `APP_KEY` = #{request.appKey}
AND `APP_KEY` = ${r'#'}{request.appKey}
</if>
<if test="request.resId != null and request.resId != 0">
AND `RES_ID` = #{request.resId}
AND `RES_ID` = ${r'#'}{request.resId}
</if>
<if test="request.resCode != null and request.resCode != ''">
AND `RES_CODE` = #{request.resCode}
AND `RES_CODE` = ${r'#'}{request.resCode}
</if>
</select>
@ -130,22 +130,22 @@
<include refid="table"/>
WHERE `IS_DELETED` = 0
<if test="request.appId != null and request.appId != 0">
AND `APP_ID` = #{request.appId}
AND `APP_ID` = ${r'#'}{request.appId}
</if>
<if test="request.appKey != null and request.appKey != ''">
AND `APP_KEY` = #{request.appKey}
AND `APP_KEY` = ${r'#'}{request.appKey}
</if>
<if test="request.resId != null and request.resId != 0">
AND `RES_ID` = #{request.resId}
AND `RES_ID` = ${r'#'}{request.resId}
</if>
<if test="request.resCode != null and request.resCode != ''">
AND `RES_CODE` = #{request.resCode}
AND `RES_CODE` = ${r'#'}{request.resCode}
</if>
<if test="request.startDate != null">
AND `CREATE_TIME` &gt;= #{request.startDate}
AND `CREATE_TIME` &gt;= ${r'#'}{request.startDate}
</if>
<if test="request.endDate != null">
AND `CREATE_TIME` &lt;= #{request.endDate}
AND `CREATE_TIME` &lt;= ${r'#'}{request.endDate}
</if>
</select>
@ -163,7 +163,7 @@
FROM
<include refid="table"/>
WHERE `IS_DELETED` = 0
AND `ID` = #{request.id}
AND `ID` = ${r'#'}{request.id}
</select>
<select id="getByIds" resultMap="visitorRes">
@ -174,7 +174,7 @@
WHERE `IS_DELETED` = 0
AND `ID` IN
<foreach collection="list" item="item" index="index" separator="," open="(" close=")">
#{item}
${r'#'}{item}
</foreach>
</select>
</mapper>

@ -2,7 +2,7 @@
<!DOCTYPE mapper
PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN"
"http://mybatis.org/dtd/mybatis-3-mapper.dtd">
<mapper namespace="${domain}module.wsys.mpr.DeptMapper">
<mapper namespace="${domain}.module.wsys.mpr.DeptMapper">
<sql id="table">"SYS_DEPT"</sql>
@ -10,7 +10,7 @@
"ID","DEPT_CODE","DEPT_NAME","DEPT_ALIAS","SUP_CODE","SUP_NAME","VALID","ROW_VERSION","IS_DELETED","CREATE_BY","CREATE_TIME","LAST_UPDATE_BY","LAST_UPDATE_TIME"
</sql>
<resultMap id="dept" type="${domain}module.wsys.ent.Dept">
<resultMap id="dept" type="${domain}.module.wsys.ent.Dept">
<result column="ID" jdbcType="BIGINT" property="id"/>
<result column="DEPT_CODE" jdbcType="VARCHAR" property="deptCode"/>
<result column="DEPT_NAME" jdbcType="VARCHAR" property="deptName"/>

@ -2,7 +2,7 @@
<!DOCTYPE mapper
PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN"
"http://mybatis.org/dtd/mybatis-3-mapper.dtd">
<mapper namespace="${domain}module.wsys.mpr.DictItemMapper">
<mapper namespace="${domain}.module.wsys.mpr.DictItemMapper">
<sql id="table">"SYS_DICT_ITEM"</sql>

@ -2,7 +2,7 @@
<!DOCTYPE mapper
PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN"
"http://mybatis.org/dtd/mybatis-3-mapper.dtd">
<mapper namespace="${domain}module.wsys.mpr.DictMapper">
<mapper namespace="${domain}.module.wsys.mpr.DictMapper">
<sql id="table">"SYS_DICT"</sql>

@ -2,7 +2,7 @@
<!DOCTYPE mapper
PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN"
"http://mybatis.org/dtd/mybatis-3-mapper.dtd">
<mapper namespace="${domain}module.wsys.mpr.FileMapper">
<mapper namespace="${domain}.module.wsys.mpr.FileMapper">
<sql id="table">"SYS_FILE"</sql>
@ -10,7 +10,7 @@
"ID","NAME","FILE_TYPE","ATTRIBUTE1","ATTRIBUTE2","LOCATION","URL","URL_DOWNLOAD","ROW_VERSION","IS_DELETED","CREATE_BY","CREATE_TIME","LAST_UPDATE_BY","LAST_UPDATE_TIME"
</sql>
<resultMap id="file" type="${domain}module.wsys.ent.File">
<resultMap id="file" type="${domain}.module.wsys.ent.File">
<result column="ID" jdbcType="BIGINT" property="id"/>
<result column="NAME" jdbcType="VARCHAR" property="name"/>
<result column="FILE_TYPE" jdbcType="VARCHAR" property="fileType"/>

@ -32,14 +32,14 @@
)
VALUES
(
#{request.id},
#{request.logType,jdbcType=VARCHAR},
#{request.logTitle,jdbcType=VARCHAR},
#{request.logNote,jdbcType=VARCHAR},
#{request.logState,jdbcType=VARCHAR},
${r'#'}{request.id},
${r'#'}{request.logType,jdbcType=VARCHAR},
${r'#'}{request.logTitle,jdbcType=VARCHAR},
${r'#'}{request.logNote,jdbcType=VARCHAR},
${r'#'}{request.logState,jdbcType=VARCHAR},
0,
0,
#{token.userId,jdbcType=NUMERIC},
${r'#'}{token.userId,jdbcType=NUMERIC},
sysdate,
NULL,
NULL
@ -55,14 +55,14 @@
VALUES
<foreach collection="list" item="item" index="index" separator="," open="(" close=")">
(
#{item.id},
#{item.logType,jdbcType=VARCHAR},
#{item.logTitle,jdbcType=VARCHAR},
#{item.logNote,jdbcType=VARCHAR},
#{item.logState,jdbcType=VARCHAR},
${r'#'}{item.id},
${r'#'}{item.logType,jdbcType=VARCHAR},
${r'#'}{item.logTitle,jdbcType=VARCHAR},
${r'#'}{item.logNote,jdbcType=VARCHAR},
${r'#'}{item.logState,jdbcType=VARCHAR},
0,
0,
#{token.userId,jdbcType=NUMERIC},
${r'#'}{token.userId,jdbcType=NUMERIC},
sysdate,
NULL,
NULL
@ -75,7 +75,7 @@
<include refid="table"/>
SET "IS_DELETED" = 1
WHERE "IS_DELETED" = 0
AND "ID" = #{id}
AND "ID" = ${r'#'}{id}
</update>
<update id="deleteBatch">
@ -85,7 +85,7 @@
WHERE "IS_DELETED" = 0
AND "ID" IN
<foreach collection="list" item="item" index="index" separator="," open="(" close=")">
#{item}
${r'#'}{item}
</foreach>
</update>
@ -93,16 +93,16 @@
UPDATE
<include refid="table"/>
SET
"LOG_TYPE" = #{request.logType,jdbcType=VARCHAR},
"LOG_TITLE" = #{request.logTitle,jdbcType=VARCHAR},
"LOG_NOTE" = #{request.logNote,jdbcType=VARCHAR},
"LOG_STATE" = #{request.logState,jdbcType=VARCHAR},
"LOG_TYPE" = ${r'#'}{request.logType,jdbcType=VARCHAR},
"LOG_TITLE" = ${r'#'}{request.logTitle,jdbcType=VARCHAR},
"LOG_NOTE" = ${r'#'}{request.logNote,jdbcType=VARCHAR},
"LOG_STATE" = ${r'#'}{request.logState,jdbcType=VARCHAR},
"ROW_VERSION" = "ROW_VERSION" + 1,
"LAST_UPDATE_BY" = #{token.userId},
"LAST_UPDATE_BY" = ${r'#'}{token.userId},
"LAST_UPDATE_TIME" = sysdate
WHERE "IS_DELETED" = 0
AND "ID" = #{request.id}
AND "ROW_VERSION" = #{request.rowVersion}
AND "ID" = ${r'#'}{request.id}
AND "ROW_VERSION" = ${r'#'}{request.rowVersion}
</update>
<select id="select" resultMap="logerr">
@ -112,13 +112,13 @@
<include refid="table"/>
WHERE "IS_DELETED" = 0
<if test="request.logType != null and request.logType != ''">
AND "LOG_TYPE" = #{request.logType}
AND "LOG_TYPE" = ${r'#'}{request.logType}
</if>
<if test="request.logTitle != null and request.logTitle != ''">
AND "LOG_TITLE" = #{request.logTitle}
AND "LOG_TITLE" = ${r'#'}{request.logTitle}
</if>
<if test="request.logState != null and request.logState != ''">
AND "LOG_STATE" = #{request.logState}
AND "LOG_STATE" = ${r'#'}{request.logState}
</if>
</select>
@ -129,19 +129,19 @@
<include refid="table"/>
WHERE "IS_DELETED" = 0
<if test="request.logType != null and request.logType != ''">
AND "LOG_TYPE" = #{request.logType}
AND "LOG_TYPE" = ${r'#'}{request.logType}
</if>
<if test="request.logTitle != null and request.logTitle != ''">
AND "LOG_TITLE" = #{request.logTitle}
AND "LOG_TITLE" = ${r'#'}{request.logTitle}
</if>
<if test="request.logState != null and request.logState != ''">
AND "LOG_STATE" = #{request.logState}
AND "LOG_STATE" = ${r'#'}{request.logState}
</if>
<if test="request.startDate != null">
AND "CREATE_TIME" &gt;= #{request.startDate}
AND "CREATE_TIME" &gt;= ${r'#'}{request.startDate}
</if>
<if test="request.endDate != null">
AND "CREATE_TIME" &lt;= #{request.endDate}
AND "CREATE_TIME" &lt;= ${r'#'}{request.endDate}
</if>
</select>
@ -159,7 +159,7 @@
FROM
<include refid="table"/>
WHERE "IS_DELETED" = 0
AND "ID" = #{id}
AND "ID" = ${r'#'}{id}
</select>
<select id="getByIds" resultMap="logerr">
@ -170,7 +170,7 @@
WHERE "IS_DELETED" = 0
AND "ID" IN
<foreach collection="list" item="item" index="index" separator="," open="(" close=")">
#{item}
${r'#'}{item}
</foreach>
</select>
</mapper>

@ -31,13 +31,13 @@
)
VALUES
(
#{request.id},
#{request.active,jdbcType=VARCHAR},
#{request.key,jdbcType=VARCHAR},
#{request.value,jdbcType=VARCHAR},
${r'#'}{request.id},
${r'#'}{request.active,jdbcType=VARCHAR},
${r'#'}{request.key,jdbcType=VARCHAR},
${r'#'}{request.value,jdbcType=VARCHAR},
0,
0,
#{token.userId,jdbcType=NUMERIC},
${r'#'}{token.userId,jdbcType=NUMERIC},
sysdate,
NULL,
NULL
@ -53,13 +53,13 @@
VALUES
<foreach collection="list" item="item" index="index" separator="," open="(" close=")">
(
#{item.id},
#{item.active,jdbcType=VARCHAR},
#{item.key,jdbcType=VARCHAR},
#{item.value,jdbcType=VARCHAR},
${r'#'}{item.id},
${r'#'}{item.active,jdbcType=VARCHAR},
${r'#'}{item.key,jdbcType=VARCHAR},
${r'#'}{item.value,jdbcType=VARCHAR},
0,
0,
#{token.userId,jdbcType=NUMERIC},
${r'#'}{token.userId,jdbcType=NUMERIC},
sysdate,
NULL,
NULL
@ -72,7 +72,7 @@
<include refid="table"/>
SET "IS_DELETED" = 1
WHERE "IS_DELETED" = 0
AND "ID" = #{id}
AND "ID" = ${r'#'}{id}
</update>
<update id="deleteBatch">
@ -82,7 +82,7 @@
WHERE "IS_DELETED" = 0
AND "ID" IN
<foreach collection="list" item="item" index="index" separator="," open="(" close=")">
#{item}
${r'#'}{item}
</foreach>
</update>
@ -90,15 +90,15 @@
UPDATE
<include refid="table"/>
SET
"ACTIVE" = #{request.active,jdbcType=VARCHAR},
"KEY" = #{request.key,jdbcType=VARCHAR},
"VALUE" = #{request.value,jdbcType=VARCHAR},
"ACTIVE" = ${r'#'}{request.active,jdbcType=VARCHAR},
"KEY" = ${r'#'}{request.key,jdbcType=VARCHAR},
"VALUE" = ${r'#'}{request.value,jdbcType=VARCHAR},
"ROW_VERSION" = "ROW_VERSION" + 1,
"LAST_UPDATE_BY" = #{token.userId},
"LAST_UPDATE_BY" = ${r'#'}{token.userId},
"LAST_UPDATE_TIME" = sysdate
WHERE "IS_DELETED" = 0
AND "ID" = #{request.id}
AND "ROW_VERSION" = #{request.rowVersion}
AND "ID" = ${r'#'}{request.id}
AND "ROW_VERSION" = ${r'#'}{request.rowVersion}
</update>
<select id="select" resultMap="profiles">
@ -108,10 +108,10 @@
<include refid="table"/>
WHERE "IS_DELETED" = 0
<if test="request.active != null and request.active != ''">
AND "ACTIVE" = #{request.active}
AND "ACTIVE" = ${r'#'}{request.active}
</if>
<if test="request.key != null and request.key != ''">
AND "KEY" = #{request.key}
AND "KEY" = ${r'#'}{request.key}
</if>
</select>
@ -122,16 +122,16 @@
<include refid="table"/>
WHERE "IS_DELETED" = 0
<if test="request.active != null and request.active != ''">
AND "ACTIVE" = #{request.active}
AND "ACTIVE" = ${r'#'}{request.active}
</if>
<if test="request.key != null and request.key != ''">
AND "KEY" = #{request.key}
AND "KEY" = ${r'#'}{request.key}
</if>
<if test="request.startDate != null">
AND "CREATE_TIME" &gt;= #{request.startDate}
AND "CREATE_TIME" &gt;= ${r'#'}{request.startDate}
</if>
<if test="request.endDate != null">
AND "CREATE_TIME" &lt;= #{request.endDate}
AND "CREATE_TIME" &lt;= ${r'#'}{request.endDate}
</if>
</select>
@ -149,7 +149,7 @@
FROM
<include refid="table"/>
WHERE "IS_DELETED" = 0
AND "ID" = #{id}
AND "ID" = ${r'#'}{id}
</select>
<select id="getByIds" resultMap="profiles">
@ -160,7 +160,7 @@
WHERE "IS_DELETED" = 0
AND "ID" IN
<foreach collection="list" item="item" index="index" separator="," open="(" close=")">
#{item}
${r'#'}{item}
</foreach>
</select>
</mapper>

@ -2,7 +2,7 @@
<!DOCTYPE mapper
PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN"
"http://mybatis.org/dtd/mybatis-3-mapper.dtd">
<mapper namespace="${domain}module.wsys.mpr.ResMapper">
<mapper namespace="${domain}.module.wsys.mpr.ResMapper">
<sql id="table">"SYS_RES"</sql>
@ -10,7 +10,7 @@
"ID","RES_CODE","RES_NAME","RES_TYPE","RES_VALUE","SUP_CODE","SUP_NAME","FREE","VALID","ROW_VERSION","IS_DELETED","CREATE_BY","CREATE_TIME","LAST_UPDATE_BY","LAST_UPDATE_TIME"
</sql>
<resultMap id="res" type="${domain}module.wsys.ent.Res">
<resultMap id="res" type="${domain}.module.wsys.ent.Res">
<result column="ID" jdbcType="BIGINT" property="id"/>
<result column="RES_CODE" jdbcType="VARCHAR" property="resCode"/>
<result column="RES_NAME" jdbcType="VARCHAR" property="resName"/>

@ -2,7 +2,7 @@
<!DOCTYPE mapper
PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN"
"http://mybatis.org/dtd/mybatis-3-mapper.dtd">
<mapper namespace="${domain}module.wsys.mpr.RoleMapper">
<mapper namespace="${domain}.module.wsys.mpr.RoleMapper">
<sql id="table">"SYS_ROLE"</sql>
@ -10,7 +10,7 @@
"ID","CODE","NAME","COMMENT","ROW_VERSION","IS_DELETED","CREATE_BY","CREATE_TIME","LAST_UPDATE_BY","LAST_UPDATE_TIME"
</sql>
<resultMap id="role" type="${domain}module.wsys.ent.Role">
<resultMap id="role" type="${domain}.module.wsys.ent.Role">
<result column="ID" jdbcType="BIGINT" property="id"/>
<result column="CODE" jdbcType="VARCHAR" property="code"/>
<result column="NAME" jdbcType="VARCHAR" property="name"/>

@ -2,7 +2,7 @@
<!DOCTYPE mapper
PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN"
"http://mybatis.org/dtd/mybatis-3-mapper.dtd">
<mapper namespace="${domain}module.wsys.mpr.RoleResMapper">
<mapper namespace="${domain}.module.wsys.mpr.RoleResMapper">
<sql id="table">"SYS_ROLE_RES"</sql>
@ -10,7 +10,7 @@
"ID","ROLE_ID","ROLE_CODE","RES_ID","RES_CODE","ROW_VERSION","IS_DELETED","CREATE_BY","CREATE_TIME","LAST_UPDATE_BY","LAST_UPDATE_TIME"
</sql>
<resultMap id="roleRes" type="${domain}module.wsys.ent.RoleRes">
<resultMap id="roleRes" type="${domain}.module.wsys.ent.RoleRes">
<result column="ID" jdbcType="BIGINT" property="id"/>
<result column="ROLE_ID" jdbcType="BIGINT" property="roleId"/>
<result column="ROLE_CODE" jdbcType="VARCHAR" property="roleCode"/>

@ -34,16 +34,16 @@
)
VALUES
(
#{request.id},
#{request.seqName,jdbcType=VARCHAR},
#{request.seqNote,jdbcType=VARCHAR},
#{request.year,jdbcType=VARCHAR},
#{request.month,jdbcType=VARCHAR},
#{request.date,jdbcType=VARCHAR},
#{request.nextValue,jdbcType=INTEGER},
${r'#'}{request.id},
${r'#'}{request.seqName,jdbcType=VARCHAR},
${r'#'}{request.seqNote,jdbcType=VARCHAR},
${r'#'}{request.year,jdbcType=VARCHAR},
${r'#'}{request.month,jdbcType=VARCHAR},
${r'#'}{request.date,jdbcType=VARCHAR},
${r'#'}{request.nextValue,jdbcType=INTEGER},
0,
0,
#{token.userId,jdbcType=NUMERIC},
${r'#'}{token.userId,jdbcType=NUMERIC},
sysdate,
NULL,
NULL
@ -59,16 +59,16 @@
VALUES
<foreach collection="list" item="item" index="index" separator="," open="(" close=")">
(
#{item.id},
#{item.seqName,jdbcType=VARCHAR},
#{item.seqNote,jdbcType=VARCHAR},
#{item.year,jdbcType=VARCHAR},
#{item.month,jdbcType=VARCHAR},
#{item.date,jdbcType=VARCHAR},
#{item.nextValue,jdbcType=INTEGER},
${r'#'}{item.id},
${r'#'}{item.seqName,jdbcType=VARCHAR},
${r'#'}{item.seqNote,jdbcType=VARCHAR},
${r'#'}{item.year,jdbcType=VARCHAR},
${r'#'}{item.month,jdbcType=VARCHAR},
${r'#'}{item.date,jdbcType=VARCHAR},
${r'#'}{item.nextValue,jdbcType=INTEGER},
0,
0,
#{token.userId,jdbcType=NUMERIC},
${r'#'}{token.userId,jdbcType=NUMERIC},
sysdate,
NULL,
NULL
@ -81,7 +81,7 @@
<include refid="table"/>
SET "IS_DELETED" = 1
WHERE "IS_DELETED" = 0
AND "ID" = #{id}
AND "ID" = ${r'#'}{id}
</update>
<update id="deleteBatch">
@ -91,7 +91,7 @@
WHERE "IS_DELETED" = 0
AND "ID" IN
<foreach collection="list" item="item" index="index" separator="," open="(" close=")">
#{item}
${r'#'}{item}
</foreach>
</update>
@ -99,18 +99,18 @@
UPDATE
<include refid="table"/>
SET
"SEQ_NAME" = #{request.seqName,jdbcType=VARCHAR},
"SEQ_NOTE" = #{request.seqNote,jdbcType=VARCHAR},
"YEAR" = #{request.year,jdbcType=VARCHAR},
"MONTH" = #{request.month,jdbcType=VARCHAR},
"DATE" = #{request.date,jdbcType=VARCHAR},
"NEXT_VALUE" = #{request.nextValue,jdbcType=INTEGER},
"SEQ_NAME" = ${r'#'}{request.seqName,jdbcType=VARCHAR},
"SEQ_NOTE" = ${r'#'}{request.seqNote,jdbcType=VARCHAR},
"YEAR" = ${r'#'}{request.year,jdbcType=VARCHAR},
"MONTH" = ${r'#'}{request.month,jdbcType=VARCHAR},
"DATE" = ${r'#'}{request.date,jdbcType=VARCHAR},
"NEXT_VALUE" = ${r'#'}{request.nextValue,jdbcType=INTEGER},
"ROW_VERSION" = "ROW_VERSION" + 1,
"LAST_UPDATE_BY" = #{token.userId},
"LAST_UPDATE_BY" = ${r'#'}{token.userId},
"LAST_UPDATE_TIME" = sysdate
WHERE "IS_DELETED" = 0
AND "ID" = #{request.id}
AND "ROW_VERSION" = #{request.rowVersion}
AND "ID" = ${r'#'}{request.id}
AND "ROW_VERSION" = ${r'#'}{request.rowVersion}
</update>
<select id="select" resultMap="sequence">
@ -120,16 +120,16 @@
<include refid="table"/>
WHERE "IS_DELETED" = 0
<if test="request.seqName != null and request.seqName != ''">
AND "SEQ_NAME" = #{request.seqName}
AND "SEQ_NAME" = ${r'#'}{request.seqName}
</if>
<if test="request.year != null and request.year != ''">
AND "YEAR" = #{request.year}
AND "YEAR" = ${r'#'}{request.year}
</if>
<if test="request.month != null and request.month != ''">
AND "MONTH" = #{request.month}
AND "MONTH" = ${r'#'}{request.month}
</if>
<if test="request.date != null and request.date != ''">
AND "DATE" = #{request.date}
AND "DATE" = ${r'#'}{request.date}
</if>
</select>
@ -140,22 +140,22 @@
<include refid="table"/>
WHERE "IS_DELETED" = 0
<if test="request.seqName != null and request.seqName != ''">
AND "SEQ_NAME" = #{request.seqName}
AND "SEQ_NAME" = ${r'#'}{request.seqName}
</if>
<if test="request.year != null and request.year != ''">
AND "YEAR" = #{request.year}
AND "YEAR" = ${r'#'}{request.year}
</if>
<if test="request.month != null and request.month != ''">
AND "MONTH" = #{request.month}
AND "MONTH" = ${r'#'}{request.month}
</if>
<if test="request.date != null and request.date != ''">
AND "DATE" = #{request.date}
AND "DATE" = ${r'#'}{request.date}
</if>
<if test="request.startDate != null">
AND "CREATE_TIME" &gt;= #{request.startDate}
AND "CREATE_TIME" &gt;= ${r'#'}{request.startDate}
</if>
<if test="request.endDate != null">
AND "CREATE_TIME" &lt;= #{request.endDate}
AND "CREATE_TIME" &lt;= ${r'#'}{request.endDate}
</if>
</select>
@ -173,7 +173,7 @@
FROM
<include refid="table"/>
WHERE "IS_DELETED" = 0
AND "ID" = #{id}
AND "ID" = ${r'#'}{id}
</select>
<select id="getByIds" resultMap="sequence">
@ -184,7 +184,7 @@
WHERE "IS_DELETED" = 0
AND "ID" IN
<foreach collection="list" item="item" index="index" separator="," open="(" close=")">
#{item}
${r'#'}{item}
</foreach>
</select>
</mapper>

@ -2,7 +2,7 @@
<!DOCTYPE mapper
PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN"
"http://mybatis.org/dtd/mybatis-3-mapper.dtd">
<mapper namespace="${domain}module.wsys.mpr.TaskSqlMapper">
<mapper namespace="${domain}.module.wsys.mpr.TaskSqlMapper">
<sql id="table">"SYS_TASK_SQL"</sql>
@ -10,7 +10,7 @@
"ID","TASK_NAME","TASK_NOTE","TASK_TYPE","TYPE_VALUE","TASK_SQL","VALID","ROW_VERSION","IS_DELETED","CREATE_BY","CREATE_TIME","LAST_UPDATE_BY","LAST_UPDATE_TIME"
</sql>
<resultMap id="taskSql" type="${domain}module.wsys.ent.TaskSql">
<resultMap id="taskSql" type="${domain}.module.wsys.ent.TaskSql">
<result column="ID" jdbcType="BIGINT" property="id"/>
<result column="TASK_NAME" jdbcType="VARCHAR" property="taskName"/>
<result column="TASK_NOTE" jdbcType="VARCHAR" property="taskNote"/>

@ -2,7 +2,7 @@
<!DOCTYPE mapper
PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN"
"http://mybatis.org/dtd/mybatis-3-mapper.dtd">
<mapper namespace="${domain}module.wsys.mpr.TokensMapper">
<mapper namespace="${domain}.module.wsys.mpr.TokensMapper">
<sql id="table">"SYS_TOKENS"</sql>
@ -10,7 +10,7 @@
"ID","TOKEN","USER_ID","USER_NAME","LOGIN_TIME","VALID_TIME","VALID","DEPT_ID","DEPT_CODE","DEPT_NAME","TERMINAL","TERMINAL_IP","TERMINAL_INFO","ROW_VERSION","IS_DELETED","CREATE_BY","CREATE_TIME","LAST_UPDATE_BY","LAST_UPDATE_TIME"
</sql>
<resultMap id="tokens" type="${domain}module.wsys.ent.Tokens">
<resultMap id="tokens" type="${domain}.module.wsys.ent.Tokens">
<result column="ID" jdbcType="BIGINT" property="id"/>
<result column="TOKEN" jdbcType="VARCHAR" property="token"/>
<result column="USER_ID" jdbcType="BIGINT" property="userId"/>

@ -2,7 +2,7 @@
<!DOCTYPE mapper
PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN"
"http://mybatis.org/dtd/mybatis-3-mapper.dtd">
<mapper namespace="${domain}module.wsys.mpr.UserMapper">
<mapper namespace="${domain}.module.wsys.mpr.UserMapper">
<sql id="table">"SYS_USER"</sql>
@ -10,7 +10,7 @@
"ID","USER_NAME","USER_CODE","USER_ALIAS","USER_PWD","USER_STATUS","DEPT_ID","DEPT_CODE","DEPT_NAME","ROW_VERSION","IS_DELETED","CREATE_BY","CREATE_TIME","LAST_UPDATE_BY","LAST_UPDATE_TIME"
</sql>
<resultMap id="user" type="${domain}module.wsys.ent.User">
<resultMap id="user" type="${domain}.module.wsys.ent.User">
<result column="ID" jdbcType="BIGINT" property="id"/>
<result column="USER_NAME" jdbcType="VARCHAR" property="userName"/>
<result column="USER_CODE" jdbcType="VARCHAR" property="userCode"/>

@ -2,7 +2,7 @@
<!DOCTYPE mapper
PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN"
"http://mybatis.org/dtd/mybatis-3-mapper.dtd">
<mapper namespace="${domain}module.wsys.mpr.UserRoleMapper">
<mapper namespace="${domain}.module.wsys.mpr.UserRoleMapper">
<sql id="table">"SYS_USER_ROLE"</sql>
@ -10,7 +10,7 @@
"ID","USER_ID","USER_CODE","ROLE_ID","ROLE_CODE","ROW_VERSION","IS_DELETED","CREATE_BY","CREATE_TIME","LAST_UPDATE_BY","LAST_UPDATE_TIME"
</sql>
<resultMap id="userRole" type="${domain}module.wsys.ent.UserRole">
<resultMap id="userRole" type="${domain}.module.wsys.ent.UserRole">
<result column="ID" jdbcType="BIGINT" property="id"/>
<result column="USER_ID" jdbcType="BIGINT" property="userId"/>
<result column="USER_CODE" jdbcType="VARCHAR" property="userCode"/>

@ -33,15 +33,15 @@
)
VALUES
(
#{request.id},
#{request.appName,jdbcType=VARCHAR},
#{request.appNote,jdbcType=VARCHAR},
#{request.appKey,jdbcType=VARCHAR},
#{request.appSecret,jdbcType=VARCHAR},
#{request.valid,jdbcType=BIT},
${r'#'}{request.id},
${r'#'}{request.appName,jdbcType=VARCHAR},
${r'#'}{request.appNote,jdbcType=VARCHAR},
${r'#'}{request.appKey,jdbcType=VARCHAR},
${r'#'}{request.appSecret,jdbcType=VARCHAR},
${r'#'}{request.valid,jdbcType=BIT},
0,
0,
#{token.userId,jdbcType=NUMERIC},
${r'#'}{token.userId,jdbcType=NUMERIC},
sysdate,
NULL,
NULL
@ -57,15 +57,15 @@
VALUES
<foreach collection="list" item="item" index="index" separator="," open="(" close=")">
(
#{item.id},
#{item.appName,jdbcType=VARCHAR},
#{item.appNote,jdbcType=VARCHAR},
#{item.appKey,jdbcType=VARCHAR},
#{item.appSecret,jdbcType=VARCHAR},
#{item.valid,jdbcType=BIT},
${r'#'}{item.id},
${r'#'}{item.appName,jdbcType=VARCHAR},
${r'#'}{item.appNote,jdbcType=VARCHAR},
${r'#'}{item.appKey,jdbcType=VARCHAR},
${r'#'}{item.appSecret,jdbcType=VARCHAR},
${r'#'}{item.valid,jdbcType=BIT},
0,
0,
#{token.userId,jdbcType=NUMERIC},
${r'#'}{token.userId,jdbcType=NUMERIC},
sysdate,
NULL,
NULL
@ -78,7 +78,7 @@
<include refid="table"/>
SET "IS_DELETED" = 1
WHERE "IS_DELETED" = 0
AND "ID" = #{id}
AND "ID" = ${r'#'}{id}
</update>
<update id="deleteBatch">
@ -88,7 +88,7 @@
WHERE "IS_DELETED" = 0
AND "ID" IN
<foreach collection="list" item="item" index="index" separator="," open="(" close=")">
#{item}
${r'#'}{item}
</foreach>
</update>
@ -96,17 +96,17 @@
UPDATE
<include refid="table"/>
SET
"APP_NAME" = #{request.appName,jdbcType=VARCHAR},
"APP_NOTE" = #{request.appNote,jdbcType=VARCHAR},
"APP_KEY" = #{request.appKey,jdbcType=VARCHAR},
"APP_SECRET" = #{request.appSecret,jdbcType=VARCHAR},
"VALID" = #{request.valid,jdbcType=BIT},
"APP_NAME" = ${r'#'}{request.appName,jdbcType=VARCHAR},
"APP_NOTE" = ${r'#'}{request.appNote,jdbcType=VARCHAR},
"APP_KEY" = ${r'#'}{request.appKey,jdbcType=VARCHAR},
"APP_SECRET" = ${r'#'}{request.appSecret,jdbcType=VARCHAR},
"VALID" = ${r'#'}{request.valid,jdbcType=BIT},
"ROW_VERSION" = "ROW_VERSION" + 1,
"LAST_UPDATE_BY" = #{token.userId},
"LAST_UPDATE_BY" = ${r'#'}{token.userId},
"LAST_UPDATE_TIME" = sysdate
WHERE "IS_DELETED" = 0
AND "ID" = #{request.id}
AND "ROW_VERSION" = #{request.rowVersion}
AND "ID" = ${r'#'}{request.id}
AND "ROW_VERSION" = ${r'#'}{request.rowVersion}
</update>
<select id="select" resultMap="visitor">
@ -116,16 +116,16 @@
<include refid="table"/>
WHERE "IS_DELETED" = 0
<if test="request.appName != null and request.appName != ''">
AND "APP_NAME" = #{request.appName}
AND "APP_NAME" = ${r'#'}{request.appName}
</if>
<if test="request.appKey != null and request.appKey != ''">
AND "APP_KEY" = #{request.appKey}
AND "APP_KEY" = ${r'#'}{request.appKey}
</if>
<if test="request.appSecret != null and request.appSecret != ''">
AND "APP_SECRET" = #{request.appSecret}
AND "APP_SECRET" = ${r'#'}{request.appSecret}
</if>
<if test="request.valid != null">
AND "VALID" = #{request.valid}
AND "VALID" = ${r'#'}{request.valid}
</if>
</select>
@ -136,22 +136,22 @@
<include refid="table"/>
WHERE "IS_DELETED" = 0
<if test="request.appName != null and request.appName != ''">
AND "APP_NAME" = #{request.appName}
AND "APP_NAME" = ${r'#'}{request.appName}
</if>
<if test="request.appKey != null and request.appKey != ''">
AND "APP_KEY" = #{request.appKey}
AND "APP_KEY" = ${r'#'}{request.appKey}
</if>
<if test="request.appSecret != null and request.appSecret != ''">
AND "APP_SECRET" = #{request.appSecret}
AND "APP_SECRET" = ${r'#'}{request.appSecret}
</if>
<if test="request.valid != null">
AND "VALID" = #{request.valid}
AND "VALID" = ${r'#'}{request.valid}
</if>
<if test="request.startDate != null">
AND "CREATE_TIME" &gt;= #{request.startDate}
AND "CREATE_TIME" &gt;= ${r'#'}{request.startDate}
</if>
<if test="request.endDate != null">
AND "CREATE_TIME" &lt;= #{request.endDate}
AND "CREATE_TIME" &lt;= ${r'#'}{request.endDate}
</if>
</select>
@ -169,7 +169,7 @@
FROM
<include refid="table"/>
WHERE "IS_DELETED" = 0
AND "ID" = #{id}
AND "ID" = ${r'#'}{id}
</select>
<select id="getByIds" resultMap="visitor">
@ -180,7 +180,7 @@
WHERE "IS_DELETED" = 0
AND "ID" IN
<foreach collection="list" item="item" index="index" separator="," open="(" close=")">
#{item}
${r'#'}{item}
</foreach>
</select>
</mapper>

@ -32,14 +32,14 @@
)
VALUES
(
#{request.id},
#{request.appId,jdbcType=BIGINT},
#{request.appKey,jdbcType=VARCHAR},
#{request.resId,jdbcType=BIGINT},
#{request.resCode,jdbcType=VARCHAR},
${r'#'}{request.id},
${r'#'}{request.appId,jdbcType=BIGINT},
${r'#'}{request.appKey,jdbcType=VARCHAR},
${r'#'}{request.resId,jdbcType=BIGINT},
${r'#'}{request.resCode,jdbcType=VARCHAR},
0,
0,
#{token.userId,jdbcType=NUMERIC},
${r'#'}{token.userId,jdbcType=NUMERIC},
sysdate,
NULL,
NULL
@ -55,14 +55,14 @@
VALUES
<foreach collection="list" item="item" index="index" separator="," open="(" close=")">
(
#{item.id},
#{item.appId,jdbcType=BIGINT},
#{item.appKey,jdbcType=VARCHAR},
#{item.resId,jdbcType=BIGINT},
#{item.resCode,jdbcType=VARCHAR},
${r'#'}{item.id},
${r'#'}{item.appId,jdbcType=BIGINT},
${r'#'}{item.appKey,jdbcType=VARCHAR},
${r'#'}{item.resId,jdbcType=BIGINT},
${r'#'}{item.resCode,jdbcType=VARCHAR},
0,
0,
#{token.userId,jdbcType=NUMERIC},
${r'#'}{token.userId,jdbcType=NUMERIC},
sysdate,
NULL,
NULL
@ -75,7 +75,7 @@
<include refid="table"/>
SET "IS_DELETED" = 1
WHERE "IS_DELETED" = 0
AND "ID" = #{id}
AND "ID" = ${r'#'}{id}
</update>
<update id="deleteBatch">
@ -85,7 +85,7 @@
WHERE "IS_DELETED" = 0
AND "ID" IN
<foreach collection="list" item="item" index="index" separator="," open="(" close=")">
#{item}
${r'#'}{item}
</foreach>
</update>
@ -93,16 +93,16 @@
UPDATE
<include refid="table"/>
SET
"APP_ID" = #{request.appId,jdbcType=BIGINT},
"APP_KEY" = #{request.appKey,jdbcType=VARCHAR},
"RES_ID" = #{request.resId,jdbcType=BIGINT},
"RES_CODE" = #{request.resCode,jdbcType=VARCHAR},
"APP_ID" = ${r'#'}{request.appId,jdbcType=BIGINT},
"APP_KEY" = ${r'#'}{request.appKey,jdbcType=VARCHAR},
"RES_ID" = ${r'#'}{request.resId,jdbcType=BIGINT},
"RES_CODE" = ${r'#'}{request.resCode,jdbcType=VARCHAR},
"ROW_VERSION" = "ROW_VERSION" + 1,
"LAST_UPDATE_BY" = #{token.userId},
"LAST_UPDATE_BY" = ${r'#'}{token.userId},
"LAST_UPDATE_TIME" = sysdate
WHERE "IS_DELETED" = 0
AND "ID" = #{request.id}
AND "ROW_VERSION" = #{request.rowVersion}
AND "ID" = ${r'#'}{request.id}
AND "ROW_VERSION" = ${r'#'}{request.rowVersion}
</update>
<select id="select" resultMap="visitorRes">
@ -112,16 +112,16 @@
<include refid="table"/>
WHERE "IS_DELETED" = 0
<if test="request.appId != null and request.appId != 0">
AND "APP_ID" = #{request.appId}
AND "APP_ID" = ${r'#'}{request.appId}
</if>
<if test="request.appKey != null and request.appKey != ''">
AND "APP_KEY" = #{request.appKey}
AND "APP_KEY" = ${r'#'}{request.appKey}
</if>
<if test="request.resId != null and request.resId != 0">
AND "RES_ID" = #{request.resId}
AND "RES_ID" = ${r'#'}{request.resId}
</if>
<if test="request.resCode != null and request.resCode != ''">
AND "RES_CODE" = #{request.resCode}
AND "RES_CODE" = ${r'#'}{request.resCode}
</if>
</select>
@ -132,22 +132,22 @@
<include refid="table"/>
WHERE "IS_DELETED" = 0
<if test="request.appId != null and request.appId != 0">
AND "APP_ID" = #{request.appId}
AND "APP_ID" = ${r'#'}{request.appId}
</if>
<if test="request.appKey != null and request.appKey != ''">
AND "APP_KEY" = #{request.appKey}
AND "APP_KEY" = ${r'#'}{request.appKey}
</if>
<if test="request.resId != null and request.resId != 0">
AND "RES_ID" = #{request.resId}
AND "RES_ID" = ${r'#'}{request.resId}
</if>
<if test="request.resCode != null and request.resCode != ''">
AND "RES_CODE" = #{request.resCode}
AND "RES_CODE" = ${r'#'}{request.resCode}
</if>
<if test="request.startDate != null">
AND "CREATE_TIME" &gt;= #{request.startDate}
AND "CREATE_TIME" &gt;= ${r'#'}{request.startDate}
</if>
<if test="request.endDate != null">
AND "CREATE_TIME" &lt;= #{request.endDate}
AND "CREATE_TIME" &lt;= ${r'#'}{request.endDate}
</if>
</select>
@ -165,7 +165,7 @@
FROM
<include refid="table"/>
WHERE "IS_DELETED" = 0
AND "ID" = #{id}
AND "ID" = ${r'#'}{id}
</select>
<select id="getByIds" resultMap="visitorRes">
@ -176,7 +176,7 @@
WHERE "IS_DELETED" = 0
AND "ID" IN
<foreach collection="list" item="item" index="index" separator="," open="(" close=")">
#{item}
${r'#'}{item}
</foreach>
</select>
</mapper>

@ -143,6 +143,7 @@
<el-dialog
title="密码修改"
width="350px"
:visible.sync="form.formShow">
<el-form class="form" :model="form" :rules="formRules" ref="form" label-position="right" label-width="90px">
<el-form-item label="当前密码" prop="password">

@ -174,8 +174,9 @@
<el-row>
<el-col :span="12">
<el-input v-model="treeKeyword" clearable size="mini" placeholder="请输入资源内容" @change="onChange"
style="width: 200px;"></el-input>
<el-button type="success" size="mini" icon="el-icon-plus" @click="onCreate">新增</el-button>
<el-button type="warning" size="mini" icon="el-icon-edit" @click="onCreate">前缀修改</el-button>
</el-col>
<el-col :span="12">
<el-button-group style="float: right;">
@ -195,13 +196,14 @@
:data="treeData"
node-key="resCode"
ref="tree"
show-checkbox
default-expand-all
:filter-node-method="filterTree"
:expand-on-click-node="false">
<div class="tree" slot-scope="{ node, data }">
<span>
<el-button type="text" size="mini" icon="el-icon-plus"
@click="onTreeCreate(data)"></el-button>
<el-link type="success" @click="onTreeCreate(data)">新增</el-link>
<el-link type="danger" @click="onDelete(data)">删除</el-link>
{{ data.resName }}
<span style="color: #409EFF" @click="onTreeEdit(data)">[{{data.resCode}}]</span>
<span style="color: #ff0000" v-if="data.free">[免费]</span>
@ -319,7 +321,6 @@
{required: true, message: '是否有效不能为空', trigger: 'blur'},
],
},
treeKeyword: '',
treeData: []
},
methods: {
@ -434,10 +435,54 @@
}
}.bind(this));
},
},
watch: {
treeKeyword: function (val) {
this.$refs.tree.filter(val);
onDelete: function (item) {
this.$confirm('将删除该项, 是否继续?', '提示', {
confirmButtonText: '确定',
cancelButtonText: '取消',
type: 'warning'
}).then(function () {
new Ajax(this.module, this.target).delete({id: item.id}, function (response) {
if (response.errors.length > 0) {
nav.e(response.errors[0].message);
} else {
nav.s("删除成功");
this.onFind();
this.onLoadTree();
}
}.bind(this))
}.bind(this)).catch(function (action) {
});
},
onBitchDelete: function () {
if (this.select.length == 0) {
nav.w("至少选中一项");
} else {
this.$confirm('将删除已选择的项, 是否继续?', '提示', {
confirmButtonText: '确定',
cancelButtonText: '取消',
type: 'warning'
}).then(function () {
nav.tipShow("删除中...");
this.select.forAsync(function (item, next) {
new Ajax(this.module, this.target).delete({id: item.id}, function (response) {
if (response.errors.length > 0) {
nav.e(response.errors[0].message);
} else {
this.result.remove(item)
}
next();
}.bind(this))
}.bind(this), function () {
nav.tipClose();
nav.s("批量删除成功.")
this.onFind();
this.onLoadTree();
}.bind(this))
}.bind(this)).catch(function (action) {
});
}
}
},
mounted: function () {

@ -93,15 +93,15 @@ public class DataInit {
forDev.add(createRes("DEV", "核心设置菜单", "WEB", "DEV"));
forDev.add(createRes("DEV_PROFILES", "系统配置菜单", "WEB", "DEV_PROFILES"));
forDev.add(createRes("DEV_PROFILES_HTM", "系统配置管理页", "WEB", "/wsvr/profiles.htm"));
forDev.add(createRes("DEV_PROFILES_TEMPLATE", "系统配置模板", "WEB", "/ajax/wsvr/profiles/template"));
forDev.add(createRes("DEV_PROFILES_IMPORT", "系统配置导入", "WEB", "/ajax/wsvr/profiles/imports"));
forDev.add(createRes("DEV_PROFILES_EXPORT", "系统配置导出", "WEB", "/ajax/wsvr/profiles/exports"));
forDev.add(createRes("DEV_PROFILES_CREATE", "系统配置新增", "WEB", "/ajax/wsvr/profiles/create"));
forDev.add(createRes("DEV_PROFILES_DELETE", "系统配置删除", "WEB", "/ajax/wsvr/profiles/delete"));
forDev.add(createRes("DEV_PROFILES_UPDATE", "系统配置编辑", "WEB", "/ajax/wsvr/profiles/update"));
forDev.add(createRes("DEV_PROFILES_FIND", "系统配置查询", "WEB", "/ajax/wsvr/profiles/find"));
forDev.add(createRes("DEV_PROFILES_GET", "系统配置获取", "WEB", "/ajax/wsvr/profiles/get"));
forDev.add(createRes("DEV_PROFILES_HTM", "系统配置管理页", "WEB", "/wsys/profiles.htm"));
forDev.add(createRes("DEV_PROFILES_TEMPLATE", "系统配置模板", "WEB", "/ajax/wsys/profiles/template"));
forDev.add(createRes("DEV_PROFILES_IMPORT", "系统配置导入", "WEB", "/ajax/wsys/profiles/imports"));
forDev.add(createRes("DEV_PROFILES_EXPORT", "系统配置导出", "WEB", "/ajax/wsys/profiles/exports"));
forDev.add(createRes("DEV_PROFILES_CREATE", "系统配置新增", "WEB", "/ajax/wsys/profiles/create"));
forDev.add(createRes("DEV_PROFILES_DELETE", "系统配置删除", "WEB", "/ajax/wsys/profiles/delete"));
forDev.add(createRes("DEV_PROFILES_UPDATE", "系统配置编辑", "WEB", "/ajax/wsys/profiles/update"));
forDev.add(createRes("DEV_PROFILES_FIND", "系统配置查询", "WEB", "/ajax/wsys/profiles/find"));
forDev.add(createRes("DEV_PROFILES_GET", "系统配置获取", "WEB", "/ajax/wsys/profiles/get"));
forDev.add(createRes("DEV_RES", "资源管理菜单", "WEB", "DEV_RES"));
forDev.add(createRes("DEV_RES_HTM", "资源管理页", "WEB", "/wsys/res.htm"));
@ -155,10 +155,10 @@ public class DataInit {
forDev.add(createRes("MNT_SCHEDULE_STOP", "调度监控暂停", "WEB", "/ajax/wsys/schedule/stop"));
forDev.add(createRes("MNT_LOGERR", "错误日志菜单", "WEB", "MNT_LOGERR"));
forDev.add(createRes("MNT_LOGERR_HTM", "错误日志管理页", "WEB", "/wsvr/logerr.htm"));
forDev.add(createRes("MNT_LOGERR_DELETE", "错误日志删除", "WEB", "/ajax/wsvr/logerr/delete"));
forDev.add(createRes("MNT_LOGERR_UPDATE", "错误日志更新", "WEB", "/ajax/wsvr/logerr/update"));
forDev.add(createRes("MNT_LOGERR_FIND", "错误日志查询", "WEB", "/ajax/wsvr/logerr/find"));
forDev.add(createRes("MNT_LOGERR_HTM", "错误日志管理页", "WEB", "/wsys/logerr.htm"));
forDev.add(createRes("MNT_LOGERR_DELETE", "错误日志删除", "WEB", "/ajax/wsys/logerr/delete"));
forDev.add(createRes("MNT_LOGERR_UPDATE", "错误日志更新", "WEB", "/ajax/wsys/logerr/update"));
forDev.add(createRes("MNT_LOGERR_FIND", "错误日志查询", "WEB", "/ajax/wsys/logerr/find"));
}
List<Res> forMgr = new ArrayList<>();

Loading…
Cancel
Save

Powered by TurnKey Linux.