You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
30 lines
649 B
C#
30 lines
649 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using System.Threading.Tasks;
|
|
|
|
namespace DS.WMS.Core.Op.Dtos
|
|
{
|
|
/// <summary>
|
|
/// 船证签入签出请求
|
|
/// </summary>
|
|
public class ShipCertCheckInOutDto
|
|
{
|
|
/// <summary>
|
|
/// 订舱编号
|
|
/// </summary>
|
|
public long[] bookids { get; set; }
|
|
|
|
/// <summary>
|
|
/// 签入或签出时间
|
|
/// </summary>
|
|
public Nullable<DateTime> CheckDate { get; set; }
|
|
|
|
/// <summary>
|
|
/// 签入或签出备注
|
|
/// </summary>
|
|
public string Notes { get; set; }
|
|
}
|
|
}
|