yl
2022-10-25 4f86b3b78b5b638b486b497221a2f1c8fbab3ef6
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
using System;
using System.Collections.Generic;
using System.Linq;
using System.Web;
 
namespace VueWebApi.Models
{
    public class APSList
    {
        public string wo_code { get; set; }  //工单编号
        public string step_id { get; set; }  //工序编码
        public string eqp_id { get; set; }   //设备编码
        public string name { get; set; }     //设备名称
        public string AdvaDevicCropMob { get; set; }  //稼动率
        public string AdvaDevicRhythm { get; set; }   //节拍
        public string Style { get; set; }             //设备类型
        public string ClassType { get; set; }         //所属类型(产线、设备)
    }
}