Files
tnb.server/extend/Tnb.Extend.Entitys/Entity/DocumentShareEntity.cs
2023-03-24 09:37:07 +08:00

34 lines
834 B
C#
Raw Blame History

This file contains ambiguous Unicode characters
This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.
using JNPF.Common.Contracts;
using SqlSugar;
namespace JNPF.Extend.Entitys;
/// <summary>
/// 知识文档共享
/// 版 本V3.2
/// 版 权引迈信息技术有限公司https://www.jnpfsoft.com
/// 作 者JNPF开发平台组
/// 日 期2021-06-01 .
/// </summary>
[SugarTable("EXT_DOCUMENTSHARE")]
public class DocumentShareEntity : EntityBase<string>
{
/// <summary>
/// 文档主键.
/// </summary>
[SugarColumn(ColumnName = "F_DOCUMENTID")]
public string? DocumentId { get; set; }
/// <summary>
/// 共享人员.
/// </summary>
[SugarColumn(ColumnName = "F_SHAREUSERID")]
public string? ShareUserId { get; set; }
/// <summary>
/// 共享时间.
/// </summary>
[SugarColumn(ColumnName = "F_SHARETIME")]
public DateTime? ShareTime { get; set; }
}