yl
2023-05-30 925394b1b7f61a2c2a15fdaa0ecd0763214ccda1
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
using System;
using System.Collections.Generic;
using System.Linq;
using System.Web;
 
namespace VueWebApi.Models
{
    public class AdvancedSchedulingDevice
    {
        public string YearDate { get; set; }
        public List<AdvancedSchedulingDeviceCont> children { get; set; }
 
    }
    public class AdvancedSchedulingDeviceCont
    {
 
        public string AdvaDevicNumber { get; set; }
        public string AdvaDevicName { get; set; }
        public string AdvaDevicCropMob { get; set; }
        public string AdvaDevicRhythm { get; set; }
        public string OneStartDate { get; set; }
        public string TwoStartDate { get; set; }
        public string ThreeStartDate { get; set; }
        public string FourStartDate { get; set; }
        public string FiveStartDate { get; set; }
    }
}