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