2026-07-01 6b5f7c66fc40d7f6099d561e31a34fbd50dd20d3
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 cn.iocoder.yudao.module.mes.service.wm.barcode;
 
import cn.iocoder.yudao.framework.common.pojo.PageResult;
import cn.iocoder.yudao.module.mes.controller.admin.wm.barcode.vo.config.MesWmBarcodeConfigPageReqVO;
import cn.iocoder.yudao.module.mes.controller.admin.wm.barcode.vo.config.MesWmBarcodeConfigSaveReqVO;
import cn.iocoder.yudao.module.mes.dal.dataobject.wm.barcode.MesWmBarcodeConfigDO;
import jakarta.validation.Valid;
 
/**
 * MES 条码配置 Service 接口
 *
 * @author 芋道源码
 */
public interface MesWmBarcodeConfigService {
 
    /**
     * 创建条码配置
     *
     * @param createReqVO 创建信息
     * @return 编号
     */
    Long createBarcodeConfig(@Valid MesWmBarcodeConfigSaveReqVO createReqVO);
 
    /**
     * 更新条码配置
     *
     * @param updateReqVO 更新信息
     */
    void updateBarcodeConfig(@Valid MesWmBarcodeConfigSaveReqVO updateReqVO);
 
    /**
     * 删除条码配置
     *
     * @param id 编号
     */
    void deleteBarcodeConfig(Long id);
 
    /**
     * 获得条码配置
     *
     * @param id 编号
     * @return 条码配置
     */
    MesWmBarcodeConfigDO getBarcodeConfig(Long id);
 
    /**
     * 获得条码配置分页
     *
     * @param pageReqVO 分页参数
     * @return 条码配置分页
     */
    PageResult<MesWmBarcodeConfigDO> getBarcodeConfigPage(MesWmBarcodeConfigPageReqVO pageReqVO);
 
    /**
     * 根据业务类型获取条码配置
     *
     * @param bizType 业务类型
     * @return 条码配置
     */
    MesWmBarcodeConfigDO getBarcodeConfigByBizType(Integer bizType);
 
    /**
     * 校验条码配置存在(根据业务类型)
     *
     * @param bizType 业务类型
     * @return 条码配置
     */
    MesWmBarcodeConfigDO validateBarcodeConfigByBizType(Integer bizType);
 
}