接口 VisitRegisterGroupDubboService
-
public interface VisitRegisterGroupDubboService- 从以下版本开始:
- 2023/11/16
- 作者:
- liutao
-
-
方法概要
所有方法 实例方法 抽象方法 修饰符和类型 方法 说明 TeamBusinessDTOfindByName(String name)根据名称查询参观团TeamBusinessStaffDTOgetById(Integer id)根据id查询参观团成员TeamBusinessStaffDTOgetByMobile(String mobile)根据手机号查询参观团成员List<TeamBusinessStaffDTO>getByTeamBusinessId(Integer teamBusinessId)根据参观团id查询参观团成员TeamBusinessDTOgetTeamBusinessById(Integer teamBusinessId)根据id查询参观团voidremoveById(Integer id)根据id删除参观团成员voidremoveTeamBusiness(Integer teamBusinessId)删除参观团IntegersaveTeamBusiness(TeamBusinessDTO teamBusinessDTO)保存参观团IntegersaveTeamBusinessMember(TeamBusinessStaffDTO teamBusinessStaffDTO)保存参观团成员voidupdateMaster(Integer teamBusinessStaffId, Integer teamBusinessId)更新参观团主联系人voidupdateSitStatusAndTime(Long ticketId, String cardNo, String sitTime)更新到场状态和到场时间
-
-
-
方法详细资料
-
saveTeamBusiness
Integer saveTeamBusiness(TeamBusinessDTO teamBusinessDTO)
保存参观团- 参数:
teamBusinessDTO-TeamBusinessDTO- 返回:
- 参观团id
-
removeTeamBusiness
void removeTeamBusiness(Integer teamBusinessId)
删除参观团- 参数:
teamBusinessId- 参观团id
-
findByName
TeamBusinessDTO findByName(String name)
根据名称查询参观团- 参数:
name- 名称- 返回:
TeamBusinessDTO
-
getTeamBusinessById
TeamBusinessDTO getTeamBusinessById(Integer teamBusinessId)
根据id查询参观团- 参数:
teamBusinessId- 参观团id- 返回:
TeamBusinessDTO
-
saveTeamBusinessMember
Integer saveTeamBusinessMember(TeamBusinessStaffDTO teamBusinessStaffDTO)
保存参观团成员- 参数:
teamBusinessStaffDTO-TeamBusinessStaffDTO- 返回:
- id
-
getByMobile
TeamBusinessStaffDTO getByMobile(String mobile)
根据手机号查询参观团成员- 参数:
mobile- 手机号- 返回:
TeamBusinessStaffDTO
-
getByTeamBusinessId
List<TeamBusinessStaffDTO> getByTeamBusinessId(Integer teamBusinessId)
根据参观团id查询参观团成员- 参数:
teamBusinessId- 参观团id- 返回:
TeamBusinessStaffDTO
-
updateMaster
void updateMaster(Integer teamBusinessStaffId, Integer teamBusinessId)
更新参观团主联系人- 参数:
teamBusinessStaffId- 参观团成员idteamBusinessId- 参观团id
-
getById
TeamBusinessStaffDTO getById(Integer id)
根据id查询参观团成员- 参数:
id- id- 返回:
TeamBusinessStaffDTO
-
removeById
void removeById(Integer id)
根据id删除参观团成员- 参数:
id- id
-
-