同步操作将从 Rainy/DocSys 强制同步,此操作会覆盖自 Fork 仓库以来所做的任何修改,且无法恢复!!!
确定后同步将在后台操作,完成时将刷新页面,请耐心等待。
<?xml version="1.0" encoding="UTF-8" ?><!DOCTYPE mapper PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN" "http://mybatis.org/dtd/mybatis-3-mapper.dtd" ><mapper namespace="com.DocSystem.dao.DocShareMapper" ><resultMap id="BaseResultMap" type="com.DocSystem.entity.DocShare" ><id column="ID" property="id" jdbcType="INTEGER" /><result column="SHARE_ID" property="shareId" jdbcType="INTEGER" /><result column="NAME" property="name" jdbcType="VARCHAR" /><result column="PATH" property="path" jdbcType="VARCHAR" /><result column="DOC_ID" property="docId" jdbcType="BIGINT" /><result column="VID" property="vid" jdbcType="INTEGER" /><result column="SHARE_AUTH" property="shareAuth" jdbcType="VARCHAR" /><result column="SHARE_PWD" property="sharePwd" jdbcType="VARCHAR" /><result column="SHARED_BY" property="sharedBy" jdbcType="INTEGER" /><result column="EXPIRE_TIME" property="expireTime" jdbcType="BIGINT" /></resultMap><sql id="Base_Column_List" >ID, SHARE_ID, NAME, PATH, DOC_ID, VID, SHARE_AUTH, SHARE_PWD, SHARED_BY, EXPIRE_TIME</sql><select id="selectByPrimaryKey" resultMap="BaseResultMap" parameterType="java.lang.Integer" >select<include refid="Base_Column_List" />from doc_sharewhere ID = #{id,jdbcType=INTEGER}</select><delete id="deleteByPrimaryKey" parameterType="java.lang.Integer" >delete from doc_sharewhere ID = #{id,jdbcType=INTEGER}</delete><insert id="insert" parameterType="com.DocSystem.entity.DocShare" >insert into doc_share (ID, SHARE_ID, NAME,PATH, DOC_ID, VID, SHARE_AUTH,SHARE_PWD, SHARED_BY, EXPIRE_TIME)values (#{id,jdbcType=INTEGER}, #{shareId,jdbcType=INTEGER}, #{name,jdbcType=VARCHAR},#{path,jdbcType=VARCHAR}, #{docId,jdbcType=BIGINT}, #{vid,jdbcType=INTEGER}, #{shareAuth,jdbcType=VARCHAR},#{sharePwd,jdbcType=VARCHAR}, #{sharedBy,jdbcType=INTEGER}, #{expireTime,jdbcType=BIGINT})</insert><insert id="insertSelective" parameterType="com.DocSystem.entity.DocShare" >insert into doc_share<trim prefix="(" suffix=")" suffixOverrides="," ><if test="id != null" >ID,</if><if test="shareId != null" >SHARE_ID,</if><if test="name != null" >NAME,</if><if test="path != null" >PATH,</if><if test="docId != null" >DOC_ID,</if><if test="vid != null" >VID,</if><if test="shareAuth != null" >SHARE_AUTH,</if><if test="sharePwd != null" >SHARE_PWD,</if><if test="sharedBy != null" >SHARED_BY,</if><if test="expireTime != null" >EXPIRE_TIME,</if></trim><trim prefix="values (" suffix=")" suffixOverrides="," ><if test="id != null" >#{id,jdbcType=INTEGER},</if><if test="shareId != null" >#{shareId,jdbcType=INTEGER},</if><if test="name != null" >#{name,jdbcType=VARCHAR},</if><if test="path != null" >#{path,jdbcType=VARCHAR},</if><if test="docId != null" >#{docId,jdbcType=BIGINT},</if><if test="vid != null" >#{vid,jdbcType=INTEGER},</if><if test="shareAuth != null" >#{shareAuth,jdbcType=VARCHAR},</if><if test="sharePwd != null" >#{sharePwd,jdbcType=VARCHAR},</if><if test="sharedBy != null" >#{sharedBy,jdbcType=INTEGER},</if><if test="expireTime != null" >#{expireTime,jdbcType=BIGINT},</if></trim></insert><update id="updateByPrimaryKeySelective" parameterType="com.DocSystem.entity.DocShare" >update doc_share<set ><if test="shareId != null" >SHARE_ID = #{shareId,jdbcType=INTEGER},</if><if test="name != null" >NAME = #{name,jdbcType=VARCHAR},</if><if test="path != null" >PATH = #{path,jdbcType=VARCHAR},</if><if test="docId != null" >DOC_ID = #{docId,jdbcType=BIGINT},</if><if test="vid != null" >VID = #{vid,jdbcType=INTEGER},</if><if test="shareAuth != null" >SHARE_AUTH = #{shareAuth,jdbcType=VARCHAR},</if><if test="sharePwd != null" >SHARE_PWD = #{sharePwd,jdbcType=VARCHAR},</if><if test="sharedBy != null" >SHARED_BY = #{sharedBy,jdbcType=INTEGER},</if><if test="expireTime != null" >EXPIRE_TIME = #{expireTime,jdbcType=BIGINT},</if></set>where ID = #{id,jdbcType=INTEGER}</update><update id="updateByPrimaryKey" parameterType="com.DocSystem.entity.DocShare" >update doc_shareset SHARE_ID = #{shareId,jdbcType=INTEGER},NAME = #{name,jdbcType=VARCHAR},PATH = #{path,jdbcType=VARCHAR},DOC_ID = #{docId,jdbcType=BIGINT},VID = #{vid,jdbcType=INTEGER},SHARE_AUTH = #{shareAuth,jdbcType=VARCHAR},SHARE_PWD = #{sharePwd,jdbcType=VARCHAR},SHARED_BY = #{sharedBy,jdbcType=INTEGER},EXPIRE_TIME = #{expireTime,jdbcType=BIGINT}where ID = #{id,jdbcType=INTEGER}</update><select id="selectSelective" parameterType="com.DocSystem.entity.DocShare" resultMap="BaseResultMap">select<include refid="Base_Column_List" />from doc_sharewhere 1 = 1<if test="id != null">and ID = #{id,jdbcType=INTEGER}</if><if test="shareId != null" >and SHARE_ID = #{shareId,jdbcType=INTEGER}</if><if test="name != null" >and NAME = #{name,jdbcType=VARCHAR}</if><if test="path != null" >and PATH = #{path,jdbcType=VARCHAR}</if><if test="docId != null" >and DOC_ID = #{docId,jdbcType=BIGINT}</if><if test="vid != null" >and VID = #{vid,jdbcType=INTEGER}</if><if test="shareAuth != null" >and SHARE_AUTH = #{shareAuth,jdbcType=VARCHAR}</if><if test="sharePwd != null" >and SHARE_PWD = #{sharePwd,jdbcType=VARCHAR}</if><if test="sharedBy != null" >and SHARED_BY = #{sharedBy,jdbcType=INTEGER}</if><if test="expireTime != null" >and EXPIRE_TIME = #{expireTime,jdbcType=BIGINT}</if></select><delete id="deleteSelective" parameterType="com.DocSystem.entity.DocShare" >delete from doc_sharewhere 1 = 1<if test="id != null">and ID = #{id,jdbcType=INTEGER}</if><if test="shareId != null" >and SHARE_ID = #{shareId,jdbcType=INTEGER}</if><if test="name != null" >and NAME = #{name,jdbcType=VARCHAR}</if><if test="path != null" >and PATH = #{path,jdbcType=VARCHAR}</if><if test="docId != null" >and DOC_ID = #{docId,jdbcType=BIGINT}</if><if test="vid != null" >and VID = #{vid,jdbcType=INTEGER}</if><if test="shareAuth != null" >and SHARE_AUTH = #{shareAuth,jdbcType=VARCHAR}</if><if test="sharePwd != null" >and SHARE_PWD = #{sharePwd,jdbcType=VARCHAR}</if><if test="sharedBy != null" >and SHARED_BY = #{sharedBy,jdbcType=INTEGER}</if><if test="expireTime != null" >and EXPIRE_TIME = #{expireTime,jdbcType=BIGINT}</if></delete></mapper>
此处可能存在不合适展示的内容,页面不予展示。您可通过相关编辑功能自查并修改。
如您确认内容无涉及 不当用语 / 纯广告导流 / 暴力 / 低俗色情 / 侵权 / 盗版 / 虚假 / 无价值内容或违法国家有关法律法规的内容,可点击提交进行申诉,我们将尽快为您处理。