|
|
@ -7,6 +7,8 @@ import com.glxp.udi.admin.res.info.PlatformLinkResponse;
|
|
|
|
import org.apache.ibatis.annotations.Mapper;
|
|
|
|
import org.apache.ibatis.annotations.Mapper;
|
|
|
|
import org.apache.ibatis.annotations.Param;
|
|
|
|
import org.apache.ibatis.annotations.Param;
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
import java.util.List;
|
|
|
|
|
|
|
|
|
|
|
|
@Mapper
|
|
|
|
@Mapper
|
|
|
|
public interface UnitMaintainPlatformDao extends BaseMapper<UnitMaintainPlatform> {
|
|
|
|
public interface UnitMaintainPlatformDao extends BaseMapper<UnitMaintainPlatform> {
|
|
|
|
|
|
|
|
|
|
|
@ -19,4 +21,12 @@ public interface UnitMaintainPlatformDao extends BaseMapper<UnitMaintainPlatform
|
|
|
|
* @return
|
|
|
|
* @return
|
|
|
|
*/
|
|
|
|
*/
|
|
|
|
IPage<PlatformLinkResponse> getLinkPlatformList(IPage<PlatformLinkResponse> page, @Param("customerId") String customerId, @Param("key") String key);
|
|
|
|
IPage<PlatformLinkResponse> getLinkPlatformList(IPage<PlatformLinkResponse> page, @Param("customerId") String customerId, @Param("key") String key);
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
|
|
|
* 根据客户ID查询关联数据
|
|
|
|
|
|
|
|
*
|
|
|
|
|
|
|
|
* @param customerId
|
|
|
|
|
|
|
|
* @return
|
|
|
|
|
|
|
|
*/
|
|
|
|
|
|
|
|
List<UnitMaintainPlatform> selectByCustomerId(@Param("customerId") Long customerId);
|
|
|
|
}
|
|
|
|
}
|