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_TianYongLog
|
{
|
[StringLength(36)]
|
public string ID { get; set; }
|
|
[StringLength(128)]
|
public string sourcePlace { get; set; }
|
|
[StringLength(128)]
|
public string toPlace { get; set; }
|
|
[StringLength(128)]
|
public string taskId { get; set; }
|
|
[StringLength(128)]
|
public string taskTypeName { get; set; }
|
|
[StringLength(128)]
|
public string taskName { get; set; }
|
|
[StringLength(100)]
|
public string materialCode { get; set; }
|
|
[StringLength(100)]
|
public string materialName { get; set; }
|
|
[StringLength(100)]
|
public string version { get; set; }
|
|
[StringLength(100)]
|
public string supplier { get; set; }
|
|
[StringLength(100)]
|
public string containerCode { get; set; }
|
|
public int? qty { get; set; }
|
|
[StringLength(128)]
|
public string tianyongFun { get; set; }
|
|
[StringLength(128)]
|
public string tianyongResult { get; set; }
|
|
[StringLength(128)]
|
public string ty_station { get; set; }
|
|
[StringLength(128)]
|
public string ty_OutOrIn { get; set; }
|
|
[StringLength(128)]
|
public string ty_taskId { get; set; }
|
|
[StringLength(128)]
|
public string ty_quantity { get; set; }
|
|
[StringLength(128)]
|
public string ty_materialCode { get; set; }
|
|
[StringLength(128)]
|
public string Remark { get; set; }
|
|
[StringLength(128)]
|
public string Creator { get; set; }
|
|
public DateTime? CreateTime { get; set; }
|
}
|
}
|