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; } /// /// 任务类型 /// public string taskType { get; set; } /// /// 失效时间 /// public string expireDate { get; set; } /// /// 是否需要用户反馈意见 /// public bool isUserFeedBack { get; set; } = true; } }