using System; using System.Collections.Generic; using System.Linq; using System.Text; using QMAPP.FJC.BLL.Operation; using QMAPP.MD.BLL; using QMAPP.Entity; using QMAPP.MD.Entity; namespace HTIS.BLL { public class CheckRackCodeBll : NSC.IService { /// /// 校验料架零件号 /// /// /// /// public NSC.NetServiceStruct ServiceFunction(Common.Data.UserAuthority userAuth, NSC.NetServiceStruct input) { try { MaterialBLL bll = new MaterialBLL(); DataResult result = new DataResult(); //接收手持或车载前端传递的参数, string userID = input.Params["userID"].GetString(); //零件号计划表名T_MD_MATERIAL //Material recorders = input.Params["recorder"].GetEntity(); string materialcode = input.Params["materialCode"].GetString(); Material recorders = new Material(); if (!string.IsNullOrEmpty(materialcode)) { recorders.MATERIAL_CODE = materialcode; } //将用户注册到BaseBLL类中,该动作是必须动作 bll.RegistLoginUser(userID); result = bll.Get(recorders); if (result.Result == null) { result.IsSuccess = false; } input.Returns = new Dictionary(); input.Returns.Add("ResultModel", new NSC.ParameterStruct(result));//基本信息 input.Returns.Count(); return input; } catch (Exception ex) { throw ex; } } } }