duheng
2024-08-12 1a12ef2743134f7fdea6d0abbfec34543b85bdb5
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
32
33
34
35
36
37
using Yw.Dto;
 
namespace HStation.WinFrmUI.Basic
{
    public class SysPropGroupTreeListViewModel
    {
        public SysPropGroupTreeListViewModel(Yw.Vmo.SysPropGroup rhs)
        {
            ID = rhs.ID;
            TypeID = rhs.TypeID;
            Name = rhs.Name;
            Code = rhs.Code;
            SortCode = rhs.SortCode;
            Description = rhs.Description;
        }
 
        public void Reset(Yw.Vmo.SysPropGroup rhs)
        {
            ID = rhs.ID;
            Name = rhs.Name;
            Code = rhs.Code;
            Description = rhs.Description;
        }
 
        public long ID { get; set; }
 
        public long TypeID { get; set; }
 
        public string Name { get; set; }
 
        public string Code { get; set; }
 
        public int SortCode { get; set; }
 
        public string Description { get; set; }
    }
}