| 123456789101112131415161718192021222324252627282930313233343536373839404142434445 |
- package net.mingsoft.tf.biz;
- import net.mingsoft.base.biz.IBaseBiz;
- import net.mingsoft.tf.entity.ExhibitorEntity;
- import java.util.List;
- /**
- * 展商业务
- *
- * @author 阿白
- * 创建日期:2025年10月23日 下午6:41:34<br/>
- * 历史修订:<br/>
- */
- public interface IExhibitorBiz extends IBaseBiz<ExhibitorEntity> {
- /**
- * 查到用户的展商邀请
- *
- * @param user 用户
- * @param exhibition 展会
- */
- ExhibitorEntity query(String user, String exhibition);
- /**
- * 查展位是否已经申请
- *
- * @param exhibition 展会
- * @param booth 展位
- */
- ExhibitorEntity queryByBooth(String exhibition, String booth);
- /**
- * 根据邀请码查展商
- *
- * @param invitationCode 邀请码
- */
- ExhibitorEntity queryByInvitationCode(String invitationCode);
- /**
- * 根据公司模糊搜索
- * <p>
- * 搜索用户ID和展会ID为空的
- */
- List<ExhibitorEntity> queryByName(String name);
- }
|