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.
30 lines
671 B
C#
30 lines
671 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using System.Threading.Tasks;
|
|
|
|
namespace MaterialTraceability.WebService.Param
|
|
{
|
|
/// <summary>
|
|
/// 极片信息返回接口请求参数
|
|
/// </summary>
|
|
public class WarehouseIntegrationServiceServiceParam : BaseWebServiceParam
|
|
{
|
|
/// <summary>
|
|
/// 设备所在的站点
|
|
/// </summary>
|
|
public string site { get; set; }
|
|
|
|
/// <summary>
|
|
/// SFC
|
|
/// </summary>
|
|
public string sfc { get; set; }
|
|
|
|
/// <summary>
|
|
/// RFID
|
|
/// </summary>
|
|
public string rfid { get; set; }
|
|
}
|
|
}
|