yl
2024-06-18 47f5a9401f1e83efeca8b6a5cd28e1da805811f9
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 VueWebCoreApi.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; }         //所属类型(产线、设备)
    }
}