namespace yunneiPda.orm
|
{
|
using System;
|
using System.Collections.Generic;
|
using System.ComponentModel.DataAnnotations;
|
using System.ComponentModel.DataAnnotations.Schema;
|
using System.Data.Entity.Spatial;
|
|
[Table("productStock")]
|
public partial class productStock
|
{
|
[Key]
|
public long stockId { get; set; }
|
|
public long positionId { get; set; }
|
|
public long materialId { get; set; }
|
|
public int? quantity { get; set; }
|
|
[StringLength(50)]
|
public string supplier { get; set; }
|
|
public int? taskType { get; set; }
|
|
public int? status { get; set; }
|
|
[StringLength(50)]
|
public string containerCode { get; set; }
|
|
[StringLength(50)]
|
public string creator { get; set; }
|
|
public DateTime? createTime { get; set; }
|
|
public DateTime? updateTime { get; set; }
|
|
[StringLength(50)]
|
public string productCode { get; set; }
|
}
|
}
|