using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace DS.WMS.Core.Op.Dtos { /// /// 发起退仓请求 /// public class RefundTaskReq { /// /// 主键Id /// public long Id { get; set; } /// /// 是否保留费用 默认false /// public bool IsReserveFee { get; set; } } }