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
600 B
C#
30 lines
600 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 SeaExportBatchEditShipagencyReq
|
|
{
|
|
/// <summary>
|
|
/// 业务Ids
|
|
/// </summary>
|
|
public List<long> Ids { get; set; }
|
|
|
|
/// <summary>
|
|
/// 船代
|
|
/// </summary>
|
|
public string ShipAgency { get; set; }
|
|
|
|
/// <summary>
|
|
/// 船代ID
|
|
/// </summary>
|
|
public string ShipAgencyId { get; set; }
|
|
}
|
|
}
|