using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace DS.WMS.Core.Op.Dtos { /// /// 海运出口复制请求 /// public class SeaExportCopyReq { /// /// 主键Id /// public long Id { get; set; } /// /// 是否复制费用 /// public bool IsCopyFee { get; set; } =false; } }