GZMachinesWeb/.svn/pristine/0f/0f23304c2f46ddada2a62c85bfd...

18 lines
489 B
Plaintext

package com.bonus.newInput.service;
import org.springframework.beans.factory.annotation.Autowired;
import org.springframework.stereotype.Service;
import com.bonus.newInput.beans.NewReportBean;
import com.bonus.newInput.dao.NewInputDao;
import com.bonus.newInput.dao.NewReportDao;
import com.bonus.sys.BaseServiceImp;
@Service("newReport")
public class NewReportServiceImp extends BaseServiceImp<NewReportBean> implements NewReportService{
@Autowired
private NewReportDao dao;
}