30 lines
706 B
C#
30 lines
706 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using System.Threading.Tasks;
|
|
|
|
namespace WCS.BLL.Tool.Api.ApiModel
|
|
{
|
|
public class queryByBarResponse
|
|
{
|
|
public string materialBar { get; set; }
|
|
/// <summary>
|
|
///
|
|
/// </summary>
|
|
public string materialCode { get; set; }
|
|
/// <summary>
|
|
/// 有源蜂鸣器
|
|
/// </summary>
|
|
public string materialName { get; set; }
|
|
/// <summary>
|
|
/// TMB09A03/5X9电压3V
|
|
/// </summary>
|
|
public string materialSpec { get; set; }
|
|
|
|
public double materialQty { get; set; }
|
|
|
|
public string batchNo { get; set; }
|
|
}
|
|
}
|