using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace Future.Entities { /// /// 表式档案的附属档案接口 /// public interface ITabularSubsidiary { /// /// 当前档案标识 /// string ArchiveID { get; set; } /// /// 归属档案标识 /// string ParentID { get; set; } } }