static int OnFashionOperationFailed(IntPtr L)
    {
        LuaScriptMgr.CheckArgsCount(L, 1);
        UIStoreFashion obj = (UIStoreFashion)LuaScriptMgr.GetNetObjectSelf(L, 1, "UIStoreFashion");

        obj.OnFashionOperationFailed();
        return(0);
    }
    static int ActionBack(IntPtr L)
    {
        LuaScriptMgr.CheckArgsCount(L, 1);
        UIStoreFashion obj = (UIStoreFashion)LuaScriptMgr.GetNetObjectSelf(L, 1, "UIStoreFashion");

        obj.ActionBack();
        return(0);
    }
    static int Create(IntPtr L)
    {
        LuaScriptMgr.CheckArgsCount(L, 0);
        UIStoreFashion o = UIStoreFashion.Create();

        LuaScriptMgr.PushObject(L, o);
        return(1);
    }
    static int OnDressOn(IntPtr L)
    {
        LuaScriptMgr.CheckArgsCount(L, 2);
        UIStoreFashion  obj  = (UIStoreFashion)LuaScriptMgr.GetNetObjectSelf(L, 1, "UIStoreFashion");
        FashionShopItem arg0 = (FashionShopItem)LuaScriptMgr.GetUnityObject(L, 2, typeof(FashionShopItem));

        obj.OnDressOn(arg0);
        return(0);
    }
    static int OnFashionChange(IntPtr L)
    {
        LuaScriptMgr.CheckArgsCount(L, 2);
        UIStoreFashion obj  = (UIStoreFashion)LuaScriptMgr.GetNetObjectSelf(L, 1, "UIStoreFashion");
        Goods          arg0 = (Goods)LuaScriptMgr.GetNetObject(L, 2, typeof(Goods));

        obj.OnFashionChange(arg0);
        return(0);
    }
    static int OnClickItem(IntPtr L)
    {
        LuaScriptMgr.CheckArgsCount(L, 2);
        UIStoreFashion obj  = (UIStoreFashion)LuaScriptMgr.GetNetObjectSelf(L, 1, "UIStoreFashion");
        uint           arg0 = (uint)LuaScriptMgr.GetNumber(L, 2);

        obj.OnClickItem(arg0);
        return(0);
    }
    static int OnBuyStoreGoodsResp(IntPtr L)
    {
        LuaScriptMgr.CheckArgsCount(L, 2);
        UIStoreFashion obj = (UIStoreFashion)LuaScriptMgr.GetNetObjectSelf(L, 1, "UIStoreFashion");

        fogs.proto.msg.BuyStoreGoodsResp arg0 = (fogs.proto.msg.BuyStoreGoodsResp)LuaScriptMgr.GetNetObject(L, 2, typeof(fogs.proto.msg.BuyStoreGoodsResp));
        obj.OnBuyStoreGoodsResp(arg0);
        return(0);
    }
    static int leftBtnClick(IntPtr L)
    {
        LuaScriptMgr.CheckArgsCount(L, 2);
        UIStoreFashion obj  = (UIStoreFashion)LuaScriptMgr.GetNetObjectSelf(L, 1, "UIStoreFashion");
        GameObject     arg0 = (GameObject)LuaScriptMgr.GetUnityObject(L, 2, typeof(GameObject));

        obj.leftBtnClick(arg0);
        return(0);
    }
    static int DressOnUpdate(IntPtr L)
    {
        LuaScriptMgr.CheckArgsCount(L, 3);
        UIStoreFashion obj  = (UIStoreFashion)LuaScriptMgr.GetNetObjectSelf(L, 1, "UIStoreFashion");
        uint           arg0 = (uint)LuaScriptMgr.GetNumber(L, 2);
        bool           arg1 = LuaScriptMgr.GetBoolean(L, 3);

        obj.DressOnUpdate(arg0, arg1);
        return(0);
    }
    static int getFItem(IntPtr L)
    {
        LuaScriptMgr.CheckArgsCount(L, 2);
        UIStoreFashion        obj  = (UIStoreFashion)LuaScriptMgr.GetNetObjectSelf(L, 1, "UIStoreFashion");
        uint                  arg0 = (uint)LuaScriptMgr.GetNumber(L, 2);
        FashionShopConfigItem o    = obj.getFItem(arg0);

        LuaScriptMgr.PushObject(L, o);
        return(1);
    }
    static int _CreateUIStoreFashion(IntPtr L)
    {
        int count = LuaDLL.lua_gettop(L);

        if (count == 0)
        {
            UIStoreFashion obj = new UIStoreFashion();
            LuaScriptMgr.PushObject(L, obj);
            return(1);
        }
        else
        {
            LuaDLL.luaL_error(L, "invalid arguments to method: UIStoreFashion.New");
        }

        return(0);
    }
    static int get__goReturn(IntPtr L)
    {
        object         o   = LuaScriptMgr.GetLuaObject(L, 1);
        UIStoreFashion obj = (UIStoreFashion)o;

        if (obj == null)
        {
            LuaTypes types = LuaDLL.lua_type(L, 1);

            if (types == LuaTypes.LUA_TTABLE)
            {
                LuaDLL.luaL_error(L, "unknown member name _goReturn");
            }
            else
            {
                LuaDLL.luaL_error(L, "attempt to index _goReturn on a nil value");
            }
        }

        LuaScriptMgr.Push(L, obj._goReturn);
        return(1);
    }
    static int set__fashionSelected(IntPtr L)
    {
        object         o   = LuaScriptMgr.GetLuaObject(L, 1);
        UIStoreFashion obj = (UIStoreFashion)o;

        if (obj == null)
        {
            LuaTypes types = LuaDLL.lua_type(L, 1);

            if (types == LuaTypes.LUA_TTABLE)
            {
                LuaDLL.luaL_error(L, "unknown member name _fashionSelected");
            }
            else
            {
                LuaDLL.luaL_error(L, "attempt to index _fashionSelected on a nil value");
            }
        }

        obj._fashionSelected = (UIStoreFashion.FashionSelected)LuaScriptMgr.GetNetObject(L, 3, typeof(UIStoreFashion.FashionSelected));
        return(0);
    }
 static int Destroy(IntPtr L)
 {
     LuaScriptMgr.CheckArgsCount(L, 0);
     UIStoreFashion.Destroy();
     return(0);
 }