Quanxue.Zhanghao.Daochu/LearningOfficer.OA.Core/Entities/OA/FeedBack/FeedBackFiles.cs

31 lines
722 B
C#

using System;
using System.Collections.Generic;
using System.Linq;
using SqlSugar;
namespace LearningOfficer.OA.Core.Entities.OA.FeedBack
{
/// <summary>
/// 意见反馈-文件关联表
///</summary>
[SugarTable("feed_back_files")]
public class FeedBackFiles: BaseEntity
{
/// <summary>
/// 备 注:意见反馈id
/// 默认值:
///</summary>
[SugarColumn(ColumnName="feedback_id" ) ]
public long FeedbackId { get; set; }
/// <summary>
/// 备 注:文件id
/// 默认值:
///</summary>
[SugarColumn(ColumnName="file_id" ) ]
public long FileId { get; set; }
}
}