/** * CCustLinkmanDao.java 2010/02/08 */ package com.ycsoft.business.dao.core.cust; import org.springframework.stereotype.Component; import com.ycsoft.beans.core.cust.CCustLinkman; import com.ycsoft.daos.abstracts.BaseEntityDao; /** * CCustLinkmanDao -> C_CUST_LINKMAN table's operator */ @Component public class CCustLinkmanDao extends BaseEntityDao<CCustLinkman> { /** * */ private static final long serialVersionUID = 1222202322426054026L; /** * default empty constructor */ public CCustLinkmanDao() {} }