CmsGroupService.java 685 B

123456789101112131415161718192021222324
  1. package com.cyksj.service.mange;
  2. import com.baomidou.mybatisplus.extension.service.IService;
  3. import com.cyksj.model.entity.GroupsTrips;
  4. import com.cyksj.model.request.ReplaceTripsAccountReq;
  5. /**
  6. * @author chan
  7. * @date 2022/9/27 6:27 PM
  8. */
  9. public interface CmsGroupService extends IService<GroupsTrips> {
  10. GroupsTrips issuance(GroupsTrips groups, String verifyCodes, Boolean isReover);
  11. void close(Long groupId);
  12. void setAccount(GroupsTrips groupsTrips) throws Exception;
  13. void replaceTripsAccount(ReplaceTripsAccountReq req);
  14. Integer getAvailableRelation(Long goodsId, Long skuId);
  15. void sendChangeAccountMsg(Long groupsId, Long goodsId, String account);
  16. }