53 lines
1.2 KiB
C#
53 lines
1.2 KiB
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using SqlSugar;
|
|
using LearningOfficer.OA.Core.Entities;
|
|
|
|
namespace LearningOfficer.OA.Core.Entities.OA.Summarize
|
|
{
|
|
/// <summary>
|
|
/// 总结已读数据记录
|
|
///</summary>
|
|
[SugarTable("summariz_read")]
|
|
public class SummarizRead : BaseEntity
|
|
{
|
|
|
|
|
|
|
|
|
|
/// <summary>
|
|
/// 备 注:总结id
|
|
/// 默认值:
|
|
///</summary>
|
|
[SugarColumn(ColumnName = "sum_id" )]
|
|
public long SumId { get; set; }
|
|
|
|
|
|
/// <summary>
|
|
/// 备 注:总结类型 1日报 2周报 3月报
|
|
/// 默认值:
|
|
///</summary>
|
|
[SugarColumn(ColumnName = "sum_type" )]
|
|
public int SumType { get; set; }
|
|
|
|
|
|
/// <summary>
|
|
/// 备 注:查看人
|
|
/// 默认值:
|
|
///</summary>
|
|
[SugarColumn(ColumnName = "read_user" )]
|
|
public long ReadUser { get; set; }
|
|
|
|
|
|
/// <summary>
|
|
/// 备 注:查看时间
|
|
/// 默认值:
|
|
///</summary>
|
|
[SugarColumn(ColumnName = "read_time" )]
|
|
public DateTime ReadTime { get; set; }
|
|
|
|
|
|
}
|
|
|
|
} |