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.

35 lines
763 B
C#

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