| | |
| | | package com.zbooksoft.gdmis.service.impl; |
| | | |
| | | import com.baomidou.mybatisplus.core.conditions.query.QueryWrapper; |
| | | import com.baomidou.mybatisplus.extension.service.impl.ServiceImpl; |
| | | import com.zbooksoft.gdmis.dao.CatSmxxMapper; |
| | | import com.zbooksoft.gdmis.data.entity.CatSmxx; |
| | |
| | | **/ |
| | | @Service |
| | | public class CatSmxxServiceImpl extends ServiceImpl<CatSmxxMapper, CatSmxx> implements CatSmxxService { |
| | | @Override |
| | | public boolean deleteCatSmxxByAjId(Long ajId) { |
| | | QueryWrapper<CatSmxx> catSmxxQueryWrapper = new QueryWrapper<>(); |
| | | catSmxxQueryWrapper.eq("aj_id", ajId); |
| | | return this.remove(catSmxxQueryWrapper); |
| | | } |
| | | } |