You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
namespace Myshipping.Core.Service;
|
|
|
|
/// <summary>
|
|
/// 枚举输出参数
|
|
/// </summary>
|
|
public class EnumDataOutput
|
|
{
|
|
/// <summary>
|
|
/// 字典Id
|
|
/// </summary>
|
|
public int Code { get; set; }
|
|
|
|
/// <summary>
|
|
/// 字典值
|
|
/// </summary>
|
|
public string Value { get; set; }
|
|
}
|