| | |
| | | <result property="infophone" column="infoPhone" /> |
| | | <result property="deptid" column="deptid" /> |
| | | <result property="deptname" column="deptname" /> |
| | | <result property="leaderno" column="leaderno" /> |
| | | <result property="leadername" column="leadername" /> |
| | | <result property="businessarea" column="businessarea" /> |
| | | |
| | | </resultMap> |
| | | |
| | |
| | | <if test="city != null and city != ''"> and `base_organization`.`City` = #{city}</if> |
| | | <if test="deptid != null "> and deptid = #{deptid}</if> |
| | | <if test="deptname != null "> and deptname = #{deptname}</if> |
| | | <if test="leaderno != null "> and leaderno = #{leaderno}</if> |
| | | <if test="leadername != null "> and leadername = #{leadername}</if> |
| | | <if test="businessarea != null "> and businessarea = #{businessarea}</if> |
| | | </where> |
| | | |
| | | order by ReportTime desc |