接口文件

This commit is contained in:
“wanyongkang”
2024-04-10 13:55:27 +08:00
parent fff6bee06a
commit ed3b2c653e
3190 changed files with 268248 additions and 1 deletions

View File

@@ -0,0 +1,66 @@
using System;
using Newtonsoft.Json;
namespace Alipay.AopSdk.Core.Domain
{
/// <summary>
/// AccessProduceOrder Data Structure.
/// </summary>
[Serializable]
public class AccessProduceOrder : AopObject
{
/// <summary>
/// 口碑码批次号
/// </summary>
[JsonProperty("batch_id")]
public string BatchId { get; set; }
/// <summary>
/// 生产单标识
/// </summary>
[JsonProperty("produce_order_id")]
public string ProduceOrderId { get; set; }
/// <summary>
/// 生产数量
/// </summary>
[JsonProperty("produce_quantity")]
public long ProduceQuantity { get; set; }
/// <summary>
/// 物料属性名称
/// </summary>
[JsonProperty("stuff_attr_name")]
public string StuffAttrName { get; set; }
/// <summary>
/// 物料材质
/// </summary>
[JsonProperty("stuff_material")]
public string StuffMaterial { get; set; }
/// <summary>
/// 物料尺寸
/// </summary>
[JsonProperty("stuff_size")]
public string StuffSize { get; set; }
/// <summary>
/// 物料类型
/// </summary>
[JsonProperty("stuff_type")]
public string StuffType { get; set; }
/// <summary>
/// 模板唯一标识
/// </summary>
[JsonProperty("template_id")]
public string TemplateId { get; set; }
/// <summary>
/// 模板名称
/// </summary>
[JsonProperty("template_name")]
public string TemplateName { get; set; }
}
}