using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
namespace CnasSynchrousModel
{
public class UpLoadRecord
{
///
/// 唯一标识
///
public string GUID { get; set; }
///
/// 化验数据ID
///
public string LaboratoryTestGUID { get; set; }
///
/// 上传人
///
public string UpLoadUser { get; set; }
///
/// 上传时间
///
public DateTime UpLoadTime { get; set; }
}
}