namespace yunneiPda.orm
|
{
|
using System;
|
using System.Collections.Generic;
|
using System.ComponentModel.DataAnnotations;
|
using System.ComponentModel.DataAnnotations.Schema;
|
using System.Data.Entity.Spatial;
|
|
[Table("productStockList")]
|
public partial class productStockList
|
{
|
[Key]
|
public long stockListId { get; set; }
|
|
public long? stockId { get; set; }
|
|
[StringLength(50)]
|
public string productCode { get; set; }
|
|
[StringLength(50)]
|
public string productName { get; set; }
|
|
[StringLength(50)]
|
public string serialNumber { get; set; }
|
|
public int? status { get; set; }
|
}
|
}
|