@easyquery/core
Version:
EasyQuery.JS core modules
19 lines • 603 B
JavaScript
var AggrFunction = /** @class */ (function () {
function AggrFunction() {
this.id = "";
this.caption = "";
this.sqlExpr = "";
this.displayFormat = "";
}
AggrFunction.prototype.loadFromData = function (aggrFunction) {
if (aggrFunction) {
this.id = aggrFunction.id;
this.caption = aggrFunction.cptn;
this.displayFormat = aggrFunction.fmt;
this.sqlExpr = aggrFunction.expr;
}
};
return AggrFunction;
}());
export { AggrFunction };
//# sourceMappingURL=aggr_function.js.map