lixiaojun
2024-07-30 f45bba0b5ecf73df67af6cb60e57ea956d82a8ab
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
namespace HStation.Dto
{
    /// <summary>
    /// 
    /// </summary>
    public class XhsPhartDiagramExGraphListDto : XhsPhartDiagramDto
    {
        /// <summary>
        /// 
        /// </summary>
        public XhsPhartDiagramExGraphListDto() { }
 
        /// <summary>
        /// 
        /// </summary>
        /// <param name="rhs"></param>
        public XhsPhartDiagramExGraphListDto(Model.XhsPhartDiagram rhs) : base(rhs)
        {
 
        }
 
        /// <summary>
        /// 
        /// </summary>
        public XhsPhartDiagramExGraphListDto(Model.XhsPhartDiagram rhs, List<Model.XhsPhartGraph> graphList) : base(rhs)
        {
            this.GraphList = graphList?.Select(x => new XhsPhartGraphDto(x)).ToList();
        }
 
        /// <summary>
        /// 
        /// </summary>
        public List<XhsPhartGraphDto> GraphList { get; set; }
    }
 
}