namespace wcftest.orm
|
{
|
using System;
|
using System.Collections.Generic;
|
using System.ComponentModel.DataAnnotations;
|
using System.ComponentModel.DataAnnotations.Schema;
|
using System.Data.Entity.Spatial;
|
|
[Table("SapSendFailRecodInfo")]
|
public partial class SapSendFailRecodInfo
|
{
|
public int ID { get; set; }
|
|
public int? MoveType { get; set; }
|
|
[StringLength(100)]
|
public string MoveTypeName { get; set; }
|
|
[StringLength(100)]
|
public string MaterialCode { get; set; }
|
|
[StringLength(200)]
|
public string MaterialName { get; set; }
|
|
[StringLength(200)]
|
public string PoCode { get; set; }
|
|
[StringLength(200)]
|
public string SalesOrder { get; set; }
|
|
[StringLength(200)]
|
public string TrackingCode { get; set; }
|
|
[StringLength(200)]
|
public string ItemNumber { get; set; }
|
|
[StringLength(200)]
|
public string SpecAlias { get; set; }
|
|
[StringLength(200)]
|
public string BigUnit { get; set; }
|
|
[StringLength(200)]
|
public string ProductBarCode { get; set; }
|
|
public decimal? Quantity { get; set; }
|
|
[StringLength(500)]
|
public string WorkOrder { 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; }
|
|
[StringLength(2000)]
|
public string RetResult { get; set; }
|
|
[StringLength(2000)]
|
public string RetMsg { get; set; }
|
|
public string SendSapData { get; set; }
|
|
public string Remark { get; set; }
|
}
|
}
|