You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

30 lines
741 B

using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace zzz.Services
{
/// <summary>
/// 下拉框DTO
/// </summary>
/// <typeparam name="T"></typeparam>
public class DtoSelect<T>
{
public T value { get; set; }
public string label { get; set; }
public string typeCode { get; set; }
public string parentCode { get; set; }
public int? sort { get; set; }
public string strExtend01 { get; set; }
public string strExtend02 { get; set; }
public string strExtend03 { get; set; }
public string strExtend04 { get; set; }
public string strExtend05 { get; set; }
}
}