2025-04-24 18:31:27 +08:00

160 lines
5.2 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>
/// DeptResp
/// </summary>
[DataContract]
public partial class DeptResp : IEquatable<DeptResp>, IValidatableObject
{
/// <summary>
/// Initializes a new instance of the <see cref="DeptResp" /> class.
/// </summary>
/// <param name="code">部门编码.</param>
/// <param name="name">部门名称.</param>
/// <param name="listChildDept">下级部门信息.</param>
public DeptResp(string code = default(string), string name = default(string), List<DeptResp> listChildDept = default(List<DeptResp>))
{
this.Code = code;
this.Name = name;
this.ListChildDept = listChildDept;
}
/// <summary>
/// 部门编码
/// </summary>
/// <value>部门编码</value>
[DataMember(Name="code", EmitDefaultValue=false)]
public string Code { get; set; }
/// <summary>
/// 部门名称
/// </summary>
/// <value>部门名称</value>
[DataMember(Name="name", EmitDefaultValue=false)]
public string Name { get; set; }
/// <summary>
/// 下级部门信息
/// </summary>
/// <value>下级部门信息</value>
[DataMember(Name="listChildDept", EmitDefaultValue=false)]
public List<DeptResp> ListChildDept { 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 DeptResp {\n");
sb.Append(" Code: ").Append(Code).Append("\n");
sb.Append(" Name: ").Append(Name).Append("\n");
sb.Append(" ListChildDept: ").Append(ListChildDept).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 DeptResp);
}
/// <summary>
/// Returns true if DeptResp instances are equal
/// </summary>
/// <param name="input">Instance of DeptResp to be compared</param>
/// <returns>Boolean</returns>
public bool Equals(DeptResp input)
{
if (input == null)
return false;
return
(
this.Code == input.Code ||
(this.Code != null &&
this.Code.Equals(input.Code))
) &&
(
this.Name == input.Name ||
(this.Name != null &&
this.Name.Equals(input.Name))
) &&
(
this.ListChildDept == input.ListChildDept ||
this.ListChildDept != null &&
this.ListChildDept.SequenceEqual(input.ListChildDept)
);
}
/// <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.Code != null)
hashCode = hashCode * 59 + this.Code.GetHashCode();
if (this.Name != null)
hashCode = hashCode * 59 + this.Name.GetHashCode();
if (this.ListChildDept != null)
hashCode = hashCode * 59 + this.ListChildDept.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;
}
}
}