| ¶Ô±ÈÐÂÎļþ | 
|  |  |  | 
|---|
|  |  |  | package com.doumee.service.business; | 
|---|
|  |  |  |  | 
|---|
|  |  |  | import com.doumee.core.model.PageData; | 
|---|
|  |  |  | import com.doumee.core.model.PageWrap; | 
|---|
|  |  |  | import com.doumee.dao.business.model.PlatformQueue; | 
|---|
|  |  |  | import java.util.List; | 
|---|
|  |  |  |  | 
|---|
|  |  |  | /** | 
|---|
|  |  |  | * æå°_å«å·æéä¿¡æ¯è¡¨Serviceå®ä¹ | 
|---|
|  |  |  | * @author æ±è¹è¹ | 
|---|
|  |  |  | * @date 2024/06/28 10:03 | 
|---|
|  |  |  | */ | 
|---|
|  |  |  | public interface PlatformQueueService { | 
|---|
|  |  |  |  | 
|---|
|  |  |  | /** | 
|---|
|  |  |  | * å建 | 
|---|
|  |  |  | * | 
|---|
|  |  |  | * @param platformQueue å®ä½å¯¹è±¡ | 
|---|
|  |  |  | * @return Integer | 
|---|
|  |  |  | */ | 
|---|
|  |  |  | Integer create(PlatformQueue platformQueue); | 
|---|
|  |  |  |  | 
|---|
|  |  |  | /** | 
|---|
|  |  |  | * ä¸»é®å é¤ | 
|---|
|  |  |  | * | 
|---|
|  |  |  | * @param id ä¸»é® | 
|---|
|  |  |  | */ | 
|---|
|  |  |  | void deleteById(Integer id); | 
|---|
|  |  |  |  | 
|---|
|  |  |  | /** | 
|---|
|  |  |  | * å é¤ | 
|---|
|  |  |  | * | 
|---|
|  |  |  | * @param platformQueue å®ä½å¯¹è±¡ | 
|---|
|  |  |  | */ | 
|---|
|  |  |  | void delete(PlatformQueue platformQueue); | 
|---|
|  |  |  |  | 
|---|
|  |  |  | /** | 
|---|
|  |  |  | * æ¹é主é®å é¤ | 
|---|
|  |  |  | * | 
|---|
|  |  |  | * @param ids ä¸»é®é | 
|---|
|  |  |  | */ | 
|---|
|  |  |  | void deleteByIdInBatch(List<Integer> ids); | 
|---|
|  |  |  |  | 
|---|
|  |  |  | /** | 
|---|
|  |  |  | * ä¸»é®æ´æ° | 
|---|
|  |  |  | * | 
|---|
|  |  |  | * @param platformQueue å®ä½å¯¹è±¡ | 
|---|
|  |  |  | */ | 
|---|
|  |  |  | void updateById(PlatformQueue platformQueue); | 
|---|
|  |  |  |  | 
|---|
|  |  |  | /** | 
|---|
|  |  |  | * æ¹é䏻鮿´æ° | 
|---|
|  |  |  | * | 
|---|
|  |  |  | * @param platformQueues å®ä½é | 
|---|
|  |  |  | */ | 
|---|
|  |  |  | void updateByIdInBatch(List<PlatformQueue> platformQueues); | 
|---|
|  |  |  |  | 
|---|
|  |  |  | /** | 
|---|
|  |  |  | * ä¸»é®æ¥è¯¢ | 
|---|
|  |  |  | * | 
|---|
|  |  |  | * @param id ä¸»é® | 
|---|
|  |  |  | * @return PlatformQueue | 
|---|
|  |  |  | */ | 
|---|
|  |  |  | PlatformQueue findById(Integer id); | 
|---|
|  |  |  |  | 
|---|
|  |  |  | /** | 
|---|
|  |  |  | * æ¡ä»¶æ¥è¯¢åæ¡è®°å½ | 
|---|
|  |  |  | * | 
|---|
|  |  |  | * @param platformQueue å®ä½å¯¹è±¡ | 
|---|
|  |  |  | * @return PlatformQueue | 
|---|
|  |  |  | */ | 
|---|
|  |  |  | PlatformQueue findOne(PlatformQueue platformQueue); | 
|---|
|  |  |  |  | 
|---|
|  |  |  | /** | 
|---|
|  |  |  | * æ¡ä»¶æ¥è¯¢ | 
|---|
|  |  |  | * | 
|---|
|  |  |  | * @param platformQueue å®ä½å¯¹è±¡ | 
|---|
|  |  |  | * @return List<PlatformQueue> | 
|---|
|  |  |  | */ | 
|---|
|  |  |  | List<PlatformQueue> findList(PlatformQueue platformQueue); | 
|---|
|  |  |  |  | 
|---|
|  |  |  | /** | 
|---|
|  |  |  | * å页æ¥è¯¢ | 
|---|
|  |  |  | * | 
|---|
|  |  |  | * @param pageWrap å页对象 | 
|---|
|  |  |  | * @return PageData<PlatformQueue> | 
|---|
|  |  |  | */ | 
|---|
|  |  |  | PageData<PlatformQueue> findPage(PageWrap<PlatformQueue> pageWrap); | 
|---|
|  |  |  |  | 
|---|
|  |  |  | /** | 
|---|
|  |  |  | * æ¡ä»¶ç»è®¡ | 
|---|
|  |  |  | * | 
|---|
|  |  |  | * @param platformQueue å®ä½å¯¹è±¡ | 
|---|
|  |  |  | * @return long | 
|---|
|  |  |  | */ | 
|---|
|  |  |  | long count(PlatformQueue platformQueue); | 
|---|
|  |  |  | } | 
|---|