天津投入产出系统后端
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

44 lines
1.2 KiB

using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using QMAPP.FJC.BLL.Injection;
using QMAPP.Entity;
using QMAPP.FJC.Entity.Injection;
using QMAPP.FJC.DAL.Injection;
namespace HTIS.BLL
{
public class CheckInjection : NSC.IService
{
public NSC.NetServiceStruct ServiceFunction(Common.Data.UserAuthority userAuth, NSC.NetServiceStruct input)
{
try
{
InjectionRecorderBLL bll = new InjectionRecorderBLL();
//接收手持或车载前端传递的参数,
string userID = input.Params["userID"].GetString();
InjectionInfo recorders = input.Params["recorder"].GetEntity<InjectionInfo>();
//将用户注册到BaseBLL类中,该动作是必须动作
bll.RegistLoginUser(userID);
bool materialCheck = bll.CheckInjectMaterial(recorders);
input.Returns = new Dictionary<string, NSC.ParameterStruct>();
input.Returns.Add("ResultModel", new NSC.ParameterStruct(materialCheck));//基本信息
return input;
}
catch (Exception ex)
{
throw ex;
}
}
}
}