供应商信息

This commit is contained in:
tongfei
2023-11-08 14:13:17 +08:00
parent 09e30675e1
commit 333f0a0c10
6 changed files with 138 additions and 0 deletions

View File

@@ -0,0 +1,27 @@
using System;
using System.Collections.Generic;
using System.Text;
namespace WMS.Web.Core.Dto.Erp.Supplier
{
/// <summary>
/// erp供应商基础数据
/// </summary>
public class ErpSupplierDto
{
/// <summary>
/// ID
/// </summary>
public int Id { get; set; }
/// <summary>
/// 编码
/// </summary>
public string Number { get; set; }
/// <summary>
/// 名称
/// </summary>
public string Name { get; set; }
}
}