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 vBase_ProductPosition_RealTime
|
{
|
public long? ProductPosition_Id { get; set; }
|
|
public int? Storage_Id { get; set; }
|
|
[StringLength(50)]
|
public string StorageName { get; set; }
|
|
[StringLength(50)]
|
public string PositionName { get; set; }
|
|
[StringLength(400)]
|
public string PositionType { get; set; }
|
|
[Key]
|
[Column(Order = 0)]
|
[DatabaseGenerated(DatabaseGeneratedOption.None)]
|
public long Product_Id { get; set; }
|
|
[Key]
|
[Column(Order = 1)]
|
[StringLength(50)]
|
public string ProductCode { get; set; }
|
|
[StringLength(500)]
|
public string ProductName { get; set; }
|
|
[Key]
|
[Column(Order = 2)]
|
[StringLength(300)]
|
public string ProductModel { get; set; }
|
|
public string ProductSpec { get; set; }
|
|
[StringLength(50)]
|
public string PlateCode { get; set; }
|
|
public int? ValidQty { get; set; }
|
|
public int? ProductStorage { get; set; }
|
|
[Key]
|
[Column(Order = 3)]
|
[StringLength(4)]
|
public string ActionStatus { get; set; }
|
|
[StringLength(150)]
|
public string BillCode { get; set; }
|
|
public int? Consignor_Id { get; set; }
|
|
[StringLength(150)]
|
public string ConsignorCode { get; set; }
|
|
[StringLength(150)]
|
public string ConsignorName { get; set; }
|
}
|
}
|