|
@@ -10,7 +10,10 @@
|
|
|
<result property="spaceName" column="SPACE_NAME"/>
|
|
<result property="spaceName" column="SPACE_NAME"/>
|
|
|
<result property="currentCap" column="CURRENT_CAP"/>
|
|
<result property="currentCap" column="CURRENT_CAP"/>
|
|
|
<result property="expandCap" column="EXPAND_CAP"/>
|
|
<result property="expandCap" column="EXPAND_CAP"/>
|
|
|
- <result property="expandReson" column="EXPAND_RESON"/>
|
|
|
|
|
|
|
+ <result property="expandReason" column="EXPAND_REASON"/>
|
|
|
|
|
+ <result property="expandStatus" column="EXPAND_STATUS"/>
|
|
|
|
|
+ <result property="description" column="DESCRIPTION"/>
|
|
|
|
|
+ <result property="created" column="CREATED"/>
|
|
|
<result property="createBy" column="CREATE_BY"/>
|
|
<result property="createBy" column="CREATE_BY"/>
|
|
|
<result property="createTime" column="CREATE_TIME"/>
|
|
<result property="createTime" column="CREATE_TIME"/>
|
|
|
<result property="updateBy" column="UPDATE_BY"/>
|
|
<result property="updateBy" column="UPDATE_BY"/>
|
|
@@ -24,7 +27,10 @@
|
|
|
SPACE_NAME,
|
|
SPACE_NAME,
|
|
|
CURRENT_CAP,
|
|
CURRENT_CAP,
|
|
|
EXPAND_CAP,
|
|
EXPAND_CAP,
|
|
|
- EXPAND_RESON,
|
|
|
|
|
|
|
+ EXPAND_REASON,
|
|
|
|
|
+ EXPAND_STATUS,
|
|
|
|
|
+ DESCRIPTION,
|
|
|
|
|
+ CREATED,
|
|
|
CREATE_BY,
|
|
CREATE_BY,
|
|
|
CREATE_TIME,
|
|
CREATE_TIME,
|
|
|
UPDATE_BY,
|
|
UPDATE_BY,
|
|
@@ -36,10 +42,19 @@
|
|
|
<select id="selectDocSpaceExpansionList" parameterType="DocSpaceExpansion" resultMap="DocSpaceExpansionResult">
|
|
<select id="selectDocSpaceExpansionList" parameterType="DocSpaceExpansion" resultMap="DocSpaceExpansionResult">
|
|
|
<include refid="selectDocSpaceExpansionVo"/>
|
|
<include refid="selectDocSpaceExpansionVo"/>
|
|
|
<where>
|
|
<where>
|
|
|
|
|
+ <if test="spaceId != null ">and SPACE_ID = #{spaceId}</if>
|
|
|
<if test="spaceName != null and spaceName != ''">and SPACE_NAME like concat('%', #{spaceName}, '%')</if>
|
|
<if test="spaceName != null and spaceName != ''">and SPACE_NAME like concat('%', #{spaceName}, '%')</if>
|
|
|
<if test="currentCap != null ">and CURRENT_CAP = #{currentCap}</if>
|
|
<if test="currentCap != null ">and CURRENT_CAP = #{currentCap}</if>
|
|
|
<if test="expandCap != null ">and EXPAND_CAP = #{expandCap}</if>
|
|
<if test="expandCap != null ">and EXPAND_CAP = #{expandCap}</if>
|
|
|
- <if test="expandReson != null and expandReson != ''">and EXPAND_RESON = #{expandReson}</if>
|
|
|
|
|
|
|
+ <if test="expandReason != null and expandReason != ''">and EXPAND_REASON = #{expandReason}</if>
|
|
|
|
|
+ <if test="expandStatus != null and expandStatus != ''">and EXPAND_STATUS = #{expandStatus}</if>
|
|
|
|
|
+ <if test="description != null and description != ''">and DESCRIPTION = #{description}</if>
|
|
|
|
|
+ <if test="created != null ">and CREATED = #{created}</if>
|
|
|
|
|
+ <if test="createBy != null and createBy != ''">and CREATE_BY = #{createBy}</if>
|
|
|
|
|
+ <if test="createTime != null ">and CREATE_TIME = #{createTime}</if>
|
|
|
|
|
+ <if test="updateBy != null and updateBy != ''">and UPDATE_BY = #{updateBy}</if>
|
|
|
|
|
+ <if test="updateTime != null ">and UPDATE_TIME = #{updateTime}</if>
|
|
|
|
|
+ <if test="remark != null and remark != ''">and REMARK = #{remark}</if>
|
|
|
</where>
|
|
</where>
|
|
|
</select>
|
|
</select>
|
|
|
|
|
|
|
@@ -55,7 +70,10 @@
|
|
|
<if test="spaceName != null">SPACE_NAME,</if>
|
|
<if test="spaceName != null">SPACE_NAME,</if>
|
|
|
<if test="currentCap != null">CURRENT_CAP,</if>
|
|
<if test="currentCap != null">CURRENT_CAP,</if>
|
|
|
<if test="expandCap != null">EXPAND_CAP,</if>
|
|
<if test="expandCap != null">EXPAND_CAP,</if>
|
|
|
- <if test="expandReson != null">EXPAND_RESON,</if>
|
|
|
|
|
|
|
+ <if test="expandReason != null">EXPAND_REASON,</if>
|
|
|
|
|
+ <if test="expandStatus != null">EXPAND_STATUS,</if>
|
|
|
|
|
+ <if test="description != null">DESCRIPTION,</if>
|
|
|
|
|
+ <if test="created != null">CREATED,</if>
|
|
|
<if test="createBy != null">CREATE_BY,</if>
|
|
<if test="createBy != null">CREATE_BY,</if>
|
|
|
<if test="createTime != null">CREATE_TIME,</if>
|
|
<if test="createTime != null">CREATE_TIME,</if>
|
|
|
<if test="updateBy != null">UPDATE_BY,</if>
|
|
<if test="updateBy != null">UPDATE_BY,</if>
|
|
@@ -67,7 +85,10 @@
|
|
|
<if test="spaceName != null">#{spaceName},</if>
|
|
<if test="spaceName != null">#{spaceName},</if>
|
|
|
<if test="currentCap != null">#{currentCap},</if>
|
|
<if test="currentCap != null">#{currentCap},</if>
|
|
|
<if test="expandCap != null">#{expandCap},</if>
|
|
<if test="expandCap != null">#{expandCap},</if>
|
|
|
- <if test="expandReson != null">#{expandReson},</if>
|
|
|
|
|
|
|
+ <if test="expandReason != null">#{expandReason},</if>
|
|
|
|
|
+ <if test="expandStatus != null">#{expandStatus},</if>
|
|
|
|
|
+ <if test="description != null">#{description},</if>
|
|
|
|
|
+ <if test="created != null">#{created},</if>
|
|
|
<if test="createBy != null">#{createBy},</if>
|
|
<if test="createBy != null">#{createBy},</if>
|
|
|
<if test="createTime != null">#{createTime},</if>
|
|
<if test="createTime != null">#{createTime},</if>
|
|
|
<if test="updateBy != null">#{updateBy},</if>
|
|
<if test="updateBy != null">#{updateBy},</if>
|
|
@@ -83,7 +104,10 @@
|
|
|
<if test="spaceName != null">SPACE_NAME = #{spaceName},</if>
|
|
<if test="spaceName != null">SPACE_NAME = #{spaceName},</if>
|
|
|
<if test="currentCap != null">CURRENT_CAP = #{currentCap},</if>
|
|
<if test="currentCap != null">CURRENT_CAP = #{currentCap},</if>
|
|
|
<if test="expandCap != null">EXPAND_CAP = #{expandCap},</if>
|
|
<if test="expandCap != null">EXPAND_CAP = #{expandCap},</if>
|
|
|
- <if test="expandReson != null">EXPAND_RESON = #{expandReson},</if>
|
|
|
|
|
|
|
+ <if test="expandReason != null">EXPAND_REASON = #{expandReason},</if>
|
|
|
|
|
+ <if test="expandStatus != null">EXPAND_STATUS = #{expandStatus},</if>
|
|
|
|
|
+ <if test="description != null">DESCRIPTION = #{description},</if>
|
|
|
|
|
+ <if test="created != null">CREATED = #{created},</if>
|
|
|
<if test="createBy != null">CREATE_BY = #{createBy},</if>
|
|
<if test="createBy != null">CREATE_BY = #{createBy},</if>
|
|
|
<if test="createTime != null">CREATE_TIME = #{createTime},</if>
|
|
<if test="createTime != null">CREATE_TIME = #{createTime},</if>
|
|
|
<if test="updateBy != null">UPDATE_BY = #{updateBy},</if>
|
|
<if test="updateBy != null">UPDATE_BY = #{updateBy},</if>
|