MeiSaiSiXieTongApi/IO.Swagger/Model/NcSkuDetailInfo.cs

194 lines
6.4 KiB
C#
Raw Normal View History

2025-04-24 18:31:27 +08:00
/*
* 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>
/// NcSkuDetailInfo
/// </summary>
[DataContract]
public partial class NcSkuDetailInfo : IEquatable<NcSkuDetailInfo>, IValidatableObject
{
/// <summary>
/// Initializes a new instance of the <see cref="NcSkuDetailInfo" /> class.
/// </summary>
/// <param name="code">编码.</param>
/// <param name="color">色号.</param>
/// <param name="txm">条形码.</param>
/// <param name="price">吊牌价.</param>
/// <param name="oldcode">旧编码.</param>
public NcSkuDetailInfo(string code = default(string), string color = default(string), string txm = default(string), double? price = default(double?), string oldcode = default(string))
{
this.Code = code;
this.Color = color;
this.Txm = txm;
this.Price = price;
this.Oldcode = oldcode;
}
/// <summary>
/// 编码
/// </summary>
/// <value>编码</value>
[DataMember(Name="code", EmitDefaultValue=false)]
public string Code { get; set; }
/// <summary>
/// 色号
/// </summary>
/// <value>色号</value>
[DataMember(Name="color", EmitDefaultValue=false)]
public string Color { get; set; }
/// <summary>
/// 条形码
/// </summary>
/// <value>条形码</value>
[DataMember(Name="txm", EmitDefaultValue=false)]
public string Txm { get; set; }
/// <summary>
/// 吊牌价
/// </summary>
/// <value>吊牌价</value>
[DataMember(Name="price", EmitDefaultValue=false)]
public double? Price { get; set; }
/// <summary>
/// 旧编码
/// </summary>
/// <value>旧编码</value>
[DataMember(Name="oldcode", EmitDefaultValue=false)]
public string Oldcode { 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 NcSkuDetailInfo {\n");
sb.Append(" Code: ").Append(Code).Append("\n");
sb.Append(" Color: ").Append(Color).Append("\n");
sb.Append(" Txm: ").Append(Txm).Append("\n");
sb.Append(" Price: ").Append(Price).Append("\n");
sb.Append(" Oldcode: ").Append(Oldcode).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 NcSkuDetailInfo);
}
/// <summary>
/// Returns true if NcSkuDetailInfo instances are equal
/// </summary>
/// <param name="input">Instance of NcSkuDetailInfo to be compared</param>
/// <returns>Boolean</returns>
public bool Equals(NcSkuDetailInfo input)
{
if (input == null)
return false;
return
(
this.Code == input.Code ||
(this.Code != null &&
this.Code.Equals(input.Code))
) &&
(
this.Color == input.Color ||
(this.Color != null &&
this.Color.Equals(input.Color))
) &&
(
this.Txm == input.Txm ||
(this.Txm != null &&
this.Txm.Equals(input.Txm))
) &&
(
this.Price == input.Price ||
(this.Price != null &&
this.Price.Equals(input.Price))
) &&
(
this.Oldcode == input.Oldcode ||
(this.Oldcode != null &&
this.Oldcode.Equals(input.Oldcode))
);
}
/// <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.Color != null)
hashCode = hashCode * 59 + this.Color.GetHashCode();
if (this.Txm != null)
hashCode = hashCode * 59 + this.Txm.GetHashCode();
if (this.Price != null)
hashCode = hashCode * 59 + this.Price.GetHashCode();
if (this.Oldcode != null)
hashCode = hashCode * 59 + this.Oldcode.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;
}
}
}