1
2
3
4
5
6
7
8
9
10
11
12
13
14
| package com.chinaztt.mes.quality.mapper;
|
| import com.baomidou.mybatisplus.core.mapper.BaseMapper;
| import com.chinaztt.mes.quality.entity.HwWeightLabelConfig;
| import org.apache.ibatis.annotations.Mapper;
|
| /**
| * @Description :华为称重标签配置表mapper
| * @Author : sll
| * @Date: 2023-01-14 9:57
| */
| @Mapper
| public interface HwWeightLabelConfigMapper extends BaseMapper<HwWeightLabelConfig> {
| }
|
|