40 lines
861 B
C#
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();
|
|
}
|
|
}
|
|
}
|
|
}
|