43 lines
1.0 KiB
C#
43 lines
1.0 KiB
C#
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; }
|
|
}
|
|
|
|
}
|