imboard
Version:
Most convenient platform for webpage development.
16 lines (14 loc) • 301 B
JavaScript
var MenuVo = function(param)
{
this.id = null;
this.name = null;
this.type = null;
this.parameter = null;
this.priority = null;
this.parentMenuId = null;
this.viewLevel = null;
this.childMenuCount = null;
this.creator = null;
ParameterBinder.bind(this, param);
};
module.exports = MenuVo;