AIMS/DrawGraphManagement/DocumentParent.cs
2022-08-23 21:12:59 +08:00

37 lines
798 B
C#

using AIMSModel;
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
namespace DrawGraph
{
public class DocumentParent
{
public DocumentParent() {
operationRecord = new OperationRecord();
}
private OperationRecord operationRecord;
public int OperationApplyId { get; set; }
public OperationRecord OpeRecord
{
get
{
return operationRecord;
}
set
{
operationRecord = value;
}
}
public int Id { get; set; }
public string { get; set; }
public string { get; set; }
public DateTime { get; set; }
}
}