后台数据表建立

This commit is contained in:
路 范
2022-03-30 19:34:37 +08:00
parent 904bdd16cd
commit 8a57806a29
37 changed files with 50474 additions and 431 deletions

View 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();
}
}
}
}