yl
2024-06-26 65cb66d1fd548540745bd2552f4668ac88549a4c
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
using System;
using System.Collections.Generic;
using System.Linq;
using System.Web;
 
namespace VueWebCoreApi.Models
{
    public class AdvancedSchedulingDevice
    {
        public string wo_code { get; set; }
        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; }
    }
}