333
This commit is contained in:
142
IO.Swagger/Model/DealerSearchRequest.cs
Normal file
142
IO.Swagger/Model/DealerSearchRequest.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>
|
||||
/// 加盟商请求参数
|
||||
/// </summary>
|
||||
[DataContract]
|
||||
public partial class DealerSearchRequest : IEquatable<DealerSearchRequest>, IValidatableObject
|
||||
{
|
||||
/// <summary>
|
||||
/// Initializes a new instance of the <see cref="DealerSearchRequest" /> class.
|
||||
/// </summary>
|
||||
/// <param name="startEditTime">开始时间.</param>
|
||||
/// <param name="endEditTime">结束时间.</param>
|
||||
public DealerSearchRequest(DateTime? startEditTime = default(DateTime?), DateTime? endEditTime = default(DateTime?))
|
||||
{
|
||||
this.StartEditTime = startEditTime;
|
||||
this.EndEditTime = endEditTime;
|
||||
}
|
||||
|
||||
/// <summary>
|
||||
/// 开始时间
|
||||
/// </summary>
|
||||
/// <value>开始时间</value>
|
||||
[DataMember(Name="startEditTime", EmitDefaultValue=false)]
|
||||
public DateTime? StartEditTime { get; set; }
|
||||
|
||||
/// <summary>
|
||||
/// 结束时间
|
||||
/// </summary>
|
||||
/// <value>结束时间</value>
|
||||
[DataMember(Name="endEditTime", EmitDefaultValue=false)]
|
||||
public DateTime? EndEditTime { 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 DealerSearchRequest {\n");
|
||||
sb.Append(" StartEditTime: ").Append(StartEditTime).Append("\n");
|
||||
sb.Append(" EndEditTime: ").Append(EndEditTime).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 DealerSearchRequest);
|
||||
}
|
||||
|
||||
/// <summary>
|
||||
/// Returns true if DealerSearchRequest instances are equal
|
||||
/// </summary>
|
||||
/// <param name="input">Instance of DealerSearchRequest to be compared</param>
|
||||
/// <returns>Boolean</returns>
|
||||
public bool Equals(DealerSearchRequest input)
|
||||
{
|
||||
if (input == null)
|
||||
return false;
|
||||
|
||||
return
|
||||
(
|
||||
this.StartEditTime == input.StartEditTime ||
|
||||
(this.StartEditTime != null &&
|
||||
this.StartEditTime.Equals(input.StartEditTime))
|
||||
) &&
|
||||
(
|
||||
this.EndEditTime == input.EndEditTime ||
|
||||
(this.EndEditTime != null &&
|
||||
this.EndEditTime.Equals(input.EndEditTime))
|
||||
);
|
||||
}
|
||||
|
||||
/// <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.StartEditTime != null)
|
||||
hashCode = hashCode * 59 + this.StartEditTime.GetHashCode();
|
||||
if (this.EndEditTime != null)
|
||||
hashCode = hashCode * 59 + this.EndEditTime.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