Files
Gatedge.NewOrientLandMark.BOS/Gatedge.ScanCode/Models/Vo/BaseData/StockVo.cs
liqionghai d758497f93 1
2025-11-18 17:43:12 +08:00

40 lines
1.1 KiB
C#
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

using Gatedge.ScanCode.Models.Vo.Field;
namespace Gatedge.ScanCode.Models.Vo.BaseData
{
/// <summary>
/// 仓库
/// </summary>
public class StockVo
{
/// <summary>
/// 仓库Id
/// </summary>
public int Id { get; set; }
/// <summary>
/// 仓库模板Id
/// </summary>
public int msterID { get; set; }
/// <summary>
/// 仓库多语言
/// </summary>
public MultiLanguageText[] MultiLanguageText { get; set; }
/// <summary>
/// 仓库名称
/// </summary>
public DataValue[] Name { get; set; }
/// <summary>
/// 仓库编码
/// </summary>
public string Number { get; set; }
/// <summary>
/// 仓位维度数据列表显示格式 注3=不需按值设置,2=严格按值设置,1=优先按值设置
/// </summary>
public string LocListFormatter { get; set; }
/// <summary>
/// 仓位值集
/// </summary>
public object[] StockFlexItem { get; set; }
}
}