| | |
| | | bd.dict_value as categoryName, |
| | | bd1.dict_value as statusName |
| | | from blade_oss bo |
| | | left join blade_dict bd on bd.dict_key = bo.category and bd.code = 'oss' and bd.is_deleted = 0 |
| | | left join blade_dict bd1 on bd1.dict_key = bo.status and bd1.code = 'yes_no' and bd1.is_deleted = 0 |
| | | left join blade_dict bd on bd.dict_key = bo.category::VARCHAR and bd.code = 'oss' and bd.is_deleted = 0 |
| | | left join blade_dict bd1 on bd1.dict_key = bo.status::VARCHAR and bd1.code = 'yes_no' and bd1.is_deleted = 0 |
| | | where bo.is_deleted = 0 |
| | | <if test="oss.name!=null and oss.name!=''"> |
| | | and bo.name like concat('%',#{oss.name},'%') |