admin
2019-12-28 64a8f7a3be0a5584fe2164a2474b189c79cfab5c
fanli/src/main/java/com/yeshi/fanli/dao/mybatis/ExtractRecordMapper.java
@@ -1,24 +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 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);
}