wnjk
Version:
两只蜗牛通用微服务脚本
18 lines (17 loc) • 554 B
JavaScript
define(["require", "exports"], function (require, exports) {
"use strict";
Object.defineProperty(exports, "__esModule", { value: true });
var MicroAppInfo = (function () {
function MicroAppInfo() {
this.appCode = '';
this.appName = "";
this.homePage = "";
this.iconUrl = "";
this.location = 0;
this.orgnizationId = "";
this.thirdProgramId = 0;
}
return MicroAppInfo;
}());
exports.default = MicroAppInfo;
});