7504c2df4b563e2813c2d61fc31747c7389a2c51.svn-base 692 B

12345678910111213141516171819
  1. package cn.com.goldenwater.dcproj.dao;
  2. import cn.com.goldenwater.core.persistence.CrudDao;
  3. import cn.com.goldenwater.dcproj.model.AttGnrlBase;
  4. import cn.com.goldenwater.dcproj.param.AttGnrlBaseParam;
  5. import cn.com.goldenwater.dcproj.vo.JxEcharTotal;
  6. import cn.com.goldenwater.dcproj.vo.JxMapVo;
  7. import org.apache.ibatis.annotations.Param;
  8. import org.springframework.stereotype.Repository;
  9. import java.util.List;
  10. @Repository
  11. public interface AttGnrlBaseDao extends CrudDao<AttGnrlBase, AttGnrlBaseParam> {
  12. public List<JxEcharTotal> getgetzichaTotal(@Param("ptype") String ptype);
  13. public List<JxMapVo> getgetzichaDesc(@Param("adCode")String adCode, @Param("ptype") String ptype);
  14. }