步步为盈
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

43 lines
1.1 KiB

2 years ago
using System;
using System.Collections.Generic;
using System.Text;
namespace BBWY.Client.Models.APIModel
{
public class SearchOverTimeTaskResponse
{
public int TotalCount { get; set; }
public IList<OverTimeTaskResponse> OverTimeTaskResponses { get; set; }
}
public class OverTimeTaskResponse:NotifyObject
{
/// <summary>
/// 超时日期
/// </summary>
public DateTime OverTimeDate { get; set; }
/// <summary>
/// 任务信息(任务id 或者封箱id)
/// </summary>
public string TaskMessage { get; set; }
/// <summary>
/// 任务类型
/// </summary>
public TaskState TaskState { get; set; }
/// <summary>
/// 任务人
/// </summary>
public string TaskUserName { get; set; }
/// <summary>
/// 超时时间
/// </summary>
public string OverTime { get; set; }
/// <summary>
/// 备注
/// </summary>
public string RemarkMessage { get; set; }
}
}