package cn.com.goldenwater.dcproj.dao; import cn.com.goldenwater.dcproj.model.BisInspPlanMonthArea; import cn.com.goldenwater.dcproj.param.BisInspPlanMonthAreaParam; import cn.com.goldenwater.core.persistence.CrudDao; import org.apache.ibatis.annotations.Delete; import org.apache.ibatis.annotations.Param; import org.apache.ibatis.annotations.Update; import org.springframework.stereotype.Repository; import java.util.List; @Repository public interface BisInspPlanMonthAreaDao extends CrudDao { @Update("UPDATE BIS_INSP_PLAN_MONTH_AREA SET DATA_STAT = '9' WHERE PLAN_MONTH = #{planMonth}") void deleteByPlanMonth(@Param("planMonth") String planMonth); //void insertByplanMonth(@Param("planMonth") String planMonth, @Param("adCode") List adCode); }