50 lines
1.1 KiB
C#
50 lines
1.1 KiB
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using System.Threading.Tasks;
|
|
|
|
namespace DOAN.Model.MES.ERP
|
|
{
|
|
/// <summary>
|
|
/// 仓库库存详情
|
|
/// </summary>
|
|
[Tenant("1")]
|
|
[SugarTable("custDev_mes_CurrentStock")]
|
|
public class CustDevMesCurrentStock
|
|
{
|
|
/// <summary>
|
|
/// 仓库编码
|
|
/// </summary>
|
|
[SugarColumn(ColumnName = "cWhCode")]
|
|
public string WhCode { get; set; }
|
|
|
|
/// <summary>
|
|
/// 仓库名称
|
|
/// </summary>
|
|
[SugarColumn(ColumnName = "cWhName")]
|
|
public string WhName { get; set; }
|
|
|
|
|
|
/// <summary>
|
|
/// 存货编码
|
|
/// </summary>
|
|
[SugarColumn(ColumnName = "cInvCode")]
|
|
public string InvCode { get; set; }
|
|
|
|
|
|
|
|
/// <summary>
|
|
/// 存货名称
|
|
/// </summary>
|
|
[SugarColumn(ColumnName = "cInvName")]
|
|
public string InvName { get; set; }
|
|
|
|
/// <summary>
|
|
/// 库存数量
|
|
/// </summary>
|
|
[SugarColumn(ColumnName = "iQuantity")]
|
|
public decimal IQuantity { get; set; }
|
|
}
|
|
}
|