using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace NextTreatMesDemo.Models
{
public class Rt_ProductionRecordDto
{
///
/// 操作员
///
public string userId { get; set; }
///
/// 设备ID
///
public string deviceId { get; set; }
///
/// 处理类型(光固化:UVcuring 光固化后处理:UVcuringNextTreat)
///
public string productionType { get; set; }
///
/// 生产时间。时间格式:1990-12-31T15:59:59.000+08:00
///
public string creationTime { get; set; }
///
/// 生产过程数据
///
public List description { get; set; }
}
}