public List <ImageInformation> SearchImageInformation(ImageInformation imageInfo) //信息展示 { List <ImageInformation> imageList = new List <ImageInformation>(); if (imageInfo != null) { imageList = iDAO.FuzzyAll(imageInfo.ImageNumber, imageInfo.ProductType, imageInfo.PartsName, imageInfo.CompanyNumber); } return(imageList); }