2022-12-12 22:33:17 +08:00
|
|
|
|
using AIStudio.Wpf.DiagramDesigner;
|
2021-07-27 16:15:30 +08:00
|
|
|
|
|
2021-07-29 13:55:18 +08:00
|
|
|
|
namespace AIStudio.Wpf.Flowchart.ViewModels
|
2021-07-27 16:15:30 +08:00
|
|
|
|
{
|
2022-12-12 22:33:17 +08:00
|
|
|
|
public class MiddleFlowNodeData : BindableBase
|
2021-07-27 16:15:30 +08:00
|
|
|
|
{
|
2022-12-12 22:33:17 +08:00
|
|
|
|
private string _title;
|
|
|
|
|
|
public string Title
|
|
|
|
|
|
{
|
|
|
|
|
|
get
|
|
|
|
|
|
{
|
|
|
|
|
|
return _title;
|
|
|
|
|
|
}
|
|
|
|
|
|
set
|
|
|
|
|
|
{
|
|
|
|
|
|
SetProperty(ref _title, value);
|
|
|
|
|
|
}
|
|
|
|
|
|
}
|
|
|
|
|
|
|
2021-07-27 16:15:30 +08:00
|
|
|
|
public MiddleFlowNodeData()
|
|
|
|
|
|
{
|
|
|
|
|
|
Title = "审批";
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
private int _status = 100;
|
|
|
|
|
|
public int Status
|
|
|
|
|
|
{
|
|
|
|
|
|
get
|
|
|
|
|
|
{
|
|
|
|
|
|
return _status;
|
|
|
|
|
|
}
|
|
|
|
|
|
set
|
|
|
|
|
|
{
|
|
|
|
|
|
SetProperty(ref _status, value);
|
|
|
|
|
|
}
|
|
|
|
|
|
}
|
|
|
|
|
|
|
2023-05-21 23:03:28 +08:00
|
|
|
|
private string _remark = "同意";
|
2021-07-27 16:15:30 +08:00
|
|
|
|
public string Remark
|
|
|
|
|
|
{
|
|
|
|
|
|
get
|
|
|
|
|
|
{
|
|
|
|
|
|
return _remark;
|
|
|
|
|
|
}
|
|
|
|
|
|
set
|
|
|
|
|
|
{
|
|
|
|
|
|
SetProperty(ref _remark, value);
|
|
|
|
|
|
}
|
|
|
|
|
|
}
|
|
|
|
|
|
}
|
|
|
|
|
|
}
|