namespace wcftest.orm
|
{
|
using System;
|
using System.Collections.Generic;
|
using System.ComponentModel.DataAnnotations;
|
using System.ComponentModel.DataAnnotations.Schema;
|
using System.Data.Entity.Spatial;
|
|
public partial class Base_StorageShelve
|
{
|
[Key]
|
public int StorageShelve_Id { get; set; }
|
|
[StringLength(50)]
|
public string AreaCode { get; set; }
|
|
public int Storage_Id { get; set; }
|
|
[StringLength(50)]
|
public string StorageName { get; set; }
|
|
[StringLength(50)]
|
public string ChannelCode { get; set; }
|
|
[StringLength(50)]
|
public string ShelveCode { get; set; }
|
|
public int? ColumnNum { get; set; }
|
|
public int? RowNum { get; set; }
|
|
[StringLength(50)]
|
public string PositionType { get; set; }
|
|
[StringLength(50)]
|
public string ColumnRegular { get; set; }
|
|
[StringLength(50)]
|
public string PositionRegular { get; set; }
|
|
public int? MaxCapacity { get; set; }
|
|
[StringLength(50)]
|
public string ShelvesRegular { get; set; }
|
|
[StringLength(50)]
|
public string ChannelRegular { get; set; }
|
|
[StringLength(50)]
|
public string RowRegular { get; set; }
|
|
public int? OrderNo { get; set; }
|
|
public int? CreateID { get; set; }
|
|
[StringLength(50)]
|
public string Creator { get; set; }
|
|
public DateTime? CreateDate { get; set; }
|
|
public int? ModifyID { get; set; }
|
|
[StringLength(50)]
|
public string Modifier { get; set; }
|
|
public DateTime? ModifyDate { get; set; }
|
|
public string ExpandFields { get; set; }
|
}
|
}
|