功能完善
This commit is contained in:
@@ -1,9 +1,13 @@
|
||||
using Furion.DatabaseAccessor;
|
||||
using Ewide.Core.Util;
|
||||
using Furion.DatabaseAccessor;
|
||||
using Furion.DynamicApiController;
|
||||
using Furion.FriendlyException;
|
||||
using Mapster;
|
||||
using Microsoft.AspNetCore.Mvc;
|
||||
using Microsoft.EntityFrameworkCore;
|
||||
using System;
|
||||
using System.Collections.Generic;
|
||||
using System.IO;
|
||||
using System.Linq;
|
||||
using System.Text;
|
||||
using System.Threading.Tasks;
|
||||
@@ -15,12 +19,17 @@ namespace Vote.Services.ApiController
|
||||
/// 项目
|
||||
/// </summary>
|
||||
[ApiDescriptionSettings("Vote", Order = 0)]
|
||||
[Route("/gb/yjb/api/projects")]
|
||||
public class ProjectsService : IDynamicApiController
|
||||
{
|
||||
private readonly IRepository<Entities.Projects> rep_Projects;
|
||||
public ProjectsService(IRepository<Entities.Projects> _rep_Projects)
|
||||
private readonly IRepository<Entities.Experts> rep_Experts;
|
||||
private readonly IRepository<Entities.VoteRecords> rep_VoteRecords;
|
||||
public ProjectsService(IRepository<Entities.Projects> _rep_Projects, IRepository<Entities.Experts> _rep_Experts, IRepository<Entities.VoteRecords> _rep_VoteRecords)
|
||||
{
|
||||
rep_Projects = _rep_Projects;
|
||||
rep_Experts = _rep_Experts;
|
||||
rep_VoteRecords = _rep_VoteRecords;
|
||||
}
|
||||
/// <summary>
|
||||
/// 列表
|
||||
@@ -28,14 +37,153 @@ namespace Vote.Services.ApiController
|
||||
/// <returns></returns>
|
||||
[HttpPost]
|
||||
[Microsoft.AspNetCore.Authorization.AllowAnonymous]
|
||||
public async Task<dynamic> List()
|
||||
public async Task<dynamic> List(ProjectsInput args)
|
||||
{
|
||||
var data = await rep_Projects.DetachedEntities.Where(p => !p.IsDeleted)
|
||||
//.ProjectToType<ProjectsOutput>()
|
||||
.Where(args.type != null, a => (int)a.type == args.type)
|
||||
.ProjectToType<ProjectsOutput>()
|
||||
.OrderBy(a => a.serial_number)
|
||||
.ToPagedListAsync();
|
||||
|
||||
.ToListAsync();
|
||||
return data;
|
||||
}
|
||||
|
||||
/// <summary>
|
||||
/// 检验提交码
|
||||
/// </summary>
|
||||
/// <returns></returns>
|
||||
[HttpPost]
|
||||
[Microsoft.AspNetCore.Authorization.AllowAnonymous]
|
||||
public async Task<dynamic> CheckSubmitCode(CheckSubmitCodeInput args)
|
||||
{
|
||||
var data = await rep_Experts.DetachedEntities.Where(p => !p.IsDeleted)
|
||||
.Where(a => a.login_code == args.code)
|
||||
.FirstOrDefaultAsync();
|
||||
return data != null;
|
||||
}
|
||||
|
||||
|
||||
/// <summary>
|
||||
/// 提交
|
||||
/// </summary>
|
||||
/// <returns></returns>
|
||||
[HttpPost]
|
||||
[UnitOfWork]
|
||||
[Microsoft.AspNetCore.Authorization.AllowAnonymous]
|
||||
public async Task<dynamic> SubmitSubmitVote(SubmitInput args)
|
||||
{
|
||||
var data = await rep_Experts.DetachedEntities.Where(p => !p.IsDeleted)
|
||||
.Where(a => a.login_code == args.code)
|
||||
.FirstOrDefaultAsync();
|
||||
_ = (data == null) ? throw Oops.Oh("提交码错误") : 1;
|
||||
//var list = args.projects.Adapt<List<Entities.VoteRecords>>();
|
||||
//删除这个专家上次提交的结果
|
||||
//或者提示不能再次提交
|
||||
_ = (await rep_VoteRecords.DetachedEntities.Where(a => !a.IsDeleted && a.expert_login_code == args.code).CountAsync() > 0) ? throw Oops.Oh("已提交,无需再次提交") : 1;
|
||||
var now = DateTime.Now;
|
||||
args.projects.ForEach(async a =>
|
||||
{
|
||||
var model = new Entities.VoteRecords
|
||||
{
|
||||
expert_login_code = args.code,
|
||||
project_id = a.id,
|
||||
is_agree = a.vote,
|
||||
vote_time = now
|
||||
};
|
||||
await model.InsertOrUpdate();
|
||||
});
|
||||
return true;
|
||||
}
|
||||
private async Task<List<ProjectsList2Output>> GetVoteData()
|
||||
{
|
||||
var query = from a in rep_Projects.DetachedEntities
|
||||
join b in rep_VoteRecords.DetachedEntities
|
||||
on a.Id equals b.project_id into grouping
|
||||
from p in grouping.DefaultIfEmpty()
|
||||
group new { a, p } by new { a.Id, a.name, a.serial_number, a.type } into pp
|
||||
select new ProjectsList2Output
|
||||
{
|
||||
serial_number = pp.Key.serial_number,
|
||||
id = pp.Key.Id,
|
||||
name = pp.Key.name,
|
||||
yes_count = pp.Where(a => a.p.is_agree).Count(),
|
||||
no_count = pp.Where(a => !a.p.is_agree).Count(),
|
||||
type = pp.Key.type
|
||||
};
|
||||
return await query.OrderBy(a => a.serial_number).ToListAsync();
|
||||
}
|
||||
/// <summary>
|
||||
/// 列表
|
||||
/// </summary>
|
||||
/// <returns></returns>
|
||||
[HttpPost]
|
||||
public async Task<dynamic> List2()
|
||||
{
|
||||
|
||||
//var data = rep_Projects.DetachedEntities.Where(p => !p.IsDeleted)
|
||||
// //.Where(args.type != null, a => (int)a.type == args.type)
|
||||
// .Join(rep_VoteRecords.DetachedEntities, a => a.Id, a => a.project_id, (a, b) =>
|
||||
// new
|
||||
// {
|
||||
// //a.Id,
|
||||
// //type = (int)a.type,
|
||||
// //serial_number = a.serial_number,
|
||||
// //name = a.name,
|
||||
// //no_count = b.Where(bb => !bb.is_agree).Count(),
|
||||
// //yes_count = b.Where(bb => bb.is_agree).Count(),
|
||||
// }).ToList();
|
||||
////.ProjectToType<ProjectsList2Output>()
|
||||
////.OrderBy(a => a.serial_number)
|
||||
////.ToListAsync();
|
||||
var data = await GetVoteData();
|
||||
var data0 = data.Where(a => a.type == Entities.EnumProjectType.FangJian).ToList();
|
||||
var data1 = data.Where(a => a.type == Entities.EnumProjectType.ShiZheng).ToList();
|
||||
var data2 = data.Where(a => a.type == Entities.EnumProjectType.GuiDaoGongCheng).ToList();
|
||||
var data3 = data.Where(a => a.type == Entities.EnumProjectType.DianLiGongCheng).ToList();
|
||||
var data4 = data.Where(a => a.type == Entities.EnumProjectType.JiaoTongGongCheng).ToList();
|
||||
var data5 = data.Where(a => a.type == Entities.EnumProjectType.ShuiLiGongCheng).ToList();
|
||||
return new
|
||||
{
|
||||
data0,
|
||||
data1,
|
||||
data2,
|
||||
data3,
|
||||
data4,
|
||||
data5
|
||||
};
|
||||
}
|
||||
/// <summary>
|
||||
///
|
||||
/// </summary>
|
||||
/// <returns></returns>
|
||||
public async Task<dynamic> Download()
|
||||
{
|
||||
var data = await GetVoteData();
|
||||
var filepath = Tools.ExcelHelper.WriteTemplate(data, 4, "C");
|
||||
return new FileStreamResult(new FileStream(filepath, FileMode.Open), "application/octet-stream") { FileDownloadName = filepath };
|
||||
}
|
||||
/// <summary>
|
||||
///
|
||||
/// </summary>
|
||||
/// <returns></returns>
|
||||
public async Task<dynamic> ExpertVote()
|
||||
{
|
||||
var list = await rep_Experts.DetachedEntities.GroupJoin(rep_VoteRecords.DetachedEntities, a => a.login_code, a => a.expert_login_code, (a, b) => new { a, b })
|
||||
.SelectMany(a => a.b.DefaultIfEmpty(), (a, b) => new { a.a.Id, a.a.login_code, is_vote = b != null })
|
||||
.Distinct().ToListAsync();
|
||||
return list;
|
||||
//var query = from a in rep_Experts.DetachedEntities
|
||||
// join b in rep_VoteRecords.DetachedEntities on a.login_code equals b.expert_login_code into temp
|
||||
// from tt in temp.DefaultIfEmpty()
|
||||
// select new
|
||||
// {
|
||||
// a.Id,
|
||||
// a.login_code,
|
||||
// is_vote = tt == null
|
||||
// };
|
||||
//return await query.ToListAsync();
|
||||
|
||||
|
||||
}
|
||||
|
||||
}
|
||||
}
|
||||
|
||||
@@ -1,6 +1,7 @@
|
||||
using Ewide.Core.Util;
|
||||
using System;
|
||||
using System.Collections.Generic;
|
||||
using System.ComponentModel.DataAnnotations;
|
||||
using System.Linq;
|
||||
using System.Text;
|
||||
using System.Threading.Tasks;
|
||||
@@ -10,9 +11,17 @@ namespace Vote.Services.Dto
|
||||
{
|
||||
public class ProjectsInput
|
||||
{
|
||||
/// <summary>
|
||||
/// 项目类型
|
||||
/// </summary>
|
||||
public int? type { get; set; }
|
||||
}
|
||||
public class ProjectsOutput
|
||||
{
|
||||
/// <summary>
|
||||
///
|
||||
/// </summary>
|
||||
public string id { get; set; }
|
||||
/// <summary>
|
||||
/// 项目序号
|
||||
/// </summary>
|
||||
@@ -35,5 +44,71 @@ namespace Vote.Services.Dto
|
||||
return type.GetEnumDescription();
|
||||
}
|
||||
}
|
||||
/// <summary>
|
||||
///
|
||||
/// </summary>
|
||||
public bool vote { get; set; } = false;
|
||||
}
|
||||
public class CheckSubmitCodeInput
|
||||
{
|
||||
/// <summary>
|
||||
/// 项目类型
|
||||
/// </summary>
|
||||
[Required]
|
||||
public string code { get; set; }
|
||||
}
|
||||
public class SubmitInput
|
||||
{
|
||||
/// <summary>
|
||||
/// 项目类型
|
||||
/// </summary>
|
||||
[Required]
|
||||
public string code { get; set; }
|
||||
[Required]
|
||||
public List<ProjectsOutput> projects { get; set; }
|
||||
}
|
||||
|
||||
public class ProjectsList2Output
|
||||
{
|
||||
/// <summary>
|
||||
///
|
||||
/// </summary>
|
||||
public string id { get; set; }
|
||||
/// <summary>
|
||||
/// 项目序号
|
||||
/// </summary>
|
||||
public int serial_number { get; set; }
|
||||
/// <summary>
|
||||
/// 工程名称
|
||||
/// </summary>
|
||||
public string name { get; set; }
|
||||
|
||||
public int no_count { get; set; }
|
||||
public int yes_count { get; set; }
|
||||
|
||||
/// <summary>
|
||||
///
|
||||
/// </summary>
|
||||
public bool is_agree
|
||||
{
|
||||
get
|
||||
{
|
||||
return yes_count >= 12;
|
||||
}
|
||||
}
|
||||
/// <summary>
|
||||
/// 项目类型
|
||||
/// </summary>
|
||||
public EnumProjectType type { get; set; }
|
||||
/// <summary>
|
||||
/// 项目类型
|
||||
/// </summary>
|
||||
public string type_title
|
||||
{
|
||||
get
|
||||
{
|
||||
return type.GetEnumDescription();
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
212
20220330_Vote/Vote.Services/Tools/ExcelHelper.cs
Normal file
212
20220330_Vote/Vote.Services/Tools/ExcelHelper.cs
Normal file
@@ -0,0 +1,212 @@
|
||||
using Furion;
|
||||
using Furion.FriendlyException;
|
||||
using NPOI.HSSF.UserModel;
|
||||
using NPOI.SS.UserModel;
|
||||
using NPOI.XSSF.UserModel;
|
||||
using System;
|
||||
using System.Collections.Generic;
|
||||
using System.IO;
|
||||
using System.Linq;
|
||||
using System.Text;
|
||||
using System.Text.RegularExpressions;
|
||||
using System.Threading.Tasks;
|
||||
using Vote.Services.Dto;
|
||||
|
||||
namespace Vote.Services.Tools
|
||||
{
|
||||
/// <summary>
|
||||
///
|
||||
/// </summary>
|
||||
public static class ExcelHelper
|
||||
{
|
||||
static ExcelHelper()
|
||||
{
|
||||
System.Text.Encoding.RegisterProvider(System.Text.CodePagesEncodingProvider.Instance);
|
||||
}
|
||||
/// <summary>
|
||||
/// 判断是否为兼容模式
|
||||
/// </summary>
|
||||
/// <param name="filePath"></param>
|
||||
/// <returns></returns>
|
||||
public static bool GetIsCompatible(string filePath)
|
||||
{
|
||||
return filePath.EndsWith(".xls", StringComparison.OrdinalIgnoreCase);
|
||||
}
|
||||
/// <summary>
|
||||
/// 创建工作薄
|
||||
/// </summary>
|
||||
/// <param name="isCompatible"></param>
|
||||
/// <returns></returns>
|
||||
public static IWorkbook CreateWorkbook(bool isCompatible)
|
||||
{
|
||||
if (isCompatible)
|
||||
{
|
||||
return new HSSFWorkbook();
|
||||
}
|
||||
else
|
||||
{
|
||||
return new XSSFWorkbook();
|
||||
}
|
||||
}
|
||||
|
||||
/// <summary>
|
||||
/// 创建工作薄(依据文件流)
|
||||
/// </summary>
|
||||
/// <param name="isCompatible"></param>
|
||||
/// <param name="stream"></param>
|
||||
/// <returns></returns>
|
||||
public static IWorkbook CreateWorkbook(bool isCompatible, dynamic stream)
|
||||
{
|
||||
if (isCompatible)
|
||||
{
|
||||
return new HSSFWorkbook(stream);
|
||||
}
|
||||
else
|
||||
{
|
||||
return new XSSFWorkbook(stream);
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
|
||||
/// <summary>
|
||||
/// 列名字母转索引
|
||||
/// </summary>
|
||||
/// <param name="columnName"></param>
|
||||
/// <returns></returns>
|
||||
public static int ToExcelColumnIndex(this string columnName)
|
||||
{
|
||||
if (!Regex.IsMatch(columnName.ToUpper(), @"[A-Z]+")) { throw new Exception("invalid parameter"); }
|
||||
int index = 0;
|
||||
char[] chars = columnName.ToUpper().ToCharArray();
|
||||
for (int i = 0; i < chars.Length; i++)
|
||||
{
|
||||
index += ((int)chars[i] - (int)'A' + 1) * (int)Math.Pow(26, chars.Length - i - 1);
|
||||
}
|
||||
return index - 1;
|
||||
}
|
||||
/// <summary>
|
||||
/// 列索引转字母
|
||||
/// </summary>
|
||||
/// <param name="index"></param>
|
||||
/// <returns></returns>
|
||||
public static string ToExcelColumnName(this int index)
|
||||
{
|
||||
if (index < 0) { throw new Exception("invalid parameter"); }
|
||||
List<string> chars = new List<string>();
|
||||
do
|
||||
{
|
||||
if (chars.Count > 0) index--;
|
||||
chars.Insert(0, ((char)(index % 26 + (int)'A')).ToString());
|
||||
index = (int)((index - index % 26) / 26);
|
||||
} while (index > 0);
|
||||
return String.Join(string.Empty, chars.ToArray());
|
||||
}
|
||||
|
||||
|
||||
private static List<ProjectsList2Output> GetDataByType(List<ProjectsList2Output> list, Entities.EnumProjectType type)
|
||||
{
|
||||
return list.Where(a => a.type == type).ToList();
|
||||
}
|
||||
|
||||
/// <summary>
|
||||
///
|
||||
/// </summary>
|
||||
/// <returns></returns>
|
||||
public static string WriteTemplate(List<ProjectsList2Output> list, int start_row, string start_column)
|
||||
{
|
||||
try
|
||||
{
|
||||
string template_name = "2021年度甬江杯投票.xlsx";
|
||||
string excelFilePath = $"{App.WebHostEnvironment.WebRootPath}\\ExcelTemplate\\{template_name}";
|
||||
string outputPath = string.Empty;
|
||||
if (!string.IsNullOrEmpty(excelFilePath))
|
||||
{
|
||||
using (FileStream excelFileStream = System.IO.File.OpenRead(excelFilePath))
|
||||
{
|
||||
bool isCompatible = ExcelHelper.GetIsCompatible(excelFilePath);
|
||||
IWorkbook workbook = ExcelHelper.CreateWorkbook(isCompatible, excelFileStream);
|
||||
ISheet sheet = null;
|
||||
sheet = workbook.GetSheetAt(1);
|
||||
Dictionary<string, string> dic_sheet_config = new Dictionary<string, string>();
|
||||
var data = GetDataByType(list, Entities.EnumProjectType.FangJian);
|
||||
//从第几行开始 , 比如 行号是4 , 就写3
|
||||
var startRowIndex = start_row - 1;
|
||||
for (int i = 0; i < data.Count; i++)
|
||||
{
|
||||
var c_rowindex = startRowIndex + i;
|
||||
int cell_start_index = start_column.ToExcelColumnIndex();
|
||||
sheet.GetRow(c_rowindex).GetCell(cell_start_index).SetCellValue(data[i].no_count);
|
||||
sheet.GetRow(c_rowindex).GetCell(cell_start_index + 1).SetCellValue(data[i].yes_count);
|
||||
sheet.GetRow(c_rowindex).GetCell(cell_start_index + 2).SetCellValue(data[i].is_agree ? "通过" : "不通过");
|
||||
}
|
||||
var length0 = data.Count;
|
||||
data = GetDataByType(list, Entities.EnumProjectType.ShiZheng);
|
||||
for (int i = 0; i < data.Count; i++)
|
||||
{
|
||||
var c_rowindex = length0 + 1 + startRowIndex + i;
|
||||
int cell_start_index = start_column.ToExcelColumnIndex();
|
||||
sheet.GetRow(c_rowindex).GetCell(cell_start_index).SetCellValue(data[i].no_count);
|
||||
sheet.GetRow(c_rowindex).GetCell(cell_start_index + 1).SetCellValue(data[i].yes_count);
|
||||
sheet.GetRow(c_rowindex).GetCell(cell_start_index + 2).SetCellValue(data[i].is_agree ? "通过" : "不通过");
|
||||
}
|
||||
var length1 = data.Count;
|
||||
data = GetDataByType(list, Entities.EnumProjectType.GuiDaoGongCheng);
|
||||
for (int i = 0; i < data.Count; i++)
|
||||
{
|
||||
var c_rowindex = length0 + 1 + length1 + 1 + startRowIndex + i;
|
||||
int cell_start_index = start_column.ToExcelColumnIndex();
|
||||
sheet.GetRow(c_rowindex).GetCell(cell_start_index).SetCellValue(data[i].no_count);
|
||||
sheet.GetRow(c_rowindex).GetCell(cell_start_index + 1).SetCellValue(data[i].yes_count);
|
||||
sheet.GetRow(c_rowindex).GetCell(cell_start_index + 2).SetCellValue(data[i].is_agree ? "通过" : "不通过");
|
||||
}
|
||||
var length2 = data.Count;
|
||||
data = GetDataByType(list, Entities.EnumProjectType.DianLiGongCheng);
|
||||
for (int i = 0; i < data.Count; i++)
|
||||
{
|
||||
var c_rowindex = length0 + 1 + length1 + 1 + length2 + 1 + startRowIndex + i;
|
||||
int cell_start_index = start_column.ToExcelColumnIndex();
|
||||
sheet.GetRow(c_rowindex).GetCell(cell_start_index).SetCellValue(data[i].no_count);
|
||||
sheet.GetRow(c_rowindex).GetCell(cell_start_index + 1).SetCellValue(data[i].yes_count);
|
||||
sheet.GetRow(c_rowindex).GetCell(cell_start_index + 2).SetCellValue(data[i].is_agree ? "通过" : "不通过");
|
||||
}
|
||||
var length3 = data.Count;
|
||||
data = GetDataByType(list, Entities.EnumProjectType.JiaoTongGongCheng);
|
||||
for (int i = 0; i < data.Count; i++)
|
||||
{
|
||||
var c_rowindex = length0 + 1 + length1 + 1 + length2 + 1 + length3 + 1 + startRowIndex + i;
|
||||
int cell_start_index = start_column.ToExcelColumnIndex();
|
||||
sheet.GetRow(c_rowindex).GetCell(cell_start_index).SetCellValue(data[i].no_count);
|
||||
sheet.GetRow(c_rowindex).GetCell(cell_start_index + 1).SetCellValue(data[i].yes_count);
|
||||
sheet.GetRow(c_rowindex).GetCell(cell_start_index + 2).SetCellValue(data[i].is_agree ? "通过" : "不通过");
|
||||
}
|
||||
var length4 = data.Count;
|
||||
data = GetDataByType(list, Entities.EnumProjectType.ShuiLiGongCheng);
|
||||
for (int i = 0; i < data.Count; i++)
|
||||
{
|
||||
var c_rowindex = length0 + 1 + length1 + 1 + length2 + 1 + length3 + 1 + length4 + 1 + startRowIndex + i;
|
||||
int cell_start_index = start_column.ToExcelColumnIndex();
|
||||
sheet.GetRow(c_rowindex).GetCell(cell_start_index).SetCellValue(data[i].no_count);
|
||||
sheet.GetRow(c_rowindex).GetCell(cell_start_index + 1).SetCellValue(data[i].yes_count);
|
||||
sheet.GetRow(c_rowindex).GetCell(cell_start_index + 2).SetCellValue(data[i].is_agree ? "通过" : "不通过");
|
||||
}
|
||||
var file = new FileInfo(excelFilePath);
|
||||
var savePath = file.DirectoryName + "\\OutPut\\";
|
||||
if (!Directory.Exists(savePath))
|
||||
Directory.CreateDirectory(savePath);
|
||||
outputPath = savePath + DateTime.Now.ToString("yyyyMMddHHmmss") + "-" + template_name;
|
||||
using (var filess = new FileStream(outputPath, FileMode.Create, FileAccess.Write, FileShare.Read))
|
||||
{
|
||||
workbook.Write(filess);
|
||||
}
|
||||
}
|
||||
}
|
||||
return outputPath;
|
||||
}
|
||||
catch (System.IO.IOException ioex)
|
||||
{
|
||||
throw Oops.Oh("文件被占用,请检查文件模板");
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
@@ -12,4 +12,22 @@
|
||||
<ProjectReference Include="..\Ewide.Core\Ewide.Core.csproj" />
|
||||
</ItemGroup>
|
||||
|
||||
<ItemGroup>
|
||||
<Reference Include="ICSharpCode.SharpZipLib">
|
||||
<HintPath>..\Ewide.Web.Entry\bin\Debug\net5.0\ICSharpCode.SharpZipLib.dll</HintPath>
|
||||
</Reference>
|
||||
<Reference Include="NPOI">
|
||||
<HintPath>..\Ewide.Web.Entry\bin\Debug\net5.0\NPOI.dll</HintPath>
|
||||
</Reference>
|
||||
<Reference Include="NPOI.OOXML">
|
||||
<HintPath>..\Ewide.Web.Entry\bin\Debug\net5.0\NPOI.OOXML.dll</HintPath>
|
||||
</Reference>
|
||||
<Reference Include="NPOI.OpenXml4Net">
|
||||
<HintPath>..\Ewide.Web.Entry\bin\Debug\net5.0\NPOI.OpenXml4Net.dll</HintPath>
|
||||
</Reference>
|
||||
<Reference Include="NPOI.OpenXmlFormats">
|
||||
<HintPath>..\Ewide.Web.Entry\bin\Debug\net5.0\NPOI.OpenXmlFormats.dll</HintPath>
|
||||
</Reference>
|
||||
</ItemGroup>
|
||||
|
||||
</Project>
|
||||
|
||||
@@ -9,12 +9,52 @@
|
||||
项目
|
||||
</summary>
|
||||
</member>
|
||||
<member name="M:Vote.Services.ApiController.ProjectsService.List">
|
||||
<member name="M:Vote.Services.ApiController.ProjectsService.List(Vote.Services.Dto.ProjectsInput)">
|
||||
<summary>
|
||||
列表
|
||||
</summary>
|
||||
<returns></returns>
|
||||
</member>
|
||||
<member name="M:Vote.Services.ApiController.ProjectsService.CheckSubmitCode(Vote.Services.Dto.CheckSubmitCodeInput)">
|
||||
<summary>
|
||||
检验提交码
|
||||
</summary>
|
||||
<returns></returns>
|
||||
</member>
|
||||
<member name="M:Vote.Services.ApiController.ProjectsService.SubmitSubmitVote(Vote.Services.Dto.SubmitInput)">
|
||||
<summary>
|
||||
提交
|
||||
</summary>
|
||||
<returns></returns>
|
||||
</member>
|
||||
<member name="M:Vote.Services.ApiController.ProjectsService.List2">
|
||||
<summary>
|
||||
列表
|
||||
</summary>
|
||||
<returns></returns>
|
||||
</member>
|
||||
<member name="M:Vote.Services.ApiController.ProjectsService.Download">
|
||||
<summary>
|
||||
|
||||
</summary>
|
||||
<returns></returns>
|
||||
</member>
|
||||
<member name="M:Vote.Services.ApiController.ProjectsService.ExpertVote">
|
||||
<summary>
|
||||
|
||||
</summary>
|
||||
<returns></returns>
|
||||
</member>
|
||||
<member name="P:Vote.Services.Dto.ProjectsInput.type">
|
||||
<summary>
|
||||
项目类型
|
||||
</summary>
|
||||
</member>
|
||||
<member name="P:Vote.Services.Dto.ProjectsOutput.id">
|
||||
<summary>
|
||||
|
||||
</summary>
|
||||
</member>
|
||||
<member name="P:Vote.Services.Dto.ProjectsOutput.serial_number">
|
||||
<summary>
|
||||
项目序号
|
||||
@@ -35,6 +75,51 @@
|
||||
项目类型
|
||||
</summary>
|
||||
</member>
|
||||
<member name="P:Vote.Services.Dto.ProjectsOutput.vote">
|
||||
<summary>
|
||||
|
||||
</summary>
|
||||
</member>
|
||||
<member name="P:Vote.Services.Dto.CheckSubmitCodeInput.code">
|
||||
<summary>
|
||||
项目类型
|
||||
</summary>
|
||||
</member>
|
||||
<member name="P:Vote.Services.Dto.SubmitInput.code">
|
||||
<summary>
|
||||
项目类型
|
||||
</summary>
|
||||
</member>
|
||||
<member name="P:Vote.Services.Dto.ProjectsList2Output.id">
|
||||
<summary>
|
||||
|
||||
</summary>
|
||||
</member>
|
||||
<member name="P:Vote.Services.Dto.ProjectsList2Output.serial_number">
|
||||
<summary>
|
||||
项目序号
|
||||
</summary>
|
||||
</member>
|
||||
<member name="P:Vote.Services.Dto.ProjectsList2Output.name">
|
||||
<summary>
|
||||
工程名称
|
||||
</summary>
|
||||
</member>
|
||||
<member name="P:Vote.Services.Dto.ProjectsList2Output.is_agree">
|
||||
<summary>
|
||||
|
||||
</summary>
|
||||
</member>
|
||||
<member name="P:Vote.Services.Dto.ProjectsList2Output.type">
|
||||
<summary>
|
||||
项目类型
|
||||
</summary>
|
||||
</member>
|
||||
<member name="P:Vote.Services.Dto.ProjectsList2Output.type_title">
|
||||
<summary>
|
||||
项目类型
|
||||
</summary>
|
||||
</member>
|
||||
<member name="T:Vote.Services.Entities.Experts">
|
||||
<summary>
|
||||
专家表
|
||||
@@ -130,5 +215,52 @@
|
||||
投票时间
|
||||
</summary>
|
||||
</member>
|
||||
<member name="T:Vote.Services.Tools.ExcelHelper">
|
||||
<summary>
|
||||
|
||||
</summary>
|
||||
</member>
|
||||
<member name="M:Vote.Services.Tools.ExcelHelper.GetIsCompatible(System.String)">
|
||||
<summary>
|
||||
判断是否为兼容模式
|
||||
</summary>
|
||||
<param name="filePath"></param>
|
||||
<returns></returns>
|
||||
</member>
|
||||
<member name="M:Vote.Services.Tools.ExcelHelper.CreateWorkbook(System.Boolean)">
|
||||
<summary>
|
||||
创建工作薄
|
||||
</summary>
|
||||
<param name="isCompatible"></param>
|
||||
<returns></returns>
|
||||
</member>
|
||||
<member name="M:Vote.Services.Tools.ExcelHelper.CreateWorkbook(System.Boolean,System.Object)">
|
||||
<summary>
|
||||
创建工作薄(依据文件流)
|
||||
</summary>
|
||||
<param name="isCompatible"></param>
|
||||
<param name="stream"></param>
|
||||
<returns></returns>
|
||||
</member>
|
||||
<member name="M:Vote.Services.Tools.ExcelHelper.ToExcelColumnIndex(System.String)">
|
||||
<summary>
|
||||
列名字母转索引
|
||||
</summary>
|
||||
<param name="columnName"></param>
|
||||
<returns></returns>
|
||||
</member>
|
||||
<member name="M:Vote.Services.Tools.ExcelHelper.ToExcelColumnName(System.Int32)">
|
||||
<summary>
|
||||
列索引转字母
|
||||
</summary>
|
||||
<param name="index"></param>
|
||||
<returns></returns>
|
||||
</member>
|
||||
<member name="M:Vote.Services.Tools.ExcelHelper.WriteTemplate(System.Collections.Generic.List{Vote.Services.Dto.ProjectsList2Output},System.Int32,System.String)">
|
||||
<summary>
|
||||
|
||||
</summary>
|
||||
<returns></returns>
|
||||
</member>
|
||||
</members>
|
||||
</doc>
|
||||
|
||||
Reference in New Issue
Block a user