后台数据表建立

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,42 @@
using Ewide.Core;
using Furion.DatabaseAccessor;
using Microsoft.EntityFrameworkCore;
using System;
using System.Collections.Generic;
using System.ComponentModel.DataAnnotations;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace Vote.Services.Entities
{
/// <summary>
/// 投票记录
/// </summary>
public class VoteRecords : DEntityBase
{
/// <summary>
/// 专家
/// </summary>
[Comment("专家")]
[MaxLength(36)]
public string expert_login_code { get; set; }
/// <summary>
/// 项目Id
/// </summary>
[Comment("项目Id")]
[MaxLength(36)]
public string project_id { get; set; }
/// <summary>
/// 是否同意
/// </summary>
[Comment("是否同意")]
public bool is_agree { get; set; }
/// <summary>
/// 投票时间
/// </summary>
[Comment("投票时间")]
public DateTime vote_time { get; set; }
}
}