namespace iWareDataCore.ORM
|
{
|
using System;
|
using System.Collections.Generic;
|
using System.ComponentModel.DataAnnotations;
|
using System.ComponentModel.DataAnnotations.Schema;
|
using System.Data.Entity.Spatial;
|
|
[Table("BASEMaterialClass")]
|
public partial class BASEMaterialClass
|
{
|
public int id { get; set; }
|
|
[Required]
|
[StringLength(50)]
|
public string materialno { get; set; }
|
|
[StringLength(50)]
|
public string articletype { get; set; }
|
|
[StringLength(50)]
|
public string grade { get; set; }
|
|
[StringLength(50)]
|
public string classification { get; set; }
|
|
[StringLength(50)]
|
public string profiletype { get; set; }
|
|
[StringLength(50)]
|
public string length { get; set; }
|
|
[StringLength(50)]
|
public string density { get; set; }
|
|
[StringLength(50)]
|
public string webheight { get; set; }
|
|
[StringLength(50)]
|
public string webthickness { get; set; }
|
|
[StringLength(50)]
|
public string flangewidth { get; set; }
|
|
[StringLength(50)]
|
public string flangethickness { get; set; }
|
|
[StringLength(50)]
|
public string sectiondim { get; set; }
|
|
[StringLength(50)]
|
public string unitweight { get; set; }
|
|
public DateTime? createtime { get; set; }
|
}
|
}
|