| 1234567891011121314151617181920212223242526272829303132 |
- package cn.com.goldenwater.dcproj.service.impl.rsml;
- import cn.com.goldenwater.dcproj.dao.BisInspRsmlRgstrPresDao;
- import cn.com.goldenwater.dcproj.model.BisInspRsmlRgstrPres;
- import cn.com.goldenwater.dcproj.param.BisInspRsmlRgstrPresParam;
- import cn.com.goldenwater.dcproj.service.BisInspRsmlRgstrPresService;
- import cn.com.goldenwater.core.service.AbstractCrudService;
- import com.github.pagehelper.PageHelper;
- import org.springframework.beans.factory.annotation.Autowired;
- import org.springframework.stereotype.Service;
- import org.springframework.transaction.annotation.Transactional;
- import java.util.List;
- /**
- * @author lune
- * @date 2020-3-9
- */
- @Service
- @Transactional
- public class BisInspRsmlRgstrPresServiceImpl extends AbstractCrudService<BisInspRsmlRgstrPres, BisInspRsmlRgstrPresParam> implements BisInspRsmlRgstrPresService {
- @Autowired
- private BisInspRsmlRgstrPresDao bisInspRsmlRgstrPresDao;
- public BisInspRsmlRgstrPresServiceImpl(BisInspRsmlRgstrPresDao bisInspRsmlRgstrPresDao) {
- super(bisInspRsmlRgstrPresDao);
- this.bisInspRsmlRgstrPresDao = bisInspRsmlRgstrPresDao;
- }
- }
|