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.

32 lines
708 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 ShippingBillSendReq
{
/// <summary>
/// 主键ids
/// </summary>
public long[] Ids { get; set; }
/// <summary>
/// 类型
/// </summary>
public string Type { get; set; }
/// <summary>
/// 发送备注
/// </summary>
public string SendRemark { get; set; }
/// <summary>
/// 是否校验
/// </summary>
public bool IsCheck { get; set; }
}
}