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

45 lines
1.1 KiB
C#

using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace Myshipping.Application
{
/// <summary>
/// 分享链接生成
/// </summary>
public class ShareLinkRequestDto
{
/// <summary>
/// 业务ID
/// </summary>
public string businessId { get; set; }
/// <summary>
/// 业务类型NOMI_DISPATCH-预甩调度BUSI对应的预甩的调度主键
/// </summary>
public string businessType { get; set; } = "NOMI_DISPATCH";
/// <summary>
/// 任务类型
/// </summary>
public string taskType { get; set; }
/// <summary>
/// 失效时间
/// </summary>
public string expireDate { get; set; }
/// <summary>
/// 是否需要用户反馈意见
/// </summary>
public bool isUserFeedBack { get; set; } = true;
/// <summary>
/// 是否重新生成
/// </summary>
public bool isRenew { get; set; } = false;
}
}