43 lines
1.0 KiB
C#
43 lines
1.0 KiB
C#
using SqlSugar;
|
|
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using System.Threading.Tasks;
|
|
|
|
namespace LearningOfficer.OA.Common.Dtos.FeedBack
|
|
{
|
|
/// <summary>
|
|
/// 提交建议
|
|
/// </summary>
|
|
public class FeedBackInfoAddDto
|
|
{
|
|
/// <summary>
|
|
/// 备 注:建议类型(字典表-枚举值)
|
|
/// 默认值:
|
|
///</summary>
|
|
[SugarColumn(ColumnName = "feedback_type")]
|
|
public long FeedbackType { get; set; }
|
|
|
|
|
|
/// <summary>
|
|
/// 备 注:现状描述
|
|
/// 默认值:
|
|
///</summary>
|
|
[SugarColumn(ColumnName = "remark")]
|
|
public string Remark { get; set; } = null!;
|
|
|
|
/// <summary>
|
|
/// 备 注:优化方案
|
|
/// 默认值:
|
|
///</summary>
|
|
[SugarColumn(ColumnName = "optimization_plan")]
|
|
public string OptimizationPlan { get; set; } = null!;
|
|
|
|
/// <summary>
|
|
/// 附件ID
|
|
/// </summary>
|
|
public List<long>? FileIds { get; set; }
|
|
}
|
|
}
|