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