| ¶Ô±ÈÐÂÎļþ |
| | |
| | | package com.doumee.service.business; |
| | | |
| | | import com.doumee.service.business.third.model.PageData; |
| | | import com.doumee.service.business.third.model.PageWrap; |
| | | import com.doumee.dao.business.model.WmsInterfaceLog; |
| | | |
| | | import java.util.List; |
| | | |
| | | /** |
| | | * 䏿¹å¹³å°æ¥å£äº¤äºè®°å½Serviceå®ä¹ |
| | | * @author æ±è¹è¹ |
| | | * @date 2023/11/30 15:33 |
| | | */ |
| | | public interface WmsInterfaceLogService { |
| | | |
| | | /** |
| | | * å建 |
| | | * |
| | | * @param interfaceLog å®ä½å¯¹è±¡ |
| | | * @return Integer |
| | | */ |
| | | Integer create(WmsInterfaceLog interfaceLog); |
| | | |
| | | /** |
| | | * 主é®å é¤ |
| | | * |
| | | * @param id ä¸»é® |
| | | */ |
| | | void deleteById(Integer id); |
| | | |
| | | /** |
| | | * å é¤ |
| | | * |
| | | * @param interfaceLog å®ä½å¯¹è±¡ |
| | | */ |
| | | void delete(WmsInterfaceLog interfaceLog); |
| | | |
| | | /** |
| | | * æ¹é主é®å é¤ |
| | | * |
| | | * @param ids 主é®é |
| | | */ |
| | | void deleteByIdInBatch(List<Integer> ids); |
| | | |
| | | /** |
| | | * 䏻鮿´æ° |
| | | * |
| | | * @param interfaceLog å®ä½å¯¹è±¡ |
| | | */ |
| | | void updateById(WmsInterfaceLog interfaceLog); |
| | | |
| | | /** |
| | | * æ¹é䏻鮿´æ° |
| | | * |
| | | * @param interfaceLogs å®ä½é |
| | | */ |
| | | void updateByIdInBatch(List<WmsInterfaceLog> interfaceLogs); |
| | | |
| | | /** |
| | | * 䏻鮿¥è¯¢ |
| | | * |
| | | * @param id ä¸»é® |
| | | * @return InterfaceLog |
| | | */ |
| | | WmsInterfaceLog findById(Integer id); |
| | | |
| | | /** |
| | | * æ¡ä»¶æ¥è¯¢åæ¡è®°å½ |
| | | * |
| | | * @param interfaceLog å®ä½å¯¹è±¡ |
| | | * @return InterfaceLog |
| | | */ |
| | | WmsInterfaceLog findOne(WmsInterfaceLog interfaceLog); |
| | | |
| | | /** |
| | | * æ¡ä»¶æ¥è¯¢ |
| | | * |
| | | * @param interfaceLog å®ä½å¯¹è±¡ |
| | | * @return List<InterfaceLog> |
| | | */ |
| | | List<WmsInterfaceLog> findList(WmsInterfaceLog interfaceLog); |
| | | |
| | | /** |
| | | * å页æ¥è¯¢ |
| | | * |
| | | * @param pageWrap å页对象 |
| | | * @return PageData<InterfaceLog> |
| | | */ |
| | | PageData<WmsInterfaceLog> findPage(PageWrap<WmsInterfaceLog> pageWrap); |
| | | |
| | | /** |
| | | * æ¡ä»¶ç»è®¡ |
| | | * |
| | | * @param interfaceLog å®ä½å¯¹è±¡ |
| | | * @return long |
| | | */ |
| | | long count(WmsInterfaceLog interfaceLog); |
| | | |
| | | void clearThreeMonthLog(); |
| | | } |