package com.yeshi.makemoney.app.service.inter.goldcorn;
|
|
import java.lang.Exception;
|
import javax.annotation.Resource;
|
import java.util.Date;
|
|
import com.yeshi.makemoney.app.exception.goldcorn.GoldCornGetRecordException;
|
import org.yeshi.utils.bean.BeanUtil;
|
|
import java.util.List;
|
|
import com.yeshi.makemoney.app.entity.goldcorn.GoldCornGetRecord;
|
import com.yeshi.makemoney.app.service.inter.goldcorn.GoldCornGetRecordService;
|
import com.yeshi.makemoney.app.service.query.goldcorn.GoldCornGetRecordQuery;
|
|
|
public interface GoldCornGetRecordService {
|
|
/**
|
* 获取列表
|
*
|
* @param goldCornGetRecordQuery
|
* @param page
|
* @param pageSize
|
* @return
|
*/
|
public List<GoldCornGetRecord> list(GoldCornGetRecordQuery goldCornGetRecordQuery, int page, int pageSize);
|
|
/**
|
*
|
*/
|
public long count(GoldCornGetRecordQuery goldCornGetRecordQuery);
|
|
/**
|
*
|
*/
|
public GoldCornGetRecord get(String id);
|
|
/**
|
*
|
*/
|
public void add(GoldCornGetRecord goldCornGetRecord) throws GoldCornGetRecordException;
|
|
/**
|
*
|
*/
|
public void update(GoldCornGetRecord goldCornGetRecord);
|
|
|
public Long getGoldCornByDay(Long uid, String day);
|
|
|
/**
|
* @return java.util.List<java.lang.Long>
|
* @author hxh
|
* @description 根据日期获取用户ID集合
|
* @date 11:18 2022/4/7
|
* @param: day
|
**/
|
public List<Long> getUidsByDay(String day, int page, int pageSize);
|
|
|
public long countUidsByDay(String day);
|
|
|
}
|