| 1234567891011121314151617181920212223242526272829303132 |
- package cn.com.goldenwater.dcproj.service.impl.vill;
- import cn.com.goldenwater.dcproj.dao.AttEngOtheDao;
- import cn.com.goldenwater.dcproj.model.AttEngOthe;
- import cn.com.goldenwater.dcproj.param.AttEngOtheParam;
- import cn.com.goldenwater.dcproj.service.AttEngOtheService;
- 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 AttEngOtheServiceImpl extends AbstractCrudService<AttEngOthe, AttEngOtheParam> implements AttEngOtheService {
- @Autowired
- private AttEngOtheDao attEngOtheDao;
- public AttEngOtheServiceImpl(AttEngOtheDao attEngOtheDao) {
- super(attEngOtheDao);
- this.attEngOtheDao = attEngOtheDao;
- }
- }
|