using DataEntity; using System.ComponentModel; namespace XImagingXhandler.XDAL { /// /// 子方法实体类 /// public class MethodSubMethod : MethodBase { #region public string comment { get; set; } = ""; /// /// 文件路径 /// public string filePath { get; set; } = string.Empty; /// /// 是否并行 /// public bool isConcurrence { get; set; } = false; #endregion #region 深拷贝 public override object DeepCopy() { MethodSubMethod method = DeepCopyBase(this); return method; } #endregion } }