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 Purchase_ProductionOrder
|
{
|
[Key]
|
public int Production_Id { get; set; }
|
|
[StringLength(50)]
|
public string ProductionCode { get; set; }
|
|
[StringLength(50)]
|
public string ProductionStatus { get; set; }
|
|
public int? FinishedSteps { get; set; }
|
|
public int Order_Id { get; set; }
|
|
[Required]
|
[StringLength(50)]
|
public string OrderCode { get; set; }
|
|
[StringLength(50)]
|
public string ProductionNumber { get; set; }
|
|
public int Provider_Id { get; set; }
|
|
[StringLength(50)]
|
public string ProviderCode { get; set; }
|
|
[StringLength(50)]
|
public string ProviderShortName { get; set; }
|
|
public long Product_Id { get; set; }
|
|
[StringLength(50)]
|
public string ProductCode { get; set; }
|
|
[StringLength(500)]
|
public string ProductName { get; set; }
|
|
[StringLength(500)]
|
public string ProductSpec { get; set; }
|
|
[StringLength(500)]
|
public string SpecAlias { get; set; }
|
|
public byte? CustomProduct { get; set; }
|
|
[StringLength(800)]
|
public string AppendParameter { get; set; }
|
|
[StringLength(50)]
|
public string SingleSignCode { get; set; }
|
|
public DateTime? ArrivedDate { get; set; }
|
|
[StringLength(500)]
|
public string Back { get; set; }
|
|
[StringLength(500)]
|
public string Collar { get; set; }
|
|
[StringLength(400)]
|
public string Url { get; set; }
|
|
[StringLength(350)]
|
public string ServerPath { get; set; }
|
|
[StringLength(350)]
|
public string LocalPath { get; set; }
|
|
[StringLength(250)]
|
public string FileName { get; set; }
|
|
public int? Enable { get; set; }
|
|
public string Remark { get; set; }
|
|
public int? OrderNo { 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? Consignor_Id { get; set; }
|
|
[StringLength(50)]
|
public string ConsignorCode { get; set; }
|
|
[StringLength(150)]
|
public string ConsignorName { get; set; }
|
|
public string ExpandFields { get; set; }
|
}
|
}
|