using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace DS.WMS.Core.Op.Dtos { /// /// 舱单发送实体 /// public class ShippingBillSendReq { /// /// 主键ids /// public long[] Ids { get; set; } /// /// 类型 /// public string Type { get; set; } /// /// 发送备注 /// public string SendRemark { get; set; } /// /// 是否校验 /// public bool IsCheck { get; set; } } }