忽略dll文件git

This commit is contained in:
“wanyongkang”
2023-07-29 10:19:42 +08:00
parent 7f97317bcc
commit b562aba2b1
3868 changed files with 63608 additions and 385427 deletions

View File

@@ -1,66 +0,0 @@
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; }
}
}