You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
42 lines
932 B
C#
42 lines
932 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using System.Threading.Tasks;
|
|
|
|
namespace FileDataUpload.Entity
|
|
{
|
|
/// <summary>
|
|
/// 参数信息
|
|
/// </summary>
|
|
public class DeviceParameterInfo
|
|
{
|
|
/// <summary>
|
|
/// 公司名称
|
|
/// </summary>
|
|
public string companyName { get; set; }
|
|
|
|
/// <summary>
|
|
/// 工件名称
|
|
/// </summary>
|
|
public string partName { get; set; }
|
|
|
|
/// <summary>
|
|
/// 工件编号
|
|
/// </summary>
|
|
public string partNumber { get; set; }
|
|
|
|
/// <summary>
|
|
/// 操作人员
|
|
/// </summary>
|
|
public string operatingPersonnel { get; set; }
|
|
|
|
/// <summary>
|
|
/// 参数值
|
|
/// </summary>
|
|
public List<DeviceParametersValue> deviceParametersValues { get; set; }
|
|
}
|
|
|
|
|
|
}
|