春风项目四线(合箱线、总装线)
hdy
2024-01-24 8ae9df8f5ed23873cbd47dde1fea30952ed0f1f3
提交 | 用户 | 时间
fd2207 1 /**
2  * @classdesc 字典数据
3  * @property {String} label 标签
4  * @property {*} value 标签
5  * @property {Object} raw 原始数据
6  */
7 export default class DictData {
8   constructor(label, value, raw) {
9     this.label = label
10     this.value = value
11     this.raw = raw
12   }
13 }