using System;
|
using System.Collections.Generic;
|
using System.Linq;
|
using System.Text;
|
using SqlSugar;
|
|
|
namespace JiepeiWMS.Model.Models
|
{
|
///<summary>
|
///
|
///</summary>
|
[SugarTable("WMOrderInfo", "Jiepei_WMS")]
|
public class WMOrderInfo
|
{
|
public WMOrderInfo()
|
{
|
}
|
|
[SugarColumn(IsPrimaryKey = true, IsIdentity = true)]
|
public int Id { get; set; }
|
|
public string OrderNo { get; set; }
|
|
public int Num { get; set; }
|
|
public decimal TotalMoney { get; set; }
|
|
public decimal CostMoney { get; set; }
|
|
public decimal TotalArea { get; set; }
|
|
public int TypeValue { get; set; }
|
|
public int CodeType { get; set; }
|
|
public string TgValue { get; set; }
|
|
public int Layers { get; set; }
|
|
public decimal Thickness { get; set; }
|
|
public string Surface { get; set; }
|
|
public decimal InnerCopperThickness { get; set; }
|
|
public decimal CopperThickness { get; set; }
|
|
public string SolderTopColor { get; set; }
|
|
public string SolderDownColor { get; set; }
|
|
public string FontTopColor { get; set; }
|
|
public string FontDownColor { get; set; }
|
|
public string FlyingTest { get; set; }
|
|
public int MaterialType { get; set; }
|
|
public bool IsHaveLead { get; set; }
|
|
public decimal SinglePoint { get; set; }
|
|
public decimal SingleInsertPoint { get; set; }
|
|
public bool IsBrushThreeLacquer { get; set; }
|
|
public bool IsBurn { get; set; }
|
|
public bool IsSmtTest { get; set; }
|
|
public decimal Width { get; set; }
|
|
public decimal Height { get; set; }
|
|
public bool IsElectropolishing { get; set; }
|
|
public int ReferenceHole { get; set; }
|
|
public string BomCategory { get; set; }
|
|
public decimal AccuracyValue { get; set; }
|
|
}
|
}
|