333
This commit is contained in:
142
IO.Swagger/Model/PageResultNcGoodsListInfo.cs
Normal file
142
IO.Swagger/Model/PageResultNcGoodsListInfo.cs
Normal file
@@ -0,0 +1,142 @@
|
||||
/*
|
||||
* 后台API
|
||||
*
|
||||
* No description provided (generated by Swagger Codegen https://github.com/swagger-api/swagger-codegen)
|
||||
*
|
||||
* OpenAPI spec version: Admin
|
||||
*
|
||||
* Generated by: https://github.com/swagger-api/swagger-codegen.git
|
||||
*/
|
||||
|
||||
using System;
|
||||
using System.Linq;
|
||||
using System.IO;
|
||||
using System.Text;
|
||||
using System.Text.RegularExpressions;
|
||||
using System.Collections;
|
||||
using System.Collections.Generic;
|
||||
using System.Collections.ObjectModel;
|
||||
using System.Runtime.Serialization;
|
||||
using Newtonsoft.Json;
|
||||
using Newtonsoft.Json.Converters;
|
||||
using System.ComponentModel.DataAnnotations;
|
||||
using SwaggerDateConverter = IO.Swagger.Client.SwaggerDateConverter;
|
||||
|
||||
namespace IO.Swagger.Model
|
||||
{
|
||||
/// <summary>
|
||||
/// PageResultNcGoodsListInfo
|
||||
/// </summary>
|
||||
[DataContract]
|
||||
public partial class PageResultNcGoodsListInfo : IEquatable<PageResultNcGoodsListInfo>, IValidatableObject
|
||||
{
|
||||
/// <summary>
|
||||
/// Initializes a new instance of the <see cref="PageResultNcGoodsListInfo" /> class.
|
||||
/// </summary>
|
||||
/// <param name="total">分页查询中的记录总数.</param>
|
||||
/// <param name="dataList">分页查询中结果集合.</param>
|
||||
public PageResultNcGoodsListInfo(int? total = default(int?), List<NcGoodsListInfo> dataList = default(List<NcGoodsListInfo>))
|
||||
{
|
||||
this.Total = total;
|
||||
this.DataList = dataList;
|
||||
}
|
||||
|
||||
/// <summary>
|
||||
/// 分页查询中的记录总数
|
||||
/// </summary>
|
||||
/// <value>分页查询中的记录总数</value>
|
||||
[DataMember(Name="total", EmitDefaultValue=false)]
|
||||
public int? Total { get; set; }
|
||||
|
||||
/// <summary>
|
||||
/// 分页查询中结果集合
|
||||
/// </summary>
|
||||
/// <value>分页查询中结果集合</value>
|
||||
[DataMember(Name="dataList", EmitDefaultValue=false)]
|
||||
public List<NcGoodsListInfo> DataList { get; set; }
|
||||
|
||||
/// <summary>
|
||||
/// Returns the string presentation of the object
|
||||
/// </summary>
|
||||
/// <returns>String presentation of the object</returns>
|
||||
public override string ToString()
|
||||
{
|
||||
var sb = new StringBuilder();
|
||||
sb.Append("class PageResultNcGoodsListInfo {\n");
|
||||
sb.Append(" Total: ").Append(Total).Append("\n");
|
||||
sb.Append(" DataList: ").Append(DataList).Append("\n");
|
||||
sb.Append("}\n");
|
||||
return sb.ToString();
|
||||
}
|
||||
|
||||
/// <summary>
|
||||
/// Returns the JSON string presentation of the object
|
||||
/// </summary>
|
||||
/// <returns>JSON string presentation of the object</returns>
|
||||
public virtual string ToJson()
|
||||
{
|
||||
return JsonConvert.SerializeObject(this, Formatting.Indented);
|
||||
}
|
||||
|
||||
/// <summary>
|
||||
/// Returns true if objects are equal
|
||||
/// </summary>
|
||||
/// <param name="input">Object to be compared</param>
|
||||
/// <returns>Boolean</returns>
|
||||
public override bool Equals(object input)
|
||||
{
|
||||
return this.Equals(input as PageResultNcGoodsListInfo);
|
||||
}
|
||||
|
||||
/// <summary>
|
||||
/// Returns true if PageResultNcGoodsListInfo instances are equal
|
||||
/// </summary>
|
||||
/// <param name="input">Instance of PageResultNcGoodsListInfo to be compared</param>
|
||||
/// <returns>Boolean</returns>
|
||||
public bool Equals(PageResultNcGoodsListInfo input)
|
||||
{
|
||||
if (input == null)
|
||||
return false;
|
||||
|
||||
return
|
||||
(
|
||||
this.Total == input.Total ||
|
||||
(this.Total != null &&
|
||||
this.Total.Equals(input.Total))
|
||||
) &&
|
||||
(
|
||||
this.DataList == input.DataList ||
|
||||
this.DataList != null &&
|
||||
this.DataList.SequenceEqual(input.DataList)
|
||||
);
|
||||
}
|
||||
|
||||
/// <summary>
|
||||
/// Gets the hash code
|
||||
/// </summary>
|
||||
/// <returns>Hash code</returns>
|
||||
public override int GetHashCode()
|
||||
{
|
||||
unchecked // Overflow is fine, just wrap
|
||||
{
|
||||
int hashCode = 41;
|
||||
if (this.Total != null)
|
||||
hashCode = hashCode * 59 + this.Total.GetHashCode();
|
||||
if (this.DataList != null)
|
||||
hashCode = hashCode * 59 + this.DataList.GetHashCode();
|
||||
return hashCode;
|
||||
}
|
||||
}
|
||||
|
||||
/// <summary>
|
||||
/// To validate all properties of the instance
|
||||
/// </summary>
|
||||
/// <param name="validationContext">Validation context</param>
|
||||
/// <returns>Validation Result</returns>
|
||||
IEnumerable<System.ComponentModel.DataAnnotations.ValidationResult> IValidatableObject.Validate(ValidationContext validationContext)
|
||||
{
|
||||
yield break;
|
||||
}
|
||||
}
|
||||
|
||||
}
|
||||
Reference in New Issue
Block a user