23 lines
842 B
C#
23 lines
842 B
C#
using Newtonsoft.Json;
|
|
using System;
|
|
using UnityEngine;
|
|
|
|
namespace Framework.Dto
|
|
{
|
|
/// <summary>
|
|
/// 调拨物资入库
|
|
/// </summary>
|
|
public class TransferMaterialInbound
|
|
{
|
|
[JsonIgnore]
|
|
public int materialQuantity { get; set; } // 数量(台)
|
|
public string materialName { get; set; } // 物资名称
|
|
public string materialCode { get; set; } // 物料编码
|
|
public string materialDescription { get; set; } // 物料描述
|
|
public string temporaryStorageArea { get; set; } // 临时存放区域
|
|
public string storageArea { get; set; } // 目标存放区域
|
|
public string binNumber { get; set; } // 仓位
|
|
public int quantity { get; set; }
|
|
public string storageBin { get; set; }
|
|
}
|
|
} |