29 lines
639 B
C#
29 lines
639 B
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_Warehouse")]
|
|
public class CustDevMesWarehouse
|
|
{
|
|
/// <summary>
|
|
/// 仓库编码
|
|
/// </summary>
|
|
[SugarColumn(ColumnName = "cWhCode")]
|
|
public string WhCode { get; set; }
|
|
|
|
/// <summary>
|
|
/// 仓库名称
|
|
/// </summary>
|
|
[SugarColumn(ColumnName = "cWhName")]
|
|
public string WhName { get; set; }
|
|
}
|
|
}
|