using System; using System.Collections.Generic; using System.Linq; using System.Text; using EMIS.ViewModel; namespace EMIS.CommonLogic.SystemServices { public interface IFileUploadServices { /// /// 查询对应的附件文件(根据外键表ID) /// /// /// List GetFileList(Guid? formID); } }