CmsGroupService.java 606 B

12345678910111213141516171819202122
  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);
  11. void close(Long groupId);
  12. void setAccount(GroupsTrips groupsTrips) throws Exception;
  13. void replaceTripsAccount(ReplaceTripsAccountReq req);
  14. void sendChangeAccountMsg(Long groupsId, Long goodsId, String account);
  15. }