26 lines
534 B
C#
26 lines
534 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using System.Threading.Tasks;
|
|
|
|
namespace YLErp.Modules.TaskEventModule.Dto
|
|
{
|
|
public class AddGuoXinPushDataTaskResponse
|
|
{
|
|
public bool Success { get; set; }
|
|
|
|
public string ErrorMsg { get; set; }
|
|
|
|
/// <summary>
|
|
/// 任务Id
|
|
/// </summary>
|
|
public int Id { get; set; }
|
|
|
|
/// <summary>
|
|
/// 预计时间
|
|
/// </summary>
|
|
public int PredictTime { get; set; }
|
|
}
|
|
}
|