【新增】参数审核提交接口
This commit is contained in:
@@ -17,6 +17,9 @@
|
||||
<result column="download_count" property="downloadCount"/>
|
||||
<result column="create_time" property="createTime"/>
|
||||
<result column="update_time" property="updateTime"/>
|
||||
<result column="status" property="status"/>
|
||||
<result column="audit_status" property="auditStatus"/>
|
||||
<result column="audit_error_msg" property="auditErrorMsg"/>
|
||||
</resultMap>
|
||||
|
||||
<!-- 基础查询SQL片段 -->
|
||||
@@ -34,7 +37,10 @@
|
||||
p.param_detail,
|
||||
p.download_count,
|
||||
p.create_time,
|
||||
p.update_time
|
||||
p.update_time,
|
||||
p.status,
|
||||
p.audit_status,
|
||||
p.audit_error_msg
|
||||
FROM app_params_center p
|
||||
LEFT JOIN app_user u ON p.user_id = u.id
|
||||
</sql>
|
||||
@@ -56,10 +62,11 @@
|
||||
ORDER BY p.update_time DESC
|
||||
</select>
|
||||
|
||||
<!-- 分页查询所有参数列表(带用户名) -->
|
||||
<!-- 分页查询所有公共参数列表(带用户名) -->
|
||||
<select id="selectAllVOPage" resultMap="VOResultMap">
|
||||
<include refid="selectVOSql"/>
|
||||
<where>
|
||||
and p.status = '2'
|
||||
<if test="fcModel != null and fcModel != ''">
|
||||
AND p.fc_model = #{fcModel}
|
||||
</if>
|
||||
|
||||
Reference in New Issue
Block a user