后台数据表建立
This commit is contained in:
42
20220330_Vote/Vote.Services/Entities/VoteRecords.cs
Normal file
42
20220330_Vote/Vote.Services/Entities/VoteRecords.cs
Normal 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; }
|
||||
}
|
||||
|
||||
}
|
||||
Reference in New Issue
Block a user