You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
43 lines
1.5 KiB
43 lines
1.5 KiB
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
|
|
namespace ICSSoft.Entity
|
|
{
|
|
/// <summary>
|
|
/// 获取条码信息
|
|
/// </summary>
|
|
public class BarCodeInformationModel
|
|
{
|
|
public string ID { get; set; }
|
|
public string ContainerCode { get; set; }
|
|
public string ContainerName { get; set; }
|
|
public string LotNo { get; set; }
|
|
public string InvCode { get; set; }
|
|
public string InvName { get; set; }
|
|
public string InvStd { get; set; }
|
|
public string Quantity { get; set; }
|
|
public string InvUnit { get; set; }
|
|
public string Amount { get; set; }
|
|
public string AmountUnit { get; set; }
|
|
public string WHCode { get; set; }
|
|
public string WHName { get; set; }
|
|
public string LocationCode { get; set; }
|
|
public string LocationName { get; set; }
|
|
public string ProjectCode { get; set; }
|
|
public string BatchCode { get; set; }
|
|
public string Version { get; set; }
|
|
public string Brand { get; set; }
|
|
public string cFree1 { get; set; }
|
|
public string cFree2 { get; set; }
|
|
public string cFree3 { get; set; }
|
|
public string cFree4 { get; set; }
|
|
public string cFree5 { get; set; }
|
|
public string cFree6 { get; set; }
|
|
public string cFree7 { get; set; }
|
|
public string cFree8 { get; set; }
|
|
public string cFree9 { get; set; }
|
|
public string cFree10 { get; set; }
|
|
}
|
|
}
|