using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace IWareCC.Extend
{
///
/// 已经生成过的任务号集合
///
public class ExistTaskCodeListModel
{
///
/// 设备号
///
//public int device { get; set; }
///
/// 任务号
///
public string taskCode { get; set; }
///
/// 生成时间
///
public DateTime createTime { get; set; }
}
}