namespace yunneiWCS.ORM
|
{
|
using System;
|
using System.Collections.Generic;
|
using System.ComponentModel.DataAnnotations;
|
using System.ComponentModel.DataAnnotations.Schema;
|
using System.Data.Entity.Spatial;
|
|
public partial class System_TianYongEmptyBackLog
|
{
|
[StringLength(36)]
|
public string ID { get; set; }
|
|
[StringLength(128)]
|
public string station { get; set; }
|
|
[StringLength(50)]
|
public string isMoveEmptyByHand { get; set; }
|
|
public string dataList { get; set; }
|
|
public string jsonStr { get; set; }
|
|
[StringLength(128)]
|
public string Remark { get; set; }
|
|
[StringLength(128)]
|
public string Creator { get; set; }
|
|
public DateTime? CreateTime { get; set; }
|
}
|
}
|