Browse Source

1127

master
ruanqi 1 year ago
parent
commit
52f8faddab
  1. 3
      src/main/resources/mapper/base/PropertiesMapper.xml
  2. 3
      src/main/resources/mapper/sys/SysUserDao.xml

3
src/main/resources/mapper/base/PropertiesMapper.xml

@ -31,6 +31,9 @@
<if test="query.itemDesc != null and query.itemDesc != ''">
AND ppi.ItemDesc LIKE '%' + #{query.itemDesc} + '%'
</if>
<if test="query.valueType != null and query.valueType != ''">
AND ppi.valueType LIKE '%' + #{query.valueType} + '%'
</if>
</where>
order by ppi.ItemType, ppi.ItemNo
</select>

3
src/main/resources/mapper/sys/SysUserDao.xml

@ -67,7 +67,8 @@
a.language_default,
b.bu_desc,
c.department_name,
d.post_name
d.post_name,
a.domain_Control_Account
from sys_user a
left join dbo.BU b on a.bu_no=b.bu_no and a.site = b.site
left join dbo.department c on a.department_no=c.department_no and a.site = c.site

Loading…
Cancel
Save