You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
64 lines
1.4 KiB
64 lines
1.4 KiB
6 months ago
|
using System;
|
||
|
using System.Collections.Generic;
|
||
|
using System.Linq;
|
||
|
using System.Text;
|
||
|
using System.Threading.Tasks;
|
||
|
|
||
|
namespace MESClassLibrary.Model
|
||
|
{
|
||
|
public class TESBomModel
|
||
|
{
|
||
|
public string ParentPart { get; set; }
|
||
|
|
||
|
public string ComponentPart { get; set; }
|
||
|
|
||
|
public string Reference { get; set; }
|
||
|
|
||
|
public string StartEffective { get; set; }
|
||
|
|
||
|
public string QuantityPer { get; set; }
|
||
|
|
||
|
public string StructureType { get; set; }
|
||
|
|
||
|
public string EndEffective { get; set; }
|
||
|
|
||
|
public string Remarks { get; set; }
|
||
|
|
||
|
public string Scrap { get; set; }
|
||
|
|
||
|
public string LeadTimeOffset { get; set; }
|
||
|
|
||
|
public string Operation { get; set; }
|
||
|
|
||
|
public string SequenceNumber { get; set; }
|
||
|
|
||
|
public string FporecastPercent { get; set; }
|
||
|
|
||
|
public string OptionGroup { get; set; }
|
||
|
|
||
|
public string Process { get; set; }
|
||
|
|
||
|
public string GUID { get; set; }
|
||
|
|
||
|
public string UID { get; set; }
|
||
|
|
||
|
public string CreateUser { get; set; }
|
||
|
|
||
|
public string CreateTime { get; set; }
|
||
|
|
||
|
public string Remark { get; set; }
|
||
|
|
||
|
public string TaskID { get; set; }
|
||
|
|
||
|
public string CommandType { get; set; }
|
||
|
|
||
|
public string DataID { get; set; }
|
||
|
|
||
|
public string Domain { get; set; }
|
||
|
|
||
|
public string Site { get; set; }
|
||
|
|
||
|
public int Flag { get; set; }
|
||
|
}
|
||
|
}
|