package cn.com.goldenwater.dcproj.dao; import cn.com.goldenwater.core.persistence.CrudDao; import cn.com.goldenwater.dcproj.model.AttGnrlBase; import cn.com.goldenwater.dcproj.param.AttGnrlBaseParam; import cn.com.goldenwater.dcproj.vo.JxEcharTotal; import cn.com.goldenwater.dcproj.vo.JxMapVo; import org.apache.ibatis.annotations.Param; import org.springframework.stereotype.Repository; import java.util.List; @Repository public interface AttGnrlBaseDao extends CrudDao { public List getgetzichaTotal(@Param("ptype") String ptype); public List getgetzichaDesc(@Param("adCode")String adCode, @Param("ptype") String ptype); }