Files
BarCode-Api/src/BarCode.Web.Core/Dto/Erp/Supplier/ErpSupplierDto.cs
2025-04-30 17:01:05 +08:00

32 lines
657 B
C#

using System;
using System.Collections.Generic;
using System.Text;
namespace BarCode.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; }
/// <summary>
/// 组织编码
/// </summary>
public string OrgCode { get; set; }
}
}