package kcc.xxx.service.impl; import javax.annotation.Resource; import org.springframework.stereotype.Service; import egovframework.rte.fdl.cmmn.EgovAbstractServiceImpl; import kcc.xxx.service.XxxService; /** * 평가정보 관리를 위한 서비스 구현 클래스 * @author 여현준 * @since 2021.08.03 * @version 1.0 * @see * *
 * << 개정이력(Modification Information) >>
 *
 *   수정일      수정자           수정내용
 *  -------    --------    ---------------------------
 *   2021.08.03  여현준          최초 생성
 *
 * 
*/ @Service("XxxService") public class XxxServiceImpl extends EgovAbstractServiceImpl implements XxxService { // XXX DAO @Resource(name = "XxxDAO") private XxxDAO xxxDAO; }