namespace yunneiPda.orm
|
{
|
using System;
|
using System.Collections.Generic;
|
using System.ComponentModel.DataAnnotations;
|
using System.ComponentModel.DataAnnotations.Schema;
|
using System.Data.Entity.Spatial;
|
|
public partial class v_outStockList
|
{
|
[DatabaseGenerated(DatabaseGeneratedOption.None)]
|
public int id { get; set; }
|
|
[StringLength(50)]
|
public string outStockOrder { get; set; }
|
|
[StringLength(50)]
|
public string materialCode { get; set; }
|
|
[StringLength(50)]
|
public string materialName { get; set; }
|
|
public int? quantity { get; set; }
|
|
[StringLength(50)]
|
public string creator { get; set; }
|
|
public DateTime? createTime { get; set; }
|
|
[StringLength(100)]
|
public string version { get; set; }
|
|
[StringLength(100)]
|
public string supplier { get; set; }
|
|
[StringLength(100)]
|
public string containerCode { get; set; }
|
|
[StringLength(50)]
|
public string sourcePlace { get; set; }
|
|
[StringLength(50)]
|
public string middlePlace { get; set; }
|
|
[StringLength(50)]
|
public string toPlace { get; set; }
|
}
|
}
|