ILuckyPointService.java 1.1 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546
  1. package com.tzy.app.service;
  2. import com.tzy.app.domain.AppActManage;
  3. import com.tzy.app.domain.AppActPrize;
  4. import com.tzy.app.dto.AppActivityInfoDto;
  5. import com.tzy.app.dto.LuckyPointDrawListDto;
  6. import com.tzy.app.dto.LuckyPointJoinRecordDto;
  7. import com.tzy.app.dto.LuckyPointPrizeDto;
  8. import com.tzy.common.core.domain.AjaxResult;
  9. import java.util.List;
  10. public interface ILuckyPointService {
  11. int addAct(AppActManage appActManage);
  12. int editAct(AppActManage appActManage);
  13. int updateActStatus(Integer actId, Integer status);
  14. int addPrize(AppActPrize appActPrize);
  15. int editPrize(AppActPrize appActPrize);
  16. List<LuckyPointJoinRecordDto> findJoinRecords(Long actId);
  17. List<LuckyPointDrawListDto> findDrawLists(Long actId);
  18. int copyPrize(Long actId);
  19. List<LuckyPointPrizeDto> findLuckyPointPrizes(Long actId);
  20. int updateActAuditing(Integer id, Integer status);
  21. int updatePrizeStatus(AppActPrize appActPrize);
  22. void drawNotice(Long id);
  23. int refundPointByRecord(Long recordId);
  24. int copyActNew(Long id);
  25. List<AppActivityInfoDto> findCopyActs();
  26. void refundPointById(Long id);
  27. }