2025-04-21 14:10:27 +08:00

143 lines
4.5 KiB
C#

/*
* 后台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>
/// SendMsgAct
/// </summary>
[DataContract]
public partial class SendMsgAct : IEquatable<SendMsgAct>, IValidatableObject
{
/// <summary>
/// Initializes a new instance of the <see cref="SendMsgAct" /> class.
/// </summary>
/// <param name="mobile">手机号.</param>
/// <param name="content">发送内容.</param>
public SendMsgAct(string mobile = default(string), string content = default(string))
{
this.Mobile = mobile;
this.Content = content;
}
/// <summary>
/// 手机号
/// </summary>
/// <value>手机号</value>
[DataMember(Name="mobile", EmitDefaultValue=false)]
public string Mobile { get; set; }
/// <summary>
/// 发送内容
/// </summary>
/// <value>发送内容</value>
[DataMember(Name="content", EmitDefaultValue=false)]
public string Content { 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 SendMsgAct {\n");
sb.Append(" Mobile: ").Append(Mobile).Append("\n");
sb.Append(" Content: ").Append(Content).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 SendMsgAct);
}
/// <summary>
/// Returns true if SendMsgAct instances are equal
/// </summary>
/// <param name="input">Instance of SendMsgAct to be compared</param>
/// <returns>Boolean</returns>
public bool Equals(SendMsgAct input)
{
if (input == null)
return false;
return
(
this.Mobile == input.Mobile ||
(this.Mobile != null &&
this.Mobile.Equals(input.Mobile))
) &&
(
this.Content == input.Content ||
(this.Content != null &&
this.Content.Equals(input.Content))
);
}
/// <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.Mobile != null)
hashCode = hashCode * 59 + this.Mobile.GetHashCode();
if (this.Content != null)
hashCode = hashCode * 59 + this.Content.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;
}
}
}