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 Wms_outInStockRecord
|
{
|
public int ID { get; set; }
|
|
public int? outInFlag { get; set; }
|
|
[StringLength(100)]
|
public string outInFlagName { get; set; }
|
|
[StringLength(128)]
|
public string taskId { get; set; }
|
|
public int? taskType { get; set; }
|
|
[StringLength(128)]
|
public string taskTypeName { get; set; }
|
|
[StringLength(128)]
|
public string taskName { get; set; }
|
|
[Required]
|
[StringLength(128)]
|
public string sourcePlace { get; set; }
|
|
[Required]
|
[StringLength(128)]
|
public string toPlace { 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; }
|
|
public int? isSendToMes { get; set; }
|
|
public DateTime? SendToMesTime { get; set; }
|
|
[StringLength(128)]
|
public string MesRet { get; set; }
|
|
[StringLength(128)]
|
public string Remark { get; set; }
|
|
[StringLength(128)]
|
public string Creator { get; set; }
|
|
public DateTime? CreateTime { get; set; }
|
|
[StringLength(128)]
|
public string LastModifier { get; set; }
|
|
public DateTime? LastModifyTime { get; set; }
|
}
|
}
|