| 1234567891011121314151617181920212223242526272829303132 |
- package cn.com.goldenwater.dcproj.service.impl.system;
- import cn.com.goldenwater.dcproj.dao.RelPblmPblmsDao;
- import cn.com.goldenwater.dcproj.model.RelPblmPblms;
- import cn.com.goldenwater.dcproj.param.RelPblmPblmsParam;
- import cn.com.goldenwater.dcproj.service.RelPblmPblmsService;
- 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 2019-2-19
- */
- @Service
- @Transactional
- public class RelPblmPblmsServiceImpl extends AbstractCrudService<RelPblmPblms, RelPblmPblmsParam> implements RelPblmPblmsService {
- @Autowired
- private RelPblmPblmsDao relPblmPblmsDao;
- public RelPblmPblmsServiceImpl(RelPblmPblmsDao relPblmPblmsDao) {
- super(relPblmPblmsDao);
- this.relPblmPblmsDao = relPblmPblmsDao;
- }
- }
|