zhangfeng
2022-11-08 f241a39f07acc5d5ede28b4152d74cbb84e4885b
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
package com.gkhy.safePlatform.equipment.service;
 
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.SafeMaterialDetailDto;
 
import java.util.List;
 
public interface SafeMaterialDetailService {
    ResultVO save(SafeMaterialDetailAddReq req);
 
    ResultVO singleDelivery(SafeMaterialDetailReq req);
 
    ResultVO singleReceipt(Long id);
 
    ResultVO delete(Long id);
 
    ResultVO singleDdelivery0rReceipt(SafeMaterialDetailReq req);
 
    ResultVO saveBatch(SafeMaterialDetailAddReq req);
 
    ResultVO update(SafeMaterialDetailReq req);
 
    ResultVO receiptBatch(Long[] ids);
 
    ResultVO deleteBatch(Long[] ids);
 
    ResultVO deliveryBatchByIds(MterialDeliveryReq req);
 
    ResultVO deliveryBatchRandom(MterialRandomDeliveryReq req);
 
    SearchResultVO<List<SafeMaterialDetailDto>> listByPage(PageQuery<SafeMatetrialDetailQuery> pageQuery);
 
    ResultVO queryById(Long id);
 
}