160 lines
5.1 KiB
C#
160 lines
5.1 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>
|
||
|
/// GoodsStock
|
||
|
/// </summary>
|
||
|
[DataContract]
|
||
|
public partial class GoodsStock : IEquatable<GoodsStock>, IValidatableObject
|
||
|
{
|
||
|
/// <summary>
|
||
|
/// Initializes a new instance of the <see cref="GoodsStock" /> class.
|
||
|
/// </summary>
|
||
|
/// <param name="code">物料编码.</param>
|
||
|
/// <param name="canUseQty">可用量.</param>
|
||
|
/// <param name="currQty">现存量.</param>
|
||
|
public GoodsStock(string code = default(string), int? canUseQty = default(int?), int? currQty = default(int?))
|
||
|
{
|
||
|
this.Code = code;
|
||
|
this.CanUseQty = canUseQty;
|
||
|
this.CurrQty = currQty;
|
||
|
}
|
||
|
|
||
|
/// <summary>
|
||
|
/// 物料编码
|
||
|
/// </summary>
|
||
|
/// <value>物料编码</value>
|
||
|
[DataMember(Name="code", EmitDefaultValue=false)]
|
||
|
public string Code { get; set; }
|
||
|
|
||
|
/// <summary>
|
||
|
/// 可用量
|
||
|
/// </summary>
|
||
|
/// <value>可用量</value>
|
||
|
[DataMember(Name="canUseQty", EmitDefaultValue=false)]
|
||
|
public int? CanUseQty { get; set; }
|
||
|
|
||
|
/// <summary>
|
||
|
/// 现存量
|
||
|
/// </summary>
|
||
|
/// <value>现存量</value>
|
||
|
[DataMember(Name="currQty", EmitDefaultValue=false)]
|
||
|
public int? CurrQty { 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 GoodsStock {\n");
|
||
|
sb.Append(" Code: ").Append(Code).Append("\n");
|
||
|
sb.Append(" CanUseQty: ").Append(CanUseQty).Append("\n");
|
||
|
sb.Append(" CurrQty: ").Append(CurrQty).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 GoodsStock);
|
||
|
}
|
||
|
|
||
|
/// <summary>
|
||
|
/// Returns true if GoodsStock instances are equal
|
||
|
/// </summary>
|
||
|
/// <param name="input">Instance of GoodsStock to be compared</param>
|
||
|
/// <returns>Boolean</returns>
|
||
|
public bool Equals(GoodsStock input)
|
||
|
{
|
||
|
if (input == null)
|
||
|
return false;
|
||
|
|
||
|
return
|
||
|
(
|
||
|
this.Code == input.Code ||
|
||
|
(this.Code != null &&
|
||
|
this.Code.Equals(input.Code))
|
||
|
) &&
|
||
|
(
|
||
|
this.CanUseQty == input.CanUseQty ||
|
||
|
(this.CanUseQty != null &&
|
||
|
this.CanUseQty.Equals(input.CanUseQty))
|
||
|
) &&
|
||
|
(
|
||
|
this.CurrQty == input.CurrQty ||
|
||
|
(this.CurrQty != null &&
|
||
|
this.CurrQty.Equals(input.CurrQty))
|
||
|
);
|
||
|
}
|
||
|
|
||
|
/// <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.CanUseQty != null)
|
||
|
hashCode = hashCode * 59 + this.CanUseQty.GetHashCode();
|
||
|
if (this.CurrQty != null)
|
||
|
hashCode = hashCode * 59 + this.CurrQty.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;
|
||
|
}
|
||
|
}
|
||
|
|
||
|
}
|