namespace siemensSapService.orm
|
{
|
using System;
|
using System.Collections.Generic;
|
using System.ComponentModel.DataAnnotations;
|
using System.ComponentModel.DataAnnotations.Schema;
|
using System.Data.Entity.Spatial;
|
|
[Table("containerType11")] //sortingList
|
public partial class containerType11
|
{
|
|
public int Id { get; set; }
|
|
[StringLength(50)]
|
public string ContainerCode { get; set; }
|
[StringLength(50)]
|
public string ContainerName { 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; }
|
}
|
}
|