using System.Collections.ObjectModel;
|
|
namespace PdmSwPlugin.Common.Entity.DrawAudit
|
{
|
public class DrawAudit : NotifyBase
|
{
|
private string _id;
|
|
public string id
|
{
|
get { return _id; }
|
set { _id = value; }
|
}
|
|
private string _materialCode;
|
|
public string materialCode
|
{
|
get { return _materialCode; }
|
set => RaiseAndSetIfChanged(ref _materialCode, value);
|
}
|
|
private string _status;
|
|
public string status
|
{
|
get { return _status; }
|
set { _status = value; }
|
}
|
|
public string d3Md5 { get; set; }
|
public string d3RelativePath { get; set; }
|
public string d2Md5 { get; set; }
|
public string d2RelativePath { get; set; }
|
|
private string _requestUser;
|
|
public string requestUser
|
{
|
get { return _requestUser; }
|
set => RaiseAndSetIfChanged(ref _requestUser, value);
|
}
|
|
private string _auditUser;
|
|
public string auditUser
|
{
|
get { return _auditUser; }
|
set => RaiseAndSetIfChanged(ref _auditUser, value);
|
}
|
|
private string _taskId;
|
|
public string taskId
|
{
|
get { return _taskId; }
|
set => RaiseAndSetIfChanged(ref _taskId, value);
|
}
|
|
private bool? _pass;
|
|
public bool? pass
|
{
|
get { return _pass; }
|
set => RaiseAndSetIfChanged(ref _pass, value);
|
}
|
|
private string _comment;
|
|
public string comment
|
{
|
get { return _comment; }
|
set => RaiseAndSetIfChanged(ref _comment, value);
|
}
|
|
private string _updateTime;
|
|
public string updateTime
|
{
|
get { return _updateTime; }
|
set => RaiseAndSetIfChanged(ref _updateTime, value);
|
}
|
|
public byte[] commentBlob { get; set; }
|
|
private ObservableCollection<DrawAudit> _children;
|
|
public ObservableCollection<DrawAudit> children
|
{
|
get { return _children; }
|
set => RaiseAndSetIfChanged(ref _children, value);
|
}
|
|
private bool _selected;
|
|
public bool selected
|
{
|
get => _selected;
|
set => RaiseAndSetIfChanged(ref _selected, value);
|
}
|
|
private int? _count;
|
|
public int? count
|
{
|
get => _count;
|
set => RaiseAndSetIfChanged(ref _count, value);
|
}
|
|
}
|
}
|