package com.xzx.gc.order.mapper; import com.xzx.gc.entity.CityPartner; import com.xzx.gc.entity.CoreUser; import com.xzx.gc.model.admin.*; import com.xzx.gc.util.GcMapper; import org.apache.ibatis.annotations.Param; import java.util.List; import java.util.Map; public interface CityPartnerMapper extends GcMapper { CityPartner queryEntityByUserIds(String userId); CityPartner queryPartnerById(Long id); CityPartner queryPartnerKeyByOrder(String orderId); String queryAccountByAdminId(); UserModel queryUserModelbyPartnerId(@Param("partnerId") List partnerId, @Param("userType") String userType, @Param("userId") String userId, @Param("orderId") String orderId); String queryAccountByPartnerId(String userId); CityPartner queryPartnerByOther(String receiver); AreaModel queryAreaLongiLati(AreaModel model); void updateAccountPartner(UserAccountModel accountModel); int addPayInfo1(PayInfoModel model); String querySidByPid(@Param("partnerId") String partnerId, @Param("serviceType") String serviceType); List queryTownIdsByPartnerId(String partnerId); String querySidByPartnerId(@Param("partnerId") String partnerId, @Param("type") String type); String queryOrderById(@Param("orderId") String orderId, @Param("userId") String userId, @Param("startTime") String startTime, @Param("endTime") String endTime); List queryOrderByIds(@Param("userId") String userId, @Param("startTime") String startTime, @Param("endTime") String endTime); int deleteUserByPartnerId(String id); void deleteAccount(String accountId); List> queryOrderByHsy(XzxCityPartnerModel model); List queryPackageIdList(String partnerId); String queryPidByTownId(String townId); }