package com.xzx.gc.order.mapper; import com.xzx.gc.entity.JhyInfo; import com.xzx.gc.util.GcMapper; import org.apache.ibatis.annotations.Param; import java.util.List; public interface JhyInfoMapper extends GcMapper { JhyInfo selectJhyInfoByUserId(@Param("userId") String userId); List selectJhyInfoListInAddressRange(@Param("addressId") Long addressId); }