File name
Commit message
Commit date
File name
Commit message
Commit date
File name
Commit message
Commit date
File name
Commit message
Commit date
File name
Commit message
Commit date
File name
Commit message
Commit date
File name
Commit message
Commit date
package itn.com.cmm.service.impl;
import javax.annotation.Resource;
import org.springframework.stereotype.Service;
import itn.com.cmm.ReadVO;
import itn.com.cmm.service.ReadService;
@Service("readService")
public class ReadServiceImpl implements ReadService {
@Resource(name = "readDAO")
private ReadDAO readDAO;
@Override
public ReadVO selectReadYn(ReadVO readVO) throws Exception {
return readDAO.selectReadYn(readVO);
}
@Override
public void insertReadYn(ReadVO readVO) throws Exception {
readDAO.insertReadYn(readVO);
}
}