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 LOG_WMSLOG
|
{
|
public int ID { get; set; }
|
|
[StringLength(50)]
|
public string LOGNAME { get; set; }
|
|
public string LOGDES { get; set; }
|
|
public DateTime? UPDATETIME { get; set; }
|
|
[StringLength(50)]
|
public string OPERATOR { get; set; }
|
|
public int? OPERATORID { get; set; }
|
|
public int? TYPE { get; set; }
|
|
[StringLength(50)]
|
public string DEC { get; set; }
|
}
|
}
|