Shuxia Ning
2024-08-14 d3cf19f5fc555eb53d74ca08f157cca5c3c8311c
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
using System;
using System.Collections.Generic;
using System.ComponentModel;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
using static Yw.EPAnet.Calcu.ObjectEnum;
 
namespace Yw.EPAnet.Calcu
{
    [Serializable]
    public abstract class BaseModel
    {
        public BaseModel() { }
 
        public BaseModel(BaseModel model)
        {
            this.ID = model.ID;
            this.Name = model.Name;
            this.Status = model.Status;
        }
        public virtual string ID { get; set; }
        public virtual string Name { get; set; }
 
        public virtual StatusType Status { get; set; } = StatusType.OPEN;
 
     
 
 
    }
}