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; } //所属类型(产线、设备)
|
}
|
}
|