admin
2020-05-20 98b1a0affd69bbe63223c21fdd2c404e8bedfccb
fanli/src/main/java/com/yeshi/fanli/dao/mybatis/ExtractRecordMapper.java
@@ -1,26 +1,26 @@
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 deleteAll();
   int insert(ExtractRecord record);
   int insertSelective(ExtractRecord record);
   ExtractRecord selectByPrimaryKey(Long id);
   List<ExtractRecord> selectByUid(Long uid);
   List<ExtractRecord> selectByUidAndToday(Long uid);
   int updateByPrimaryKeySelective(ExtractRecord record);
   int updateByPrimaryKey(ExtractRecord record);
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 deleteAll();
   int insert(ExtractRecord record);
   int insertSelective(ExtractRecord record);
   ExtractRecord selectByPrimaryKey(Long id);
   List<ExtractRecord> selectByUid(Long uid);
   List<ExtractRecord> selectByUidAndToday(Long uid);
   int updateByPrimaryKeySelective(ExtractRecord record);
   int updateByPrimaryKey(ExtractRecord record);
}