Browse Source

feat: [系统管理] [模板管理] 列表增加显示字段

master
memorylkf 1 week ago
parent
commit
49053910fa
1 changed files with 1 additions and 1 deletions
  1. +1
    -1
      hxhq-modules/hxhq-system/src/main/resources/mapper/business/TemplateMapper.xml

+ 1
- 1
hxhq-modules/hxhq-system/src/main/resources/mapper/business/TemplateMapper.xml View File

@ -4,7 +4,7 @@
"http://mybatis.org/dtd/mybatis-3-mapper.dtd"> "http://mybatis.org/dtd/mybatis-3-mapper.dtd">
<mapper namespace="com.hxhq.business.mapper.TemplateMapper"> <mapper namespace="com.hxhq.business.mapper.TemplateMapper">
<select id="queryList"> <select id="queryList">
SELECT t.`id`,t.`sn`,t.`name`,t.`dept_id`,t.`status`,d.`dept_name`
SELECT t.`id`,t.`sn`,t.`name`,t.`dept_id`,t.`status`,t.`need_pre`,t.`type`,d.`dept_name`
FROM `t_template` t FROM `t_template` t
LEFT JOIN `sys_dept` d ON t.`dept_id`=d.`dept_id` LEFT JOIN `sys_dept` d ON t.`dept_id`=d.`dept_id`
<if test="ew.sqlSegment != '' and ew.sqlSegment != null"> <if test="ew.sqlSegment != '' and ew.sqlSegment != null">

Loading…
Cancel
Save