using System; using System.Collections.Generic; using System.Text; namespace System.Model { /// /// T_Sys_TaskManagement:实体类(属性说明自动提取数据库字段的描述信息) /// [Serializable] public partial class T_Sys_TaskManagement { /// /// 任务id /// public int F_ID { get; set; } /// /// 任务名称 /// public string F_Name { get; set; } /// /// 任务内容 /// public string F_Content { get; set; } /// /// 任务开始时间 /// public DateTime? F_StartTime { get; set; } /// /// 任务结束时间 /// public DateTime? F_EndTime { get; set; } /// /// 任务类型 /// public int? F_Type { get; set; } /// /// /// public string F_Deptid { get; set; } /// /// 任务人 /// public int F_Tasker { get; set; } /// /// 目标金额 /// public float F_Money { get; set; } /// /// 当前金额 /// public float F_Currentamount { get; set; } /// /// 任务进度 /// public string F_Taskprogress { get; set; } /// /// 任务状态 /// public int? F_State { get; set; } /// /// 提醒时间 /// public DateTime? F_Remindertime { get; set; } /// /// /// public string F_CreateUser { get; set; } /// /// /// public DateTime? F_CreateTime { get; set; } /// /// /// public DateTime? F_UpdateTime { get; set; } /// /// /// public string F_UpdateUser { get; set; } /// /// /// public int? F_IsDelete { get; set; } /// /// /// public DateTime? F_DeleteTime { get; set; } /// /// /// public string F_DeleteUser { get; set; } /// /// /// public int F_Parentid { get; set; } } }