Fixiaobai
2023-11-16 d8d129a2e41f7099968cb4f4dc1b028ab985135f
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
package com.chinaztt.mes.quality.service;
 
import com.baomidou.mybatisplus.extension.service.IService;
import com.chinaztt.mes.quality.dto.ZxLabelBindRelationDTO;
import com.chinaztt.mes.quality.entity.ZxLabelBindRelation;
 
/**
 * @Description : 中兴标签关系绑定
 * @interfaceName : ZxLabelBindRelationService
 * @Author : sll
 * @Date: 2022-11-30  15:02
 */
public interface ZxLabelBindRelationService extends IService<ZxLabelBindRelation>{
    /**
     * 新建中兴标签绑定关系
     * @param zxLabelBindRelationDTO 请求对象
     * @return 返回新增的对象
     */
     ZxLabelBindRelation addLabelRelation(ZxLabelBindRelationDTO zxLabelBindRelationDTO);
}