| 1234567891011121314151617181920212223242526272829303132 |
- package cn.com.goldenwater.dcproj.service.impl.vill;
- import cn.com.goldenwater.dcproj.dao.AttEngHystDao;
- import cn.com.goldenwater.dcproj.model.AttEngHyst;
- import cn.com.goldenwater.dcproj.param.AttEngHystParam;
- import cn.com.goldenwater.dcproj.service.AttEngHystService;
- 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-18
- */
- @Service
- @Transactional(rollbackFor = Exception.class)
- public class AttEngHystServiceImpl extends AbstractCrudService<AttEngHyst, AttEngHystParam> implements AttEngHystService {
- @Autowired
- private AttEngHystDao attEngHystDao;
- public AttEngHystServiceImpl(AttEngHystDao attEngHystDao) {
- super(attEngHystDao);
- this.attEngHystDao = attEngHystDao;
- }
- }
|