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