package com.yeshi.fanli.dao.mybatis; import java.util.List; import com.yeshi.fanli.entity.bus.user.ExtractRecord; public interface ExtractRecordMapper { int deleteByPrimaryKey(Long id); int insert(ExtractRecord record); int insertSelective(ExtractRecord record); ExtractRecord selectByPrimaryKey(Long id); List selectByUid(Long uid); List selectByUidAndToday(Long uid); int updateByPrimaryKeySelective(ExtractRecord record); int updateByPrimaryKey(ExtractRecord record); }