12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879 |
- // This file is created by egg-ts-helper@1.33.0
- // Do not modify this file!!!!!!!!!
- import 'egg';
- import ExportBase = require('../../../app/controller/base');
- import ExportHomeAddress = require('../../../app/controller/home/address');
- import ExportHomeCart = require('../../../app/controller/home/cart');
- import ExportHomeHome = require('../../../app/controller/home/home');
- import ExportHomeOrder = require('../../../app/controller/home/order');
- import ExportHomePartnerInfo = require('../../../app/controller/home/partnerInfo');
- import ExportHomeProductCategory = require('../../../app/controller/home/productCategory');
- import ExportHomeProducts = require('../../../app/controller/home/products');
- import ExportHomeProxyApplyLogs = require('../../../app/controller/home/ProxyApplyLogs');
- import ExportHomeRelInviter = require('../../../app/controller/home/RelInviter');
- import ExportHomeShop = require('../../../app/controller/home/shop');
- import ExportHomeUser = require('../../../app/controller/home/user');
- import ExportManagerAccesss = require('../../../app/controller/manager/accesss');
- import ExportManagerAdminUser = require('../../../app/controller/manager/admin_user');
- import ExportManagerArticles = require('../../../app/controller/manager/articles');
- import ExportManagerArticlesCategory = require('../../../app/controller/manager/articles_category');
- import ExportManagerConfigs = require('../../../app/controller/manager/configs');
- import ExportManagerLogin = require('../../../app/controller/manager/login');
- import ExportManagerManager = require('../../../app/controller/manager/manager');
- import ExportManagerRoles = require('../../../app/controller/manager/roles');
- import ExportWechatWechat = require('../../../app/controller/wechat/wechat');
- import ExportManagerShopsOrders = require('../../../app/controller/manager/shops/orders');
- import ExportManagerShopsPaysConfig = require('../../../app/controller/manager/shops/pays_config');
- import ExportManagerShopsProducts = require('../../../app/controller/manager/shops/products');
- import ExportManagerShopsProductBrands = require('../../../app/controller/manager/shops/product_brands');
- import ExportManagerShopsProductCategory = require('../../../app/controller/manager/shops/product_category');
- import ExportManagerShopsProductSuppliers = require('../../../app/controller/manager/shops/product_suppliers');
- import ExportManagerShopsProductTypes = require('../../../app/controller/manager/shops/product_types');
- import ExportManagerShopsProductTypesItem = require('../../../app/controller/manager/shops/product_types_item');
- import ExportManagerShopsShippingsConfig = require('../../../app/controller/manager/shops/shippings_config');
- import ExportManagerShopsUsers = require('../../../app/controller/manager/shops/users');
- declare module 'egg' {
- interface IController {
- base: ExportBase;
- home: {
- address: ExportHomeAddress;
- cart: ExportHomeCart;
- home: ExportHomeHome;
- order: ExportHomeOrder;
- partnerInfo: ExportHomePartnerInfo;
- productCategory: ExportHomeProductCategory;
- products: ExportHomeProducts;
- proxyApplyLogs: ExportHomeProxyApplyLogs;
- relInviter: ExportHomeRelInviter;
- shop: ExportHomeShop;
- user: ExportHomeUser;
- }
- manager: {
- accesss: ExportManagerAccesss;
- adminUser: ExportManagerAdminUser;
- articles: ExportManagerArticles;
- articlesCategory: ExportManagerArticlesCategory;
- configs: ExportManagerConfigs;
- login: ExportManagerLogin;
- manager: ExportManagerManager;
- roles: ExportManagerRoles;
- shops: {
- orders: ExportManagerShopsOrders;
- paysConfig: ExportManagerShopsPaysConfig;
- products: ExportManagerShopsProducts;
- productBrands: ExportManagerShopsProductBrands;
- productCategory: ExportManagerShopsProductCategory;
- productSuppliers: ExportManagerShopsProductSuppliers;
- productTypes: ExportManagerShopsProductTypes;
- productTypesItem: ExportManagerShopsProductTypesItem;
- shippingsConfig: ExportManagerShopsShippingsConfig;
- users: ExportManagerShopsUsers;
- }
- }
- wechat: {
- wechat: ExportWechatWechat;
- }
- }
- }
|