IGuestBiz.java 705 B

12345678910111213141516171819202122232425262728293031323334
  1. package net.mingsoft.tf.biz;
  2. import net.mingsoft.base.biz.IBaseBiz;
  3. import net.mingsoft.tf.entity.GuestEntity;
  4. /**
  5. * 游客业务
  6. *
  7. * @author 阿白
  8. * 创建日期:2025年10月23日 下午6:41:34<br/>
  9. * 历史修订:<br/>
  10. */
  11. public interface IGuestBiz extends IBaseBiz<GuestEntity> {
  12. /**
  13. * 保存游客
  14. * <p>
  15. * 如果已经存在,就查询
  16. */
  17. GuestEntity saveGuest(String openid);
  18. /**
  19. * 删除游客
  20. * <p>
  21. * 会修改邀请关联
  22. */
  23. void deleteGuest(String openid, String userId);
  24. /**
  25. * 修改游客
  26. * <p>
  27. * 可关联邀请
  28. */
  29. void updateGuest(String openid, String icon, String nickName, String code);
  30. }