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_OUTORDER
|
{
|
[DatabaseGenerated(DatabaseGeneratedOption.None)]
|
public int id { get; set; }
|
|
[StringLength(50)]
|
public string outOrderCode { get; set; }
|
|
[StringLength(50)]
|
public string orderType { get; set; }
|
|
[StringLength(50)]
|
public string orderStatus { get; set; }
|
|
public DateTime? changeDate { get; set; }
|
|
public int? checkOutNum { get; set; }
|
|
public int? totalOutNum { get; set; }
|
|
public decimal? totalWeight { get; set; }
|
|
public DateTime? updateTime { get; set; }
|
|
public int? isFinish { get; set; }
|
|
public int? enable { get; set; }
|
|
public DateTime? doTime { get; set; }
|
|
[StringLength(50)]
|
public string itemName { get; set; }
|
|
[StringLength(50)]
|
public string itemDes { get; set; }
|
|
[StringLength(50)]
|
public string itemType { get; set; }
|
|
[StringLength(50)]
|
public string productionLineCode { get; set; }
|
|
[StringLength(50)]
|
public string productionLineName { get; set; }
|
|
public int? erpOrderId { get; set; }
|
|
public int? tranLine { get; set; }
|
|
public int? isErp { get; set; }
|
|
[StringLength(50)]
|
public string userName { get; set; }
|
|
public int? carUserId { get; set; }
|
}
|
}
|