StoreStation.cs
707 Bytes
using System;
using System.ComponentModel.DataAnnotations.Schema;
namespace WebRepository
{
/// <summary>
/// 暂存区信息表
/// </summary>
[Table("storeStation")]
public partial class StoreStation : SysEntity
{
public StoreStation()
{
}
/// <summary>
/// 站台
/// </summary>
[Column("stationCode")]
public string StationCode { get; set; }
/// <summary>
/// 状态
/// </summary>
[Column("status")]
public string Status { get; set; }
/// <summary>
/// 托盘号
/// </summary>
[Column("containerCode")]
public string ContainerCode { get; set; }
}
}