19 lines
655 B
C#
19 lines
655 B
C#
using System;
|
|
using UnityEngine;
|
|
|
|
namespace Framework.Dto
|
|
{
|
|
/// <summary>
|
|
/// 采购物资入库
|
|
/// </summary>
|
|
[Serializable]
|
|
public class PurchaseMaterialInbound
|
|
{
|
|
public int quantity { get; set; } // 数量(单位:台)
|
|
public string materialName { get; set; } // 物料名称
|
|
public string code { get; set; } // 物料编码
|
|
public string description { get; set; } // 物料描述
|
|
public string location { get; set; } // 货架区仓位
|
|
public string storageBin { get; set; }
|
|
}
|
|
} |