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.
64 lines
1.1 KiB
C#
64 lines
1.1 KiB
C#
1 year ago
|
|
||
|
using System;
|
||
|
using SqlSugar;
|
||
|
using System.ComponentModel.DataAnnotations;
|
||
|
using System.ComponentModel.DataAnnotations.Schema;
|
||
|
namespace Admin.Core.Model
|
||
|
{
|
||
|
///<summary>
|
||
|
///项目计划实体类
|
||
|
///</summary>
|
||
|
[Table("EProjectPlan")]
|
||
|
[SugarTable( "EProjectPlan", "admin_sqlite")]
|
||
|
public class EProjectPlan
|
||
|
{
|
||
|
|
||
|
|
||
|
/// <summary>
|
||
|
/// 主键
|
||
|
/// </summary>
|
||
|
[Key]
|
||
|
[SugarColumn(IsPrimaryKey=true,IsIdentity=true)]
|
||
|
[Required]
|
||
|
public int ID { get; set; }
|
||
|
|
||
|
|
||
|
/// <summary>
|
||
|
/// 项目ID
|
||
|
/// </summary>
|
||
|
[Required]
|
||
|
public int ProjectID { get; set; }
|
||
|
|
||
|
|
||
|
/// <summary>
|
||
|
/// 计划名称
|
||
|
/// </summary>
|
||
|
public string PlanName { get; set; }
|
||
|
|
||
|
|
||
|
/// <summary>
|
||
|
/// 计划完成内容
|
||
|
/// </summary>
|
||
|
public string PlanContent { get; set; }
|
||
|
|
||
|
|
||
|
/// <summary>
|
||
|
/// 计划开始时间
|
||
|
/// </summary>
|
||
|
public DateTime? PlanStartTime { get; set; }
|
||
|
|
||
|
|
||
|
/// <summary>
|
||
|
/// 计划结束时间
|
||
|
/// </summary>
|
||
|
public DateTime? PlanEndTime { get; set; }
|
||
|
|
||
|
|
||
|
/// <summary>
|
||
|
/// 状态
|
||
|
/// </summary>
|
||
|
public string Status { get; set; }
|
||
|
|
||
|
}
|
||
|
}
|