步步为盈
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.

56 lines
1.5 KiB

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 OverTimeTaskType? OverTimeTaskType { get; set; }
/// <summary>
/// 任务人
/// </summary>
public string TaskUserName { get; set; }
/// <summary>
/// 超时时间
/// </summary>
public string OverTime { get; set; }
/// <summary>
/// 备注
/// </summary>
public string RemarkMessage { get; set; }
/// <summary>
/// 任务类型(任务ID = 0,封箱ID = 1)
/// </summary>
public TaskMessageType TaskMessageType { get; set; }
/// <summary>
/// 任务id 或者 封箱id
/// </summary>
public long Id { get; set; }
/// <summary>
/// 任务状态/或者封箱状态
/// </summary>
public string TaskState { get; set; }
}
}