ningshuxia
2022-10-08 1080f0fa534b666ad1053a5f648d6df40aa4a843
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
 
namespace IStation.Model
{
    /// <summary>
    /// 
    /// </summary>
    public class InspectRecordAndDetail
    {
        /// <summary>
        /// 
        /// </summary>
        public Model.InspectRecord Record { get; set; }
 
        /// <summary>
        /// 
        /// </summary>
        public List<Model.InspectRecordDetail> Details { get; set; }
    }
}