namespace IWareDataAccess.EF
|
{
|
using System;
|
using System.Collections.Generic;
|
using System.ComponentModel.DataAnnotations;
|
using System.ComponentModel.DataAnnotations.Schema;
|
using System.Data.Entity.Spatial;
|
|
public partial class View_ORDER_INORDER
|
{
|
/// <summary>
|
/// ÉóºËÈËID
|
/// </summary>
|
public int? CHECKERID { get; set; }
|
|
[DatabaseGenerated(DatabaseGeneratedOption.None)]
|
public int id { get; set; }
|
|
[StringLength(50)]
|
public string inOrderCode { get; set; }
|
|
[StringLength(50)]
|
public string orderType { get; set; }
|
|
[StringLength(50)]
|
public string orderStatus { get; set; }
|
|
/// <summary>
|
/// ¶©µ¥×´Ì¬ID
|
/// </summary>
|
public int? OrderStatusId { get; set; }
|
|
public int? totalNum { get; set; }
|
|
public int? DoneNum { get; set; }
|
|
public int? unLineNum { get; set; }
|
|
public int? allFinishedNum { get; set; }
|
|
public decimal? totalWeight { get; set; }
|
|
|
|
public int? isFinish { get; set; }
|
|
public DateTime? doTime { get; set; }
|
|
[StringLength(50)]
|
public string itemName { get; set; }
|
|
[StringLength(50)]
|
public string itemDes { get; set; }
|
|
public decimal? itemWeight { get; set; }
|
|
[StringLength(50)]
|
public string itemTYpe { get; set; }
|
|
public decimal? price { get; set; }
|
|
public int? enable { get; set; }
|
|
[StringLength(50)]
|
public string createLine { get; set; }
|
|
/// <summary>
|
/// ´´½¨ÈË
|
/// </summary>
|
[StringLength(50)]
|
public string createName { get; set; }
|
|
/// <summary>
|
/// ÐÞ¸ÄÈË
|
/// </summary>
|
public string updateName { get; set; }
|
|
|
/// <summary>
|
/// ÐÞ¸Äʱ¼ä
|
/// </summary>
|
public DateTime? updateTime { get; set; }
|
|
/// <summary>
|
/// ´´½¨Ê±¼ä
|
/// </summary>
|
public DateTime? createTime { get; set; }
|
|
|
public int? classNo { get; set; }
|
|
public int? status { get; set; }
|
|
[StringLength(50)]
|
public string checkerName { get; set; }
|
|
[StringLength(50)]
|
public string senderName { get; set; }
|
|
|
/// <summary>
|
/// ÉóºËʱ¼ä
|
/// </summary>
|
public DateTime? CheckTime { get; set; }
|
|
/// <summary>
|
/// ÉóºË½á¹û
|
/// </summary>
|
public string CheckResult { get; set; }
|
|
/// <summary>
|
/// Ìá½»ÉóºËʱ¼ä
|
/// </summary>
|
public DateTime? SendTime { get; set; }
|
|
/// <summary>
|
/// ÉóºËÀíÓÉ
|
/// </summary>
|
public string CheckRemark { get; set; }
|
}
|
}
|