You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
|
|
using System;
|
|
|
|
using System.Collections.Generic;
|
|
|
|
using System.Linq;
|
|
|
|
using System.Text;
|
|
|
|
using System.Threading.Tasks;
|
|
|
|
|
|
|
|
namespace TaskManager.Entity
|
|
|
|
{
|
|
|
|
public class Data
|
|
|
|
{
|
|
|
|
/// <summary>
|
|
|
|
/// 批次号
|
|
|
|
/// </summary>
|
|
|
|
public string batchNo { get; set; }
|
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
/// API名称
|
|
|
|
/// </summary>
|
|
|
|
public string apiName { get; set; }
|
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
/// 获取的总记录数
|
|
|
|
/// </summary>
|
|
|
|
public int totalGet { get; set; }
|
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
/// 出错的总记录数
|
|
|
|
/// </summary>
|
|
|
|
public int totalError { get; set; }
|
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
/// 保存的总记录数
|
|
|
|
/// </summary>
|
|
|
|
public int totalSave { get; set; }
|
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
/// 操作时间
|
|
|
|
/// </summary>
|
|
|
|
public DateTime? time { get; set; }
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
public class QRReturnInfo
|
|
|
|
{
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
//{"code":200,"data":{"batchNo":"BYE4NER8EGYEHV9F51CELEOCBU6CPGYZ","apiName":"supplier_pro_attachment_data","totalGet":1,"totalError":0,"totalSave":1,"time":null},"message":"操作成功"}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
/// 返回信息,200成功,其他不成功
|
|
|
|
/// </summary>
|
|
|
|
public int code { get; set; }
|
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
/// 操作描述
|
|
|
|
/// </summary>
|
|
|
|
public string message { get; set; }
|
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
/// 数据信息: 本次推送总数
|
|
|
|
/// </summary>
|
|
|
|
public Data data { get; set; }
|
|
|
|
}
|
|
|
|
|
|
|
|
}
|