37 lines
956 B
C#
37 lines
956 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using System.Threading.Tasks;
|
|
using LearningOfficer.OA.Common.Dtos.OA.WorkProcess.SunTaskFileAndUser;
|
|
|
|
namespace LearningOfficer.OA.Common.Dtos.OA.WorkProcess
|
|
{
|
|
public class CulturalDetailResult
|
|
{
|
|
/// <summary>
|
|
/// 任务信息
|
|
/// </summary>
|
|
public BaseTaskClassResult taskInfo { get; set; }
|
|
|
|
/// <summary>
|
|
/// 文创id
|
|
/// </summary>
|
|
public long CulturalId { get; set; }
|
|
/// <summary>
|
|
/// 文创标题
|
|
/// </summary>
|
|
public string CulturalTitle { get; set; }
|
|
|
|
/// <summary>
|
|
/// 备 注:更新说明
|
|
/// 默认值:
|
|
///</summary>
|
|
public string? Remark { get; set; }
|
|
/// <summary>
|
|
/// 文创文件信息
|
|
/// </summary>
|
|
public List<SunTaskFileResult> sunTaskFileResults { get; set; }
|
|
}
|
|
}
|