package cn.com.goldenwater.dcproj.dao; import cn.com.goldenwater.core.persistence.CrudDao; import cn.com.goldenwater.dcproj.model.ChkSafeProdLedger; import org.apache.ibatis.annotations.Param; import org.springframework.stereotype.Repository; import java.util.Date; import java.util.List; import java.util.Map; @Repository public interface ChkSafeProdLedgerDao extends CrudDao { int deleteByPrimaryKey(String id); int insert(ChkSafeProdLedger record); int insertSelective(ChkSafeProdLedger record); ChkSafeProdLedger selectByPrimaryKey(String id); int updateByPrimaryKeySelective(ChkSafeProdLedger record); int updateByPrimaryKey(ChkSafeProdLedger record); int batchReportByIds(@Param("ids") String[] ids , @Param("uptm") Date uptm); int insertBatchFile(List safeProdLedgerList); List> summaryList(ChkSafeProdLedger chkSafeProdLedger); }