namespace wcftest.orm
|
{
|
using System;
|
using System.Collections.Generic;
|
using System.ComponentModel.DataAnnotations;
|
using System.ComponentModel.DataAnnotations.Schema;
|
using System.Data.Entity.Spatial;
|
|
public partial class Qimen_Order_Pending
|
{
|
[Key]
|
public long Pending_Id { get; set; }
|
|
[StringLength(50)]
|
public string actionType { get; set; }
|
|
[StringLength(50)]
|
public string warehouseCode { get; set; }
|
|
[StringLength(50)]
|
public string ownerCode { get; set; }
|
|
[StringLength(50)]
|
public string orderCode { get; set; }
|
|
[StringLength(50)]
|
public string orderId { get; set; }
|
|
[StringLength(50)]
|
public string orderType { get; set; }
|
|
[StringLength(50)]
|
public string reason { get; set; }
|
|
public int? CreateID { get; set; }
|
|
[StringLength(50)]
|
public string Creator { get; set; }
|
|
public DateTime? CreateDate { get; set; }
|
|
public int? ModifyID { get; set; }
|
|
[StringLength(50)]
|
public string Modifier { get; set; }
|
|
public DateTime? ModifyDate { get; set; }
|
|
public int? StoreInfo_Id { get; set; }
|
|
[StringLength(500)]
|
public string StoreName { get; set; }
|
|
public string ExpandFields { get; set; }
|
}
|
}
|