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 vCIQ_HZ_Storage
|
{
|
[StringLength(50)]
|
public string manualId { get; set; }
|
|
[Key]
|
[Column(Order = 0)]
|
[DatabaseGenerated(DatabaseGeneratedOption.None)]
|
public long Product_Id { get; set; }
|
|
[Key]
|
[Column(Order = 1)]
|
[StringLength(50)]
|
public string sourceNo { get; set; }
|
|
[Key]
|
[Column(Order = 2)]
|
[StringLength(500)]
|
public string ProductName { get; set; }
|
|
[Key]
|
[Column(Order = 3)]
|
[StringLength(300)]
|
public string ProductModel { get; set; }
|
|
public string ProductSpec { get; set; }
|
|
[Key]
|
[Column(Order = 4)]
|
public DateTime inventoryTime { get; set; }
|
|
[StringLength(50)]
|
public string goodsUnit { get; set; }
|
|
[Key]
|
[Column(Order = 5)]
|
[StringLength(50)]
|
public string storageLocation { get; set; }
|
|
[StringLength(100)]
|
public string itemType { get; set; }
|
|
public int? goodsQuantity { get; set; }
|
|
public string Remark { get; set; }
|
}
|
}
|