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.

28 lines
711 B
C#

using MaterialTraceability.WebService.GetParametricValueServiceService;
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace MaterialTraceability.WebService.Param
{
public class TBDataServiceParam : BaseWebServiceParam
{ /// <summary>
/// 设备所在的站点
/// </summary>
public string site { get; set; }
public string user { get; set; }
/// <summary>
/// SFC
/// </summary>
public string sfc { get; set; }
/// <summary>
/// 参数
/// </summary>
public GetParametricValueRequestData[] memberlist { get; set; }
}
}