namespace wcftest.orm
|
{
|
using System;
|
using System.Collections.Generic;
|
using System.ComponentModel.DataAnnotations;
|
using System.ComponentModel.DataAnnotations.Schema;
|
using System.Data.Entity.Spatial;
|
|
[Table("containerType")]
|
public partial class containerType
|
{
|
public int Id { get; set; }
|
|
[StringLength(50)]
|
public string ContainerCode { get; set; }
|
|
[StringLength(50)]
|
public string ContainerName { get; set; }
|
|
[Column("ContainerType")]
|
public int? ContainerType1 { get; set; }
|
|
public decimal? Length { get; set; }
|
|
public decimal? Width { get; set; }
|
|
public decimal? Height { get; set; }
|
|
public decimal? Weight { get; set; }
|
|
public int? Void { get; set; }
|
|
public DateTime? UpdateTime { get; set; }
|
}
|
}
|