|
|
@ -21,7 +21,6 @@ |
|
|
|
<result property="createTime" column="create_time"/> |
|
|
|
<result property="updateUid" column="update_uid"/> |
|
|
|
<result property="updateTime" column="update_time"/> |
|
|
|
<result property="name" column="name"/> |
|
|
|
<result property="pcLogo" column="pc_logo"/> |
|
|
|
<result property="pcBackground" column="pc_background"/> |
|
|
|
<result property="adminName" column="admin_name"/> |
|
|
@ -38,7 +37,7 @@ |
|
|
|
<sql id="selectDeptVo"> |
|
|
|
select d.id,d.ip_start,d.ip_end,d.is_download,d.is_comment, d.parent_id, d.ancestors, |
|
|
|
d.dept_name, d.order_num, d.leader, d.phone, d.email, d.status,d.tag, |
|
|
|
d.del_flag, d.create_uid, d.create_time, d.name, d.pc_logo, d.pc_background, |
|
|
|
d.del_flag, d.create_uid, d.create_time, d.pc_logo, d.pc_background, |
|
|
|
d.admin_name, d.admin_logo,d.data_type,d.begin_date,d.end_date,d.xzqh_id, d.xzqh_name |
|
|
|
from sys_dept d |
|
|
|
</sql> |
|
|
@ -120,7 +119,6 @@ |
|
|
|
<if test="status != null">status,</if> |
|
|
|
<if test="tag != null">tag,</if> |
|
|
|
<if test="createUid != null and createUid != ''">create_uid,</if> |
|
|
|
<if test="name != null and name != ''">name,</if> |
|
|
|
<if test="pcLogo != null and pcLogo != ''">pc_logo,</if> |
|
|
|
<if test="pcBackground != null and pcBackground != ''">pc_background,</if> |
|
|
|
<if test="adminName != null and adminName != ''">admin_name,</if> |
|
|
@ -146,7 +144,6 @@ |
|
|
|
<if test="status != null">#{status},</if> |
|
|
|
<if test="tag != null">#{tag},</if> |
|
|
|
<if test="createUid != null and createUid != ''">#{createUid},</if> |
|
|
|
<if test="name != null and name != ''">#{name},</if> |
|
|
|
<if test="pcLogo != null and pcLogo != ''">#{pcLogo},</if> |
|
|
|
<if test="pcBackground != null and pcBackground != ''">#{pcBackground},</if> |
|
|
|
<if test="adminName != null and adminName != ''">#{adminName},</if> |
|
|
@ -173,7 +170,6 @@ |
|
|
|
<if test="status != null and status != ''">status = #{status},</if> |
|
|
|
<if test="tag != null and tag != ''">tag = #{tag},</if> |
|
|
|
<if test="updateUid != null and updateUid != ''">update_uid = #{updateUid},</if> |
|
|
|
<if test="name != null and name != ''">name = #{name},</if> |
|
|
|
<if test="pcLogo != null and pcLogo != ''">pc_logo = #{pcLogo},</if> |
|
|
|
<if test="pcBackground != null and pcBackground != ''">pc_background = #{pcBackground},</if> |
|
|
|
<if test="adminName != null and adminName != ''">admin_name = #{adminName},</if> |
|
|
|