using System;
using SqlSugar;
using System.ComponentModel.DataAnnotations;
using System.ComponentModel.DataAnnotations.Schema;
namespace Admin.Core.Model
{
///
///项目审批实体类
///
[Table("EApprove")]
[SugarTable( "EApprove", "admin_sqlite")]
public class EApprove
{
///
/// 主键
///
[Key]
[SugarColumn(IsPrimaryKey=true,IsIdentity=true)]
[Required]
public int ID { get; set; }
///
/// 项目ID
///
public int? ProjectID { get; set; }
///
/// 审批人
///
public int? Approver { get; set; }
///
/// 审批结果
///
public string ApproveStatus { get; set; }
///
/// 审批意见
///
public string Opinion { get; set; }
///
/// 创建时间
///
public DateTime? CreateTime { get; set; }
}
}