2025-02-19 15:58:42 +08:00
|
|
|
using System;
|
|
|
|
|
using System.Collections.Generic;
|
|
|
|
|
using System.Linq;
|
|
|
|
|
using System.Text;
|
|
|
|
|
using System.Threading.Tasks;
|
|
|
|
|
|
|
|
|
|
namespace Model
|
|
|
|
|
{
|
2025-05-08 14:26:36 +08:00
|
|
|
public class TrainTaskItem
|
2025-02-19 15:58:42 +08:00
|
|
|
{
|
|
|
|
|
/// <summary>
|
2025-05-08 14:26:36 +08:00
|
|
|
/// 任务id
|
2025-02-19 15:58:42 +08:00
|
|
|
/// </summary>
|
2025-05-08 14:26:36 +08:00
|
|
|
public string TaskId { get; set; }
|
2025-02-19 15:58:42 +08:00
|
|
|
|
|
|
|
|
/// <summary>
|
2025-05-08 14:26:36 +08:00
|
|
|
/// 图片/附件
|
2025-02-19 15:58:42 +08:00
|
|
|
/// </summary>
|
2025-05-08 14:26:36 +08:00
|
|
|
public string AttachUrl
|
2025-02-19 15:58:42 +08:00
|
|
|
{
|
|
|
|
|
get;
|
|
|
|
|
set;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|