wujian
2024-02-22 268beb4ebc1e5b8d4ad715b71cd64a0944073a87
提交 | 用户 | 时间
268beb 1 /**
W 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 }