Files
WMS-Api/src/WMS.Web.Core/Dto/Erp/PullDownStrResponse.cs
2023-11-09 10:25:59 +08:00

26 lines
540 B
C#

using System;
using System.Collections.Generic;
using System.Text;
namespace WMS.Web.Core.Dto.Erp
{
/// <summary>
/// key为string 下拉列表对象
/// </summary>
public class PullDownStrResponse
{
/// <summary>
/// id
/// </summary>
public string Id { get; set; }
/// <summary>
/// 编码
/// </summary>
public string Code { get; set; }
/// <summary>
/// 名字
/// </summary>
public string Name { get; set; }
}
}