function creatObj(obj) {
    function Fn(params) { }
    Fn.prototype = obj;
    return new Fn();
}