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.
37 lines
647 B
C#
37 lines
647 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
|
|
|
|
public class CarInfo
|
|
{
|
|
|
|
public int LineAreaId { get; set; }
|
|
/// <summary>
|
|
/// 小车号
|
|
/// </summary>
|
|
public string CarNo { get; set; }
|
|
|
|
/// <summary>
|
|
/// 物料号
|
|
/// </summary>
|
|
public string MaterialNo { get; set; }
|
|
|
|
/// <summary>
|
|
/// 物料号
|
|
/// </summary>
|
|
public string MaterialBarNo { get; set; }
|
|
/// <summary>
|
|
/// 预出库
|
|
/// </summary>
|
|
public int IsPreOut { get; set; }
|
|
|
|
/// <summary>
|
|
/// 正在出库
|
|
/// </summary>
|
|
public int IsOutLocator { get; set; }
|
|
|
|
|
|
}
|