调整获取金蝶数据的方法
This commit is contained in:
33
src/WMS.Web.Core/Dto/Erp/Material/ErpMaterialDto.cs
Normal file
33
src/WMS.Web.Core/Dto/Erp/Material/ErpMaterialDto.cs
Normal file
@@ -0,0 +1,33 @@
|
||||
using System;
|
||||
using System.Collections.Generic;
|
||||
using System.Text;
|
||||
|
||||
namespace WMS.Web.Core.Dto.Erp
|
||||
{
|
||||
/// <summary>
|
||||
/// 对应金蝶,物料信息
|
||||
/// </summary>
|
||||
public class ErpMaterialDto
|
||||
{
|
||||
/// <summary>
|
||||
/// 物料ID
|
||||
/// </summary>
|
||||
public int MaterialId { get; set; }
|
||||
|
||||
/// <summary>
|
||||
/// 物料名称
|
||||
/// </summary>
|
||||
public string MaterialName { get; set; }
|
||||
/// <summary>
|
||||
/// 物料编码
|
||||
/// </summary>
|
||||
public string MaterialNumber { get; set; }
|
||||
/// <summary>
|
||||
/// 物料规格型号
|
||||
/// </summary>
|
||||
public string Specifications { get; set; }
|
||||
|
||||
public string Status { get; set; }
|
||||
public string UseOrgId { get; set; }
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user