zhangfeng
2022-12-23 f7d2f20365467a834188edd35c464d9fb9349214
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
package com.gkhy.safePlatform.equipment.service;
 
import com.gkhy.safePlatform.commons.co.ContextCacheUser;
import com.gkhy.safePlatform.commons.query.PageQuery;
import com.gkhy.safePlatform.commons.vo.ResultVO;
import com.gkhy.safePlatform.commons.vo.SearchResultVO;
import com.gkhy.safePlatform.equipment.model.dto.req.*;
import com.gkhy.safePlatform.equipment.model.dto.resp.SafeMaterialClassifyStockDto;
import com.gkhy.safePlatform.equipment.model.dto.resp.SafeMaterialDetailDto;
import com.gkhy.safePlatform.equipment.model.dto.resp.SafeRfidMaterialDetailDto;
 
import java.util.List;
 
public interface SafeMaterialDetailService {
    ResultVO save(SafeMaterialDetailAddReq req);
 
    void singleDelivery(ContextCacheUser currentUser,SafeMaterialDetailReq req);
 
    void singleReceipt(Long id,ContextCacheUser currentUser);
 
    ResultVO delete(Long id);
 
 
    ResultVO saveBatch(SafeMaterialDetailAddReq req);
 
    ResultVO update(SafeMaterialDetailReq req);
 
    ResultVO receiptBatch(ParamForm paramForm);
 
    ResultVO deleteBatch(ContextCacheUser currentUser,ParamForm paramForm);
 
    void deliveryBatchByIds(MterialDeliveryReq req,ContextCacheUser currentUser);
 
    void deliveryBatchBySmId(MterialRandomDeliveryReq req,ContextCacheUser currentUser);
 
    SearchResultVO<List<SafeMaterialDetailDto>> listByPage(ContextCacheUser currentUser,PageQuery<SafeMatetrialDetailQuery> pageQuery);
 
    ResultVO queryById(Long id);
    List<SafeMaterialClassifyStockDto> getSmallClassifyStockByIds(List<Long> smallClassifyIds);
    void deliveryBatchSpw(MaterialSpwReq req);
 
    List<SafeRfidMaterialDetailDto> getListByRfids(List<String> rfids);
 
}