Files
T-DAS/Epost.TestToolsWeb/Controllers/HomeController.cs

51 lines
1.5 KiB
C#
Raw Normal View History

2023-01-13 15:30:20 +08:00
using Epost.BLL;
using Epost.Common;
using Epost.DAL;
using Epost.DAL.Cache;
using Epost.DPS.Controllers;
using Epost.Model;
using Newtonsoft.Json;
using System;
using System.Collections.Generic;
using System.Configuration;
using System.Data;
using System.Linq;
using System.Threading;
using System.Web;
using System.Web.Mvc;
using static Epost.Common.LogHelper;
using static Epost.DAL.Enum.ShowViewType;
namespace Epost.TestToolsWeb.Controllers
{
public class HomeController : Controller
{
OrderBLL bll = new OrderBLL();
CommandBLL combll = new CommandBLL();
AddressstorageBLL addrbll = new AddressstorageBLL();
JobModelCacheDAL cache = new JobModelCacheDAL();
ScanModelCacheDAL ScanCache = new ScanModelCacheDAL();
UserModelCacheDAL userCache = new UserModelCacheDAL();
OrderControlBLL contrbll = new OrderControlBLL();
JobDownCacheDAL downCache = new JobDownCacheDAL();
OrdersQueueBLL qubll = new OrdersQueueBLL();
BoxQueueBLL quboxbll = new BoxQueueBLL();
public static bool isShow = false;
public static int isClear = 0;
public static int isWork = 0;
public static bool mes = true;
ConfigurationOperator txtbll = new ConfigurationOperator();
// GET: Home 000000
public ActionResult Index()
{
ViewBag.isClear = isClear;
ViewBag.isWork = isWork;
return View();
}
}
}