| 1234567891011121314151617181920212223242526272829303132 |
- package cn.com.goldenwater.dcproj.service.impl.meeting;
- import cn.com.goldenwater.dcproj.dao.AttMeetingEvalDao;
- import cn.com.goldenwater.dcproj.model.AttMeetingEval;
- import cn.com.goldenwater.dcproj.param.AttMeetingEvalParam;
- import cn.com.goldenwater.dcproj.service.AttMeetingEvalService;
- 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-7-9
- */
- @Service
- @Transactional(rollbackFor = Exception.class)
- public class AttMeetingEvalServiceImpl extends AbstractCrudService<AttMeetingEval, AttMeetingEvalParam> implements AttMeetingEvalService {
- @Autowired
- private AttMeetingEvalDao attMeetingEvalDao;
- public AttMeetingEvalServiceImpl(AttMeetingEvalDao attMeetingEvalDao) {
- super(attMeetingEvalDao);
- this.attMeetingEvalDao = attMeetingEvalDao;
- }
- }
|