79 lines
2.0 KiB
C#
79 lines
2.0 KiB
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using System.Threading.Tasks;
|
|
using static System.Windows.Forms.VisualStyles.VisualStyleElement.TaskbarClock;
|
|
|
|
namespace SWS.CAD.Models
|
|
{
|
|
public class ec_notification
|
|
{
|
|
#region 实体成员
|
|
/// <summary>
|
|
/// ID
|
|
/// </summary>
|
|
|
|
public string ID { get; set; }
|
|
/// <summary>
|
|
/// 发送者的用户id
|
|
/// </summary>
|
|
public string SenderUserID { get; set; } = "";
|
|
/// <summary>
|
|
/// 接收者的用户真实名字
|
|
/// </summary>
|
|
public string RetrieveUserID { get; set; } = "";
|
|
/// <summary>
|
|
/// 具体的实体ID
|
|
/// </summary>
|
|
public string DrawingSynID { get; set; } = "";
|
|
|
|
/// <summary>
|
|
/// 是否被批准(是否看过)。0为没有。1为确认了
|
|
/// </summary>
|
|
public int CheckFLG { get; set; }
|
|
|
|
/// <summary>
|
|
/// 确认时间
|
|
/// </summary>
|
|
public string CheckTime { get; set; } = "";
|
|
/// <summary>
|
|
/// 创建人
|
|
/// </summary>
|
|
public string CreateUserID { get; set; }
|
|
/// <summary>
|
|
/// 创建时间
|
|
/// </summary>
|
|
public DateTime? CreateTime { get; set; }
|
|
/// <summary>
|
|
/// 更新人
|
|
/// </summary>
|
|
public string UpdateUserID { get; set; }
|
|
/// <summary>
|
|
/// 更新时间
|
|
/// </summary>
|
|
public DateTime? UpdateTime { get; set; }
|
|
#endregion
|
|
|
|
#region 扩展字段
|
|
/// <summary>
|
|
/// ec drawing syn中的备注
|
|
/// </summary>
|
|
|
|
public string Remark { get; set; }
|
|
|
|
/// <summary>
|
|
/// ec drawing file中的ID
|
|
/// </summary>
|
|
|
|
public string DrawingID { get; set; }
|
|
|
|
/// <summary>
|
|
/// ec drawing file中的Name
|
|
/// </summary>
|
|
|
|
public string DrawingName { get; set; }
|
|
#endregion
|
|
}
|
|
}
|