namespace IWareDataAccess.EF
|
{
|
using System;
|
using System.Collections.Generic;
|
using System.ComponentModel.DataAnnotations;
|
using System.ComponentModel.DataAnnotations.Schema;
|
using System.Data.Entity.Spatial;
|
|
public partial class BASE_DESTINATION
|
{
|
public int ID { get; set; }
|
|
[StringLength(50)]
|
public string DESTINATIONNAME { get; set; }
|
|
[StringLength(50)]
|
public string DESTINATIONCODE { get; set; }
|
|
[StringLength(50)]
|
public string SUPERIORNAME { get; set; }
|
|
public int? ENABLE { get; set; }
|
|
public DateTime? UPDATETIME { get; set; }
|
|
public int? CREATOR { get; set; }
|
|
public virtual SYS_USER SYS_USER { get; set; }
|
}
|
}
|