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