Files
tnb.server/extend/Tnb.Extend.Entitys/Entity/WorkLogEntity.cs
2023-03-13 15:00:34 +08:00

64 lines
1.5 KiB
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
/// 版 权拓通智联科技有限公司http://www.tuotong-tech.com
/// 日 期2021-06-01 .
/// </summary>
[SugarTable("EXT_WORKLOG")]
public class WorkLogEntity : CLDEntityBase
{
/// <summary>
/// 日志标题.
/// </summary>
/// <returns></returns>
[SugarColumn(ColumnName = "F_TITLE")]
public string? Title { get; set; }
/// <summary>
/// 今天内容.
/// </summary>
/// <returns></returns>
[SugarColumn(ColumnName = "F_TODAYCONTENT")]
public string? TodayContent { get; set; }
/// <summary>
/// 明天内容.
/// </summary>
/// <returns></returns>
[SugarColumn(ColumnName = "F_TOMORROWCONTENT")]
public string? TomorrowContent { get; set; }
/// <summary>
/// 遇到问题.
/// </summary>
/// <returns></returns>
[SugarColumn(ColumnName = "F_QUESTION")]
public string? Question { get; set; }
/// <summary>
/// 发送给谁.
/// </summary>
/// <returns></returns>
[SugarColumn(ColumnName = "F_TOUSERID")]
public string? ToUserId { get; set; }
/// <summary>
/// 描述.
/// </summary>
/// <returns></returns>
[SugarColumn(ColumnName = "F_DESCRIPTION")]
public string? Description { get; set; }
/// <summary>
/// 排序.
/// </summary>
/// <returns></returns>
[SugarColumn(ColumnName = "F_SORTCODE")]
public long? SortCode { get; set; }
}