using System.Collections.Generic;
namespace GZ_LTHPilot_ORDER.Models.K3Result.Model
{
///
/// 返回类
///
public class K3CloudResult
{
///
/// 响应对象
///
public K3CloudResponseStatus ResponseStatus { get; set; }
///
/// 转换响应对象
///
public K3CloudResponseStatus ConvertResponseStatus { get; set; }
///
/// 返回结果,用于查看单据
///
public object Result { get; set; }
///
/// 开始索引
///
public long? StartIndex { get; set; }
///
/// 是否最后
///
public bool? IsLast { get; set; }
///
/// 文件大小
///
public long? FileSize { get; set; }
///
/// 文件名称
///
public string FileName { get; set; }
///
/// 文件内容(Base64)
///
public string FilePart { get; set; }
///
/// 返回数据行数
///
public int? RowCount { get; set; }
public List Rows { get; set; }
}
}