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.
22 lines
460 B
C#
22 lines
460 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.ComponentModel;
|
|
using Myshipping.Core;
|
|
|
|
namespace Myshipping.Application
|
|
{
|
|
/// <summary>
|
|
/// 订舱主表输出参数
|
|
/// </summary>
|
|
public class BookingOrderDelete
|
|
{
|
|
public List<BookingOrderDeleteDetail> Delete { get; set; }
|
|
}
|
|
|
|
public class BookingOrderDeleteDetail
|
|
{
|
|
public long Id { get; set; }
|
|
public string MBLNO { get; set; }
|
|
}
|
|
}
|