| | |
| | | //查询资质明细列表 |
| | | @Override |
| | | public IPage<Certification> getCertificationDetail(Page page, Certification certification) { |
| | | return certificationMapper.getCertificationDetail(page, QueryWrappers.queryWrappers(certification)); |
| | | return certificationMapper.getCertificationDetail(page, certification); |
| | | } |
| | | |
| | | //添加资质明细列表 |
| | | @Override |
| | | public int addCertificationDetail(Certification certification) { |
| | | if(null != certification.getId()){ |
| | | return certificationMapper.updateById(certification); |
| | | }else { |
| | | return certificationMapper.insert(certification); |
| | | } |
| | | return certificationMapper.insert(certification); |
| | | } |
| | | |
| | | //删除资质明细列表 |