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.

105 lines
1.8 KiB
C#

This file contains ambiguous Unicode characters!

This file contains ambiguous Unicode characters that may be confused with others in your current locale. If your use case is intentional and legitimate, you can safely ignore this warning. Use the Escape button to highlight these characters.

using System;
using SqlSugar;
using System.ComponentModel.DataAnnotations;
using System.ComponentModel.DataAnnotations.Schema;
namespace Admin.Core.Model
{
///<summary>
///问题提报实体类
///</summary>
[Table("EProblem")]
[SugarTable( "EProblem", "admin_sqlite")]
public class EProblem
{
/// <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 string Title { get; set; }
/// <summary>
/// 问题描述
/// </summary>
public string Describe { get; set; }
/// <summary>
/// 问题来源
/// </summary>
public string Source { get; set; }
/// <summary>
/// 问题类型
/// </summary>
public string Type { get; set; }
/// <summary>
/// 问题风险
/// </summary>
public string Risk { get; set; }
/// <summary>
/// 状态
/// </summary>
public string Status { get; set; }
/// <summary>
/// 备注
/// </summary>
public string Remark { get; set; }
/// <summary>
/// 创建者
/// </summary>
public string CreateBy { get; set; }
/// <summary>
/// 创建时间
/// </summary>
public DateTime? CreateTime { get; set; }
/// <summary>
/// 更新者
/// </summary>
public string UpdateBy { get; set; }
/// <summary>
/// 更新时间
/// </summary>
public DateTime? UpdateTime { get; set; }
/// <summary>
/// 删除标志0代表存在 1代表删除
/// </summary>
public bool? DelFlag { get; set; }
}
}