调整获取金蝶数据的方法

This commit is contained in:
tongfei
2023-11-03 15:46:37 +08:00
parent ad8f91bc7d
commit 925798e7df
7 changed files with 140 additions and 1 deletions

View 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; }
}
}