21 lines
688 B
C#
21 lines
688 B
C#
using System;
|
|
using UnityEngine;
|
|
|
|
namespace Framework.Dto
|
|
{
|
|
/// <summary>
|
|
/// 代保管物资出库
|
|
/// </summary>
|
|
[Serializable]
|
|
public class CustodyMaterialOutbound
|
|
{
|
|
public int materialQuantity { get; set; } // 数量(台)
|
|
public string materialName { get; set; } // 物资名称
|
|
public string materialDescription { get; set; } // 物资描述
|
|
public string storageBin { get; set; } // 仓位
|
|
public string materialCode { get; set; } // 物料编码
|
|
public string batchNumber { get; set; } // 批次号
|
|
|
|
public int quantity { get; set; }
|
|
}
|
|
} |