tx
8 天以前 e0b138b3e057de6f57021e6c8963868f5c5acc5a
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
38
39
40
41
42
43
using System;
using System.Collections.Generic;
using System.Runtime.Serialization;
 
namespace TProduct.Entity
{
    /// <summary>
    /// 测试
    /// </summary>
    [DataContract]
    [Serializable]
    public class TestProjectItemBundleTree
    {
 
        /// <summary>
        /// 测试项目标识
        /// </summary>
        [DataMember]
        public TestProjectItemBundle Bundle
        {
            get { return _map; }
            set { _map = value; }
        }
        private TestProjectItemBundle _map;
 
 
 
        /// <summary>
        /// 测试项目标识
        /// </summary>
        [DataMember]
        public List<TestProjectItem> Items
        {
            get { return _items; }
            set { _items = value; }
        }
        private List<TestProjectItem> _items;
 
 
 
 
    }
}