Quanxue.Zhanghao.Daochu/LearningOfficer.OA.Core/Entities/OA/Summarize/SummarizPlanFile.cs

53 lines
1.2 KiB
C#
Raw Permalink 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 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; }
}
}