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{ /** * 新增称重标签 * @param zxWeightLabelDTO * @return */ ZxWeightLabel addWeightLabel(ZxWeightLabelDTO zxWeightLabelDTO) throws Exception; /** * 称重 * @return */ String weighing() throws Exception; }