yl
2025-10-30 8d7c6ffe00e5b05017c426a4cb97d59a3a95a20d
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; }         //所属类型(产线、设备)
    }
}