|
@@ -4,8 +4,11 @@ import com.baomidou.mybatisplus.extension.service.impl.ServiceImpl;
|
|
|
import com.rongwe.zhsw.system.domain.SwBillManagementPaidDo;
|
|
|
import com.rongwei.zhsw.system.dao.SwBillManagementPaidDao;
|
|
|
import com.rongwei.zhsw.system.service.SwBillManagementPaidService;
|
|
|
+import org.springframework.beans.factory.annotation.Autowired;
|
|
|
import org.springframework.stereotype.Service;
|
|
|
|
|
|
+import java.util.List;
|
|
|
+
|
|
|
|
|
|
/**
|
|
|
* 账单管理(按年分表)(已缴,退款)(SwBillManagementPaid)表服务实现类
|
|
@@ -16,4 +19,12 @@ import org.springframework.stereotype.Service;
|
|
|
@Service
|
|
|
public class SwBillManagementPaidServiceImpl extends ServiceImpl<SwBillManagementPaidDao, SwBillManagementPaidDo> implements SwBillManagementPaidService {
|
|
|
|
|
|
+
|
|
|
+ @Autowired
|
|
|
+ SwBillManagementPaidDao swBillManagementPaidDao;
|
|
|
+
|
|
|
+ @Override
|
|
|
+ public void deleteByIds(List<String> ids) {
|
|
|
+ swBillManagementPaidDao.deleteByIds(ids);
|
|
|
+ }
|
|
|
}
|