using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace DS.WMS.Core.Op.Dtos { /// /// 船证签入签出请求 /// public class ShipCertCheckInOutDto { /// /// 订舱编号 /// public List bookids { get; set; } /// /// 签入或签出时间 /// public Nullable CheckDate { get; set; } /// /// 签入或签出备注 /// public string Notes { get; set; } } }