using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace Myshipping.Application
{
///
/// 保存预甩货明细箱型请求
///
public class SaveDetailContainerDto
{
///
/// 预甩货明细主键
///
public string detailPKId { get; set; }
///
/// 更新的箱型代码
///
public string ctnCode { get; set; }
}
}