This commit is contained in:
2025-03-17 18:35:06 +08:00
parent 7e8eebdef5
commit 180ba67de8
5 changed files with 210 additions and 2 deletions

View File

@ -107,7 +107,10 @@
face_detect_helper_threshold=#{faceDetectHelperThreshold},
store_type=#{storeType},
store_config_json=#{storeConfigJson},
broker_direct_rate=#{brokerDirectRate}
broker_direct_rate=#{brokerDirectRate},
watermark_type=#{watermarkType},
watermark_scenic_text=#{watermarkScenicText},
watermark_dt_format=#{watermarkDtFormat}
</set>
where id = #{id}
</update>

View File

@ -38,6 +38,11 @@
</set>
where member_id = #{memberId} and face_id = #{faceId} and `type` = #{type}
</update>
<update id="updateWaterUrl">
update member_source
set water_url = #{waterUrl}
where member_id = #{memberId} and source_id = #{sourceId} and `type` = #{type}
</update>
<delete id="deleteById">
delete from source where id = #{id}
</delete>