|
|
@@ -43,6 +43,9 @@
|
|
|
<result column="AUDIT_BY" property="auditBy" jdbcType="VARCHAR"/>
|
|
|
<result column="AUDIT_TIME" property="auditTime"/>
|
|
|
<result column="AUDIT_REMARK" property="auditRemark" jdbcType="VARCHAR"/>
|
|
|
+ <result column="PUBLISH" property="publish" jdbcType="VARCHAR"/>
|
|
|
+ <result column="PUBLISH_BY" property="publishBy" jdbcType="VARCHAR"/>
|
|
|
+ <result column="PUBLISH_TIME" property="publishTime" />
|
|
|
</resultMap>
|
|
|
<resultMap id="AuthVoResultMap" type="com.ruoyi.interfaces.domain.vo.PtServiceVo">
|
|
|
<result property="id" jdbcType="VARCHAR" column="ID"/>
|
|
|
@@ -86,8 +89,11 @@
|
|
|
<result column="DATA_NUM" property="dataNum" jdbcType="INTEGER"/>
|
|
|
<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_TIME" property="auditTime" />
|
|
|
<result column="AUDIT_REMARK" property="auditRemark" jdbcType="VARCHAR"/>
|
|
|
+ <result column="PUBLISH" property="publish" jdbcType="VARCHAR"/>
|
|
|
+ <result column="PUBLISH_BY" property="publishBy" jdbcType="VARCHAR"/>
|
|
|
+ <result column="PUBLISH_TIME" property="publishTime" />
|
|
|
</resultMap>
|
|
|
|
|
|
<sql id="Base_Column_List">
|
|
|
@@ -100,7 +106,10 @@
|
|
|
TM, RELEASE_TIME, RLSTM, UPTM,
|
|
|
VIEW_NUM, CNT, APPLY_NUM, DATA_NUM,AUDIT,AUDIT_BY,
|
|
|
AUDIT_TIME,
|
|
|
-AUDIT_REMARK
|
|
|
+AUDIT_REMARK,
|
|
|
+ PUBLISH,
|
|
|
+PUBLISH_BY,
|
|
|
+PUBLISH_TIME
|
|
|
</sql>
|
|
|
<sql id="Blob_Column_List">
|
|
|
RPCONTENT
|
|
|
@@ -111,7 +120,10 @@ AUDIT_REMARK
|
|
|
, 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,AUDIT_BY,
|
|
|
AUDIT_TIME,
|
|
|
-AUDIT_REMARK
|
|
|
+AUDIT_REMARK,
|
|
|
+ PUBLISH,
|
|
|
+PUBLISH_BY,
|
|
|
+PUBLISH_TIME
|
|
|
</sql>
|
|
|
<sql id="table_columns">
|
|
|
MDID
|
|
|
@@ -152,7 +164,10 @@ AUDIT_REMARK
|
|
|
MAINTAIN_CONTACER,
|
|
|
VIEW_NUM,SORT,AUDIT,AUDIT_BY,
|
|
|
AUDIT_TIME,
|
|
|
-AUDIT_REMARK
|
|
|
+AUDIT_REMARK,
|
|
|
+ PUBLISH,
|
|
|
+PUBLISH_BY,
|
|
|
+PUBLISH_TIME
|
|
|
</sql>
|
|
|
<sql id="entity_properties">
|
|
|
#{mdid,jdbcType=VARCHAR}
|
|
|
@@ -308,6 +323,9 @@ AUDIT_REMARK
|
|
|
<if test="audit != null and audit != ''">
|
|
|
and AUDIT = #{audit}
|
|
|
</if>
|
|
|
+ <if test="publish != null and publish != ''">
|
|
|
+ and PUBLISH = #{publish}
|
|
|
+ </if>
|
|
|
</trim>
|
|
|
</sql>
|
|
|
|
|
|
@@ -431,6 +449,13 @@ order by SORT
|
|
|
AUDIT_REMARK = #{auditRemark}
|
|
|
where SRV_ID = #{srvId}
|
|
|
</update>
|
|
|
+ <update id="updatePtServicePublish">
|
|
|
+ update PT_SERVICE
|
|
|
+ set PUBLISH = #{publish},
|
|
|
+ PUBLISH_BY = #{publishBy},
|
|
|
+ PUBLISH_TIME = #{publishTime}
|
|
|
+ where SRV_ID = #{srvId}
|
|
|
+ </update>
|
|
|
|
|
|
<!--根据主键删除数据-->
|
|
|
<delete id="deleteByPrimaryKey" parameterType="java.lang.String">
|