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_plan_file")]
|
||
public class SummarizPlanFile : BaseEntity
|
||
{
|
||
|
||
|
||
|
||
|
||
/// <summary>
|
||
/// 备 注:用户id
|
||
/// 默认值:
|
||
///</summary>
|
||
[SugarColumn(ColumnName = "user_id" )]
|
||
public long UserId { get; set; }
|
||
|
||
|
||
/// <summary>
|
||
/// 备 注:总结类型,1:日报;2:周报;3:月报;
|
||
/// 默认值:
|
||
///</summary>
|
||
[SugarColumn(ColumnName = "summariz_type" )]
|
||
public int SummarizType { get; set; }
|
||
|
||
|
||
/// <summary>
|
||
/// 备 注:总结id
|
||
/// 默认值:
|
||
///</summary>
|
||
[SugarColumn(ColumnName = "summariz_id" )]
|
||
public long SummarizId { get; set; }
|
||
|
||
|
||
/// <summary>
|
||
/// 备 注:文件id
|
||
/// 默认值:
|
||
///</summary>
|
||
[SugarColumn(ColumnName = "fileid" )]
|
||
public long Fileid { get; set; }
|
||
|
||
|
||
}
|
||
|
||
} |