using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace Myshipping.Application { /// /// 预甩生成分享请求 /// public class RollingNominationGenShareLinkDto { /// /// 预甩调度批次ID /// public string dispatchBatchId { get; set; } /// /// 是否重新生成 /// public bool isRenew { get; set; } = false; /// /// 手工设定最后期限 /// public string ManualDeadLineDate { get; set;} } }