27 lines
571 B
C#
27 lines
571 B
C#
![]() |
using System;
|
|||
|
using System.Collections.Generic;
|
|||
|
using System.ComponentModel.DataAnnotations.Schema;
|
|||
|
using System.ComponentModel.DataAnnotations;
|
|||
|
using System.Linq;
|
|||
|
using System.Text;
|
|||
|
using System.Threading.Tasks;
|
|||
|
|
|||
|
namespace YD_WeChatApplet.Commons.Dto.HomeWork
|
|||
|
{
|
|||
|
/// <summary>
|
|||
|
/// 下拉框通用
|
|||
|
/// </summary>
|
|||
|
public class ComboBoxDto
|
|||
|
{
|
|||
|
/// <summary>
|
|||
|
/// Id
|
|||
|
/// </summary>
|
|||
|
public int Id { get; set; }
|
|||
|
|
|||
|
/// <summary>
|
|||
|
///名称
|
|||
|
/// </summary>
|
|||
|
public string Name { get; set; }
|
|||
|
}
|
|||
|
}
|