admin
2020-04-10 1193f141ae9499d2446aa99e9c4fdc75e7552b7d
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);
}