You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

57 lines
1020 B
C#

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