using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
using System.IO;
namespace HXX.Scanner.Biz.Socket
{
///
/// 返回 全部上传结束
///
public class response_getFailedImage : response_base
{
public response_getFailedImage()
{
action = "getFailedImage";
data = new List();
}
///
/// 科目
///
public string subjectCode { get; set; }
public List data { get; set; }
}
public class response_getFailedImage_data
{
public string batchNumber { get; set; }
public int failedNumber { get; set; }
}
//public class response_getFailedImage_data
//{
// ///
// /// 批次号
// ///
// public string batchNumber { get; set; }
// ///
// /// 文件唯一索引
// ///
// public int fileIndex { get; set; }
// ///
// /// 文件名
// ///
// public string fileName { get; set; }
// ///
// /// 文件名包含路径
// ///
// public string fileFullName { get; set; }
// ///
// /// 网页加载的文件地址
// ///
// public string fileUrl { get; set; }
//}
}