|
@@ -40,6 +40,9 @@
|
|
|
<result column="DATA_NUM" property="dataNum" jdbcType="INTEGER"/>
|
|
<result column="DATA_NUM" property="dataNum" jdbcType="INTEGER"/>
|
|
|
<result column="SORT" property="sort" jdbcType="INTEGER"/>
|
|
<result column="SORT" property="sort" jdbcType="INTEGER"/>
|
|
|
<result column="AUDIT" property="audit" jdbcType="VARCHAR"/>
|
|
<result column="AUDIT" property="audit" jdbcType="VARCHAR"/>
|
|
|
|
|
+ <result column="AUDIT_BY" property="auditBy" jdbcType="VARCHAR"/>
|
|
|
|
|
+ <result column="AUDIT_TIME" property="auditTime"/>
|
|
|
|
|
+ <result column="AUDIT_REMARK" property="auditRemark" jdbcType="VARCHAR"/>
|
|
|
</resultMap>
|
|
</resultMap>
|
|
|
<resultMap id="AuthVoResultMap" type="com.ruoyi.interfaces.domain.vo.PtServiceVo">
|
|
<resultMap id="AuthVoResultMap" type="com.ruoyi.interfaces.domain.vo.PtServiceVo">
|
|
|
<result property="id" jdbcType="VARCHAR" column="ID"/>
|
|
<result property="id" jdbcType="VARCHAR" column="ID"/>
|
|
@@ -82,6 +85,9 @@
|
|
|
<result column="APPLY_NUM" property="applyNum" jdbcType="INTEGER"/>
|
|
<result column="APPLY_NUM" property="applyNum" jdbcType="INTEGER"/>
|
|
|
<result column="DATA_NUM" property="dataNum" jdbcType="INTEGER"/>
|
|
<result column="DATA_NUM" property="dataNum" jdbcType="INTEGER"/>
|
|
|
<result column="AUDIT" property="audit" jdbcType="VARCHAR"/>
|
|
<result column="AUDIT" property="audit" jdbcType="VARCHAR"/>
|
|
|
|
|
+ <result column="AUDIT_BY" property="auditBy" jdbcType="VARCHAR"/>
|
|
|
|
|
+ <result column="AUDIT_TIME" property="auditTime" jdbcType="VARCHAR"/>
|
|
|
|
|
+ <result column="AUDIT_REMARK" property="auditRemark" jdbcType="VARCHAR"/>
|
|
|
</resultMap>
|
|
</resultMap>
|
|
|
|
|
|
|
|
<sql id="Base_Column_List">
|
|
<sql id="Base_Column_List">
|
|
@@ -92,7 +98,9 @@
|
|
|
SERVICE_SOURCE,SERVICE_DEPT, MANAGE_NAME,DATA_RANGE, OPEN_CNDTN, DATA_FIELD,
|
|
SERVICE_SOURCE,SERVICE_DEPT, MANAGE_NAME,DATA_RANGE, OPEN_CNDTN, DATA_FIELD,
|
|
|
URL, RQTYPE, RPTYPE, PROXY_ADDRESS,PROXY_PATH,
|
|
URL, RQTYPE, RPTYPE, PROXY_ADDRESS,PROXY_PATH,
|
|
|
TM, RELEASE_TIME, RLSTM, UPTM,
|
|
TM, RELEASE_TIME, RLSTM, UPTM,
|
|
|
- VIEW_NUM, CNT, APPLY_NUM, DATA_NUM,AUDIT
|
|
|
|
|
|
|
+ VIEW_NUM, CNT, APPLY_NUM, DATA_NUM,AUDIT,AUDIT_BY,
|
|
|
|
|
+AUDIT_TIME,
|
|
|
|
|
+AUDIT_REMARK
|
|
|
</sql>
|
|
</sql>
|
|
|
<sql id="Blob_Column_List">
|
|
<sql id="Blob_Column_List">
|
|
|
RPCONTENT
|
|
RPCONTENT
|
|
@@ -101,7 +109,9 @@
|
|
|
<sql id="SRV_INFO_List">
|
|
<sql id="SRV_INFO_List">
|
|
|
SRV_ID
|
|
SRV_ID
|
|
|
, NAME, TYPE, INTRO, URL, RQTYPE, RPTYPE, STATUS, CNT, USER_ID, TM,PROXY_ADDRESS,PROXY_PATH,SERVICE_SOURCE,CATE_CODE,
|
|
, NAME, TYPE, INTRO, URL, RQTYPE, RPTYPE, STATUS, CNT, USER_ID, TM,PROXY_ADDRESS,PROXY_PATH,SERVICE_SOURCE,CATE_CODE,
|
|
|
- SERVICE_DEPT, MANAGE_NAME,RELEASE_TIME,DEVELOP_UNIT,DEVELOP_CONTACTER,MAINTAIN_UNIT,MAINTAIN_CONTACER,VIEW_NUM,AUDIT
|
|
|
|
|
|
|
+ SERVICE_DEPT, MANAGE_NAME,RELEASE_TIME,DEVELOP_UNIT,DEVELOP_CONTACTER,MAINTAIN_UNIT,MAINTAIN_CONTACER,VIEW_NUM,AUDIT,AUDIT_BY,
|
|
|
|
|
+AUDIT_TIME,
|
|
|
|
|
+AUDIT_REMARK
|
|
|
</sql>
|
|
</sql>
|
|
|
<sql id="table_columns">
|
|
<sql id="table_columns">
|
|
|
MDID
|
|
MDID
|
|
@@ -140,7 +150,9 @@
|
|
|
DEVELOP_CONTACTER,
|
|
DEVELOP_CONTACTER,
|
|
|
MAINTAIN_UNIT,
|
|
MAINTAIN_UNIT,
|
|
|
MAINTAIN_CONTACER,
|
|
MAINTAIN_CONTACER,
|
|
|
- VIEW_NUM,SORT,AUDIT
|
|
|
|
|
|
|
+ VIEW_NUM,SORT,AUDIT,AUDIT_BY,
|
|
|
|
|
+AUDIT_TIME,
|
|
|
|
|
+AUDIT_REMARK
|
|
|
</sql>
|
|
</sql>
|
|
|
<sql id="entity_properties">
|
|
<sql id="entity_properties">
|
|
|
#{mdid,jdbcType=VARCHAR}
|
|
#{mdid,jdbcType=VARCHAR}
|
|
@@ -412,12 +424,12 @@ order by SORT
|
|
|
where SRV_ID = #{srvId,jdbcType=VARCHAR}
|
|
where SRV_ID = #{srvId,jdbcType=VARCHAR}
|
|
|
</update>
|
|
</update>
|
|
|
<update id="audit">
|
|
<update id="audit">
|
|
|
- update PT_SERVICE set AUDIT = #{audit}
|
|
|
|
|
- where SRV_ID in
|
|
|
|
|
- <foreach item="srvId" collection="srvIds" open="(" separator="," close=")">
|
|
|
|
|
- #{srvId}
|
|
|
|
|
- </foreach>
|
|
|
|
|
-
|
|
|
|
|
|
|
+ update PT_SERVICE
|
|
|
|
|
+ set AUDIT = #{audit},
|
|
|
|
|
+ AUDIT_BY = #{auditBy},
|
|
|
|
|
+ AUDIT_TIME = #{auditTime},
|
|
|
|
|
+ AUDIT_REMARK = #{auditRemark}
|
|
|
|
|
+ where SRV_ID = #{srvId}
|
|
|
</update>
|
|
</update>
|
|
|
|
|
|
|
|
<!--根据主键删除数据-->
|
|
<!--根据主键删除数据-->
|