Quanxue.Zhanghao.Daochu/LearningOfficer.OA.Core/Entities/OA/Solution/ProblemTool.cs

31 lines
745 B
C#

using System;
using System.Collections.Generic;
using System.Linq;
using SqlSugar;
using LearningOfficer.OA.Core.Entities;
namespace LearningOfficer.OA.Core.Entities.OA.Solution
{
/// <summary>
/// 解决方案-工具文件关联
///</summary>
[SugarTable("problem_tool")]
public class ProblemTool : BaseEntity
{
/// <summary>
/// 备 注:解决方案id
/// 默认值:
///</summary>
[SugarColumn(ColumnName = "pro_id" )]
public long ProId { get; set; }
/// <summary>
/// 备 注:工具id
/// 默认值:
///</summary>
[SugarColumn(ColumnName = "tool_id" )]
public long ToolId { get; set; }
}
}