Exemplo n.º 1
0
        public ActionResult <DataTable> Get_mes_state(string planlist)
        {
            //获取所选设备下的工单的状态
            MDphone mDphone = new MDphone();

            return(mDphone.GetMesState(planlist));
        }
Exemplo n.º 2
0
        public ActionResult <DataTable> Get_menu()
        {
            //获取菜单按钮
            MDphone mDphone = new MDphone();

            return(mDphone.GetMenu());
        }
Exemplo n.º 3
0
        public ActionResult <DataTable> Get_plan(string resname)
        {
            //获取所选设备的所有工单
            MDphone mDphone = new MDphone();

            return(mDphone.GetPlan(resname));
        }
Exemplo n.º 4
0
        public ActionResult <DataTable> Tag_Event(string res_name)
        {
            //获取已经经过的事件
            MDphone mDphone = new MDphone();

            return(mDphone.Get_Tag_Event(res_name));
        }
Exemplo n.º 5
0
        public ActionResult <List <string> > BtnReportEvent(string ReportData)
        {
            //按钮的功能
            JObject report_datas = (JObject)JsonConvert.DeserializeObject(ReportData);
            MDphone mDphone      = new MDphone();

            return(mDphone.BtnReportClick(report_datas));
        }
Exemplo n.º 6
0
        public ActionResult <DataTable> GetParseMessage()
        {
            MDphone mDphone = new MDphone();

            return(mDphone.ParseMessage());
        }
Exemplo n.º 7
0
        public ActionResult <DataTable> Get_Cur_Product(string res_name)
        {
            MDphone mDphone = new MDphone();

            return(mDphone.GetCurProduct(res_name));
        }
Exemplo n.º 8
0
        public ActionResult <DateTime> WorkOrderStartTime(string resname, string timeType)
        {
            MDphone mDphone = new MDphone();

            return(mDphone.GetWorkOrderStartTime(resname, timeType));
        }