|
|
@ -39,7 +39,7 @@ PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN" |
|
|
|
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.admin_name, d.admin_logo,d.data_type,d.begin_date,d.end_date,d.xzqh_id,d.xzqh_name |
|
|
|
d.admin_name, d.admin_logo,d.data_type,d.begin_date,d.end_date,d.xzqh_id,d.xzqh_name,d.unifiedSocialCreditCode |
|
|
|
from sys_dept d |
|
|
|
</sql> |
|
|
|
|
|
|
@ -125,6 +125,7 @@ PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN" |
|
|
|
<if test="adminName != null and adminName != ''">admin_name,</if> |
|
|
|
<if test="adminLogo != null and adminLogo != ''">admin_logo,</if> |
|
|
|
<if test="xzqhId != null and adminLogo != ''">xzqh_id,</if> |
|
|
|
<if test="unifiedSocialCreditCode!=null and unifiedSocialCreditCode!=''">unified_social_credit_code</if> |
|
|
|
create_time |
|
|
|
)values( |
|
|
|
<if test="id != null and id != ''">#{id},</if> |
|
|
@ -151,6 +152,7 @@ PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN" |
|
|
|
<if test="adminName != null and adminName != ''">#{adminName},</if> |
|
|
|
<if test="adminLogo != null and adminLogo != ''">#{adminLogo},</if> |
|
|
|
<if test="xzqhId != null and adminLogo != ''">#{xzqhId},</if> |
|
|
|
<if test="unifiedSocialCreditCode!=null and unifiedSocialCreditCode!=''">#{unifiedSocialCreditCode}</if> |
|
|
|
sysdate() |
|
|
|
) |
|
|
|
</insert> |
|
|
|