Files
number_zj/20220330_Vote/Vote.Services/Dto/ProjectsInput.cs
2022-03-30 19:34:37 +08:00

40 lines
861 B
C#

using Ewide.Core.Util;
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
using Vote.Services.Entities;
namespace Vote.Services.Dto
{
public class ProjectsInput
{
}
public class ProjectsOutput
{
/// <summary>
/// 项目序号
/// </summary>
public int serial_number { get; set; }
/// <summary>
/// 工程名称
/// </summary>
public string name { get; set; }
/// <summary>
/// 项目类型
/// </summary>
public EnumProjectType type { get; set; }
/// <summary>
/// 项目类型
/// </summary>
public string type_title
{
get
{
return type.GetEnumDescription();
}
}
}
}