| | |
| | |
|
| | | import java.math.BigDecimal;
|
| | |
|
| | | import org.springframework.web.multipart.MultipartFile;
|
| | |
|
| | | import com.yeshi.fanli.entity.bus.user.PreviewInfo;
|
| | | import com.yeshi.fanli.entity.bus.user.PreviewInfo.PreviewEnum;
|
| | | import com.yeshi.fanli.exception.user.PreviewInfoException;
|
| | |
| | | * @param type
|
| | | * @param content
|
| | | */
|
| | | public void save(Long uid, PreviewEnum type, String content);
|
| | | public void save(Long createUid, Long preUid, PreviewEnum type, String content);
|
| | |
|
| | | /**
|
| | | * 根据用户+类型查询
|
| | |
| | | * @param money
|
| | | * @throws PreviewInfoException
|
| | | */
|
| | | public void saveExtractRecord(Long uid, String time, BigDecimal money) throws PreviewInfoException;
|
| | | public void saveExtractRecord(Long uid, String dayTime, BigDecimal money) throws PreviewInfoException;
|
| | |
|
| | | /**
|
| | | * 删除提现记录
|
| | |
| | | * @param file
|
| | | * @throws PreviewInfoException
|
| | | */
|
| | | public void saveMineInfo(MineInfoVO infoVO, MultipartFile file) throws Exception;
|
| | | public void saveMineInfo(MineInfoVO infoVO) throws PreviewInfoException;
|
| | |
|
| | | /**
|
| | | * 保存到账信息
|
| | |
| | | * @param orderNo
|
| | | * @throws PreviewInfoException
|
| | | */
|
| | | public String saveMoneyArrival(Long uid, BigDecimal money, String time, String orderNo) throws PreviewInfoException;
|
| | | public String saveMoneyArrival(Long uid, BigDecimal money, String time, String orderNo, String platform) throws PreviewInfoException, Exception;
|
| | |
|
| | | public void saveMoneyInfo(Long uid, MoneyStatisticVO vo) throws PreviewInfoException;
|
| | |
|
| | | |
| | | /**
|
| | | * 查询Redis缓存信息
|
| | | * @param uid
|
| | | * @param previewEnum
|
| | | * @return
|
| | | */
|
| | | public String getRedisContent(Long uid, PreviewEnum previewEnum);
|
| | |
|
| | | /**
|
| | | * 预览提现记录
|
| | | * @param uid
|
| | | * @throws PreviewInfoException
|
| | | */
|
| | | public void previewExtractRecord(Long uid) throws PreviewInfoException;
|
| | |
|
| | | }
|