You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

27 lines
806 B
C#

9 months ago
using System;
using System.Xml.Serialization;
using System.Collections.Generic;
using Aop.Api.Domain;
namespace Aop.Api.Response
{
/// <summary>
/// AlipayOfflineProviderEquipmentAuthQuerybypageResponse.
/// </summary>
public class AlipayOfflineProviderEquipmentAuthQuerybypageResponse : AopResponse
{
/// <summary>
/// 机具解绑按照条件分页查询返回信息
/// </summary>
[XmlArray("equipmentauthremovequerybypagelist")]
[XmlArrayItem("equipment_auth_remove_query_bypage_d_t_o")]
public List<EquipmentAuthRemoveQueryBypageDTO> Equipmentauthremovequerybypagelist { get; set; }
/// <summary>
/// 总记录数
/// </summary>
[XmlElement("total")]
public long Total { get; set; }
}
}