16 lines
404 B
C#
16 lines
404 B
C#
|
|
using Newtonsoft.Json;
|
||
|
|
|
||
|
|
namespace Alipay.AopSdk.Core.Response
|
||
|
|
{
|
||
|
|
/// <summary>
|
||
|
|
/// AlipayEcoCplifeBillBatchUploadResponse.
|
||
|
|
/// </summary>
|
||
|
|
public class AlipayEcoCplifeBillBatchUploadResponse : AopResponse
|
||
|
|
{
|
||
|
|
/// <summary>
|
||
|
|
/// 成功导入所有条目集合中的条目,则回传请求中的批次号
|
||
|
|
/// </summary>
|
||
|
|
[JsonProperty("batch_id")]
|
||
|
|
public string BatchId { get; set; }
|
||
|
|
}
|
||
|
|
}
|