中国算力平台算力登记系统2.0
yanzhaofeige
2024-09-30 0f03e47899d7fd52ab5c7ad11a3bc5d4eec413cb
commit | author | age
43dc29 1 /**
Y 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 }