| | |
| | | import java.util.Date;
|
| | | import java.util.List;
|
| | |
|
| | | import com.yeshi.fanli.entity.integral.IntegralDetail;
|
| | | import com.yeshi.fanli.vo.integral.IntegralDetailVO;
|
| | |
|
| | | public interface IntegralDetailService {
|
| | |
| | | * @param maxTime
|
| | | * @return
|
| | | */
|
| | | public List<IntegralDetailVO> listDetailForClient(Long uid, Long detailId, Date maxTime);
|
| | | public List<IntegralDetailVO> listDetailForClient(Long uid, Long detailId, Date maxTime, Integer type);
|
| | |
|
| | | /**
|
| | | * 明细统计
|
| | |
| | | * @param maxTime
|
| | | * @return
|
| | | */
|
| | | public long countDetailForClient(Long uid, Long detailId, Date maxTime);
|
| | | public long countDetailForClient(Long uid, Long detailId, Date maxTime, Integer type);
|
| | |
|
| | | |
| | | /**
|
| | | * |
| | | * @param record
|
| | | */
|
| | | public void insertSelective(IntegralDetail record);
|
| | |
|
| | | }
|