// ========= ColorModel.cs file =========
namespace Model
{
public class Parameter3D
{
///
/// 同步位号
///
public string TagNum { get; set; }
///
/// 按钮类别
///
public string ButtonType { get; set; }
///
/// 主项名称
///
public string ModelName { get; set; }
///
/// 管线号
///
public string Line_No { get; set; }
///
/// 已完成管线
///
public string Completed_pipeline { get; set; }
///
/// 未完成管线
///
public string Incomplete_pipeline { get; set; }
///
/// 已完成焊口
///
public string Completed_weldedjunction { get; set; }
///
/// 未完成焊口
///
public string Incomplete_weldjunction { get; set; }
///
/// 透明度
///
public string Transparency { get; set; }
///
/// 已完成颜色
///
public string Finished_color { get; set; }
///
/// 未完成颜色
///
public string Incomplete_color { get; set; }
///
/// 焊口台账中点击状态0、1、2(主项、管线、焊口)
///
public string Crater_data { get; set; }
///
/// 颜色模型
///
public ColorModel ColorModel { get; set; }
}
public class ColorModel
{
///
/// 管线未完成
///
public string PipelineNOComplete { get; set; }
///
/// 管线完成
///
public string PipelineComplete { get; set; }
///
/// 焊口未完成颜色
///
public string JointNOCompleteColor { get; set; }
///
/// 焊口完成颜色
///
public string JointCompleteColor { get; set; }
}
}