后台数据表建立
This commit is contained in:
39
20220330_Vote/Vote.Services/Dto/ProjectsInput.cs
Normal file
39
20220330_Vote/Vote.Services/Dto/ProjectsInput.cs
Normal file
@@ -0,0 +1,39 @@
|
||||
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();
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user