package com.ekexiu.portal.dao; import java.sql.Connection; import java.sql.SQLException; import java.util.List; import org.jfw.apt.orm.annotation.dao.DAO; import org.jfw.apt.orm.annotation.dao.method.operator.Insert; import org.jfw.apt.orm.annotation.dao.method.operator.SelectList; import com.ekexiu.portal.po.OrgRetrieveImg; @DAO public abstract class OrgRetrieveImgDao { @Insert public abstract int insert(Connection con,OrgRetrieveImg orgRetrieveImg)throws SQLException; @SelectList public abstract List query(Connection con,String orgRetrieveId)throws SQLException; }