25 lines
484 B
JavaScript
25 lines
484 B
JavaScript
/**
|
|
* @Author YuanWei
|
|
* @Date 2021/04/13 15:33:44
|
|
* @FileName CellsysAppModelType.js
|
|
* @Description: 应用模板分类
|
|
*/
|
|
class CellsysAppModelType {
|
|
constructor(param = {}) {
|
|
this.id = param.id;
|
|
this.name = param.name;
|
|
this.description = param.description;
|
|
this.appList = [];
|
|
}
|
|
|
|
setAppList(data) {
|
|
this.appList = data;
|
|
}
|
|
|
|
getAppList() {
|
|
return this.appList || [];
|
|
}
|
|
}
|
|
|
|
export default CellsysAppModelType;
|