package cn.com.goldenwater.dcproj.dao; import cn.com.goldenwater.dcproj.model.AttPersRs; import cn.com.goldenwater.dcproj.model.AttRsBase; import cn.com.goldenwater.dcproj.model.AttWuntBase; import cn.com.goldenwater.dcproj.param.AttWuntBaseParam; import cn.com.goldenwater.core.persistence.CrudDao; import cn.com.goldenwater.dcproj.param.PersObjParam; import org.apache.ibatis.annotations.Param; import org.springframework.stereotype.Repository; import java.util.List; @Repository public interface AttWuntBaseDao extends CrudDao { List getObjByPersId(PersObjParam persObjParam); List getObjListNotInspGroupId(@Param("inspGroupId") String inspGroupId, @Param("objType") String objType, @Param("adName") String adName, @Param("adCode") String adCode, @Param("province") String province); }