危化品全生命周期管理后端
kongzy
2024-08-22 0c73654f55844e34772732914af8cc1e247aab63
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
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
package com.gkhy.hazmat.system.service;
 
import com.baomidou.mybatisplus.extension.service.IService;
import com.gkhy.hazmat.common.api.CommonPage;
import com.gkhy.hazmat.system.domain.HzProductEntryRecord;
 
/**
 * <p>
 * 成品入库记录表 服务类
 * </p>
 *
 * @author kzy
 * @since 2024-08-06 16:06:49
 */
public interface HzProductEntryRecordService extends IService<HzProductEntryRecord> {
 
    /**
     * 根据条件分页查询成品入库记录列表
     * @param entryRecord
     * @return
     */
    CommonPage selectEntryRecordList(HzProductEntryRecord entryRecord);
 
 
    /**
     * 根据id查询成品入库记录信息
     *
     * @param entryRecordId 入库记录ID
     * @return
     */
    public HzProductEntryRecord selectEntryRecordById(Long entryRecordId);
 
 
    /**
     * 新增成品入库记录
     *
     * @param entryRecord 入库记录信息
     * @return 结果
     */
    public int insertEntryRecord(HzProductEntryRecord entryRecord);
 
 
    /**
     * 删除成品入库记录
     *
     * @param entryRecordId 入库记录ID
     * @return 结果
     */
    public int deleteEntryRecordById(Long entryRecordId);
 
    /**
     * 成品入库操作
     * @param entryRecordId
     */
    public void doEntry(Long entryRecordId);
 
    /**
     * 更新入库记录
     * @param entryRecord
     * @return
     */
    int updateEntryRecord(HzProductEntryRecord entryRecord);
 
    /**
     * 根据入库id查询详情
     * @param entryId
     * @return
     */
    CommonPage selectProductListByEntryId(Long entryId);
}