| | |
| | | </if> |
| | | </where> |
| | | GROUP BY tdc.type_name |
| | | |
| | | |
| | | </select> |
| | | <select id="queryPage" resultType="com.ruoyi.system.vo.BasicDataConfigVO"> |
| | | SELECT tbdc.id,tbdc.type_name,tbdc.calculate_type,tbdc.status,tbdc2.basic_data_category_name AS |
| | |
| | | <where> |
| | | tbdc.del_flag = 0 AND tbdc2.del_flag = 0 |
| | | <if test="query.typeName != null and query.typeName !=''"> |
| | | AND tbdc.type_name LIKE CONCAT('%',#{typeName},'%') |
| | | AND tbdc.type_name LIKE CONCAT('%',#{query.typeName},'%') |
| | | </if> |
| | | <if test="query.status !=null"> |
| | | AND tbdc.status = #{query.status} |