using System; using System.Collections.Generic; using System.Linq; using System.Text; namespace QMAPP.FJC.Entity.View { /// /// 计划标签 /// public class PlanLabel { /// /// 计划号 /// public string PlanNo { get; set; } /// /// 计划类型(0:FIS,1:STOCK,2:INSERT) /// public string PlanType { get; set; }// /// /// 顺序号 /// public string SEQ { get; set; }// /// /// bom号 /// public string BOM { get; set; }// /// /// 底盘号 /// public string VIN { get; set; }// /// /// 车身号 /// public string KIN { get; set; }// /// /// 序号 /// public string SN { get; set; }// /// /// 总成物料号 /// public string PN { get; set; }// /// /// 总成物料名称 /// public string ProdName { get; set; }// /// /// 计划日期 /// public string PlanDate { get; set; }// /// /// 车型配置 /// public string HBType { get; set; } /// /// 项目代码 /// public string ProjectCode { get; set; } /// /// 颜色 /// public string Color { get; set; } } }