using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace SLH.SSDMS.Model.DTO
{
///
/// 视图层数据封装
///
public class ViewModelDTO
{
///
/// Desc:标识
/// Default:
/// Nullable:False
///
public int objId { get; set; }
///
/// Desc:rfid标签号
/// Default:
/// Nullable:True
///
public string rfidCode { get; set; }
///
/// Desc:生产年
/// Default:
/// Nullable:True
///
public string proYear { get; set; }
///
/// Desc:生产月
/// Default:
/// Nullable:True
///
public string proMonth { get; set; }
///
/// Desc:生产机台
/// Default:
/// Nullable:True
///
public string proMachine { get; set; }
///
/// Desc:带强
/// Default:
/// Nullable:True
///
public string beltStrength { get; set; }
///
/// Desc:带宽
/// Default:
/// Nullable:True
///
public string beltWidth { get; set; }
///
/// Desc:上胶厚度
/// Default:
/// Nullable:True
///
public string upGlueThick { get; set; }
///
/// Desc:连接符
/// Default:
/// Nullable:True
///
public string unionSymbol { get; set; }
///
/// Desc:下胶厚度
/// Default:
/// Nullable:True
///
public string downGlueThick { get; set; }
///
/// Desc:盖胶级别
/// Default:
/// Nullable:True
///
public string coverGlueLevel { get; set; }
///
/// Desc:卷号
/// Default:
/// Nullable:True
///
public string lotNum { get; set; }
///
/// Desc:RFID序号
/// Default:
/// Nullable:True
///
public string rfidOrder { get; set; }
///
/// Desc:RFID前间隔
/// Default:
/// Nullable:True
///
public int preDistance { get; set; }
///
/// Desc:RFID后间隔
/// Default:
/// Nullable:True
///
public int aftDistance { get; set; }
///
/// Desc:记录时间
/// Default:
/// Nullable:True
///
public DateTime readTime { get; set; }
///
/// 速度
///
public decimal speed { get; set; }
///
/// 距离
///
public decimal distance { get; set; }
///
/// 上机时间
///
public DateTime boardTime { get; set; }
///
/// 更换标识
///
public int updateFlag { get; set; }
///
/// 累计运行时长
///
public decimal runTime { get; set; }
///
/// 终端地址
///
public string terminal { get; set; }
///
/// 胶带数量
///
public int beltSum { get; set; }
///
/// 运转方向 0-正转;1-反转
///
public int orderFlag { get; set; }
///
/// 首次读取时间
///
public string firstTime { get; set; }
///
/// 运载流量
///
public decimal carryFlow { get; set; }
///
/// 总作业量
///
public decimal titalWorkLoad { get; set; }
}
}