李林
2023-10-07 658d4927d468c47208fd012d9128b09249c07eff
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
package com.chinaztt.mes.quality.service;
 
import com.baomidou.mybatisplus.extension.service.IService;
import com.chinaztt.mes.quality.dto.ZxWeightLabelDTO;
import com.chinaztt.mes.quality.entity.ZxWeightLabel;
 
/**
 * @Description : 中兴称重标签
 * @interfaceName : ZxWeightLabelService
 * @Author : sll
 * @Date: 2022-12-01  23:24
 */
public interface ZxWeightLabelService extends IService<ZxWeightLabel>{
    /**
     * 新增称重标签
     * @param zxWeightLabelDTO
     * @return
     */
    ZxWeightLabel addWeightLabel(ZxWeightLabelDTO zxWeightLabelDTO) throws Exception;
 
    /**
     * 称重
     * @return
     */
    String weighing() throws Exception;
}