namespace wcftest
|
{
|
using System;
|
using System.Collections.Generic;
|
using System.ComponentModel.DataAnnotations;
|
using System.ComponentModel.DataAnnotations.Schema;
|
using System.Data.Entity.Spatial;
|
|
[Table("ChaiDieTransport")]
|
public partial class ChaiDieTransport
|
{
|
public int id { get; set; }
|
|
public int type { get; set; }
|
|
public int status { get; set; }
|
|
[StringLength(20)]
|
public string name { get; set; }
|
|
public DateTime createtime { get; set; }
|
|
public DateTime updatetime { get; set; }
|
|
public int dev { get; set; }
|
|
[StringLength(20)]
|
public string devname { get; set; }
|
}
|
}
|