namespace yunneiPda.orm
|
{
|
using System;
|
using System.Collections.Generic;
|
using System.ComponentModel.DataAnnotations;
|
using System.ComponentModel.DataAnnotations.Schema;
|
using System.Data.Entity.Spatial;
|
|
[Table("originalSerialNumber")]
|
public partial class originalSerialNumber
|
{
|
public long id { get; set; }
|
|
[StringLength(50)]
|
public string productCode { get; set; }
|
|
[StringLength(50)]
|
public string serialNumber { get; set; }
|
|
[StringLength(50)]
|
public string containerCode { get; set; }
|
|
public int? positionType { get; set; }
|
|
public DateTime? createTime { get; set; }
|
}
|
}
|