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
{
///
/// 投票记录
///
public class VoteRecords : DEntityBase
{
///
/// 专家
///
[Comment("专家")]
[MaxLength(36)]
public string expert_login_code { get; set; }
///
/// 项目Id
///
[Comment("项目Id")]
[MaxLength(36)]
public string project_id { get; set; }
///
/// 是否同意
///
[Comment("是否同意")]
public bool is_agree { get; set; }
///
/// 投票时间
///
[Comment("投票时间")]
public DateTime vote_time { get; set; }
}
}