using DS.Module.Core;
using FluentValidation;
namespace DS.WMS.Core.Code.Dtos;
///
/// 集装箱信息导入请求实体
///
public class CodeCtnExcelImportReq
{
///
/// 集装箱尺寸
///
public string CtnSize { get; set; } = "";
///
/// 集装箱类型
///
public string CtnType { get; set; }= "";
///
/// 表现形式
///
public string CtnName { get; set; }= "";
///
/// EDI代码
///
public string EdiCode { get; set; }= "";
///
/// 箱皮重
///
public decimal CtnWeight { get; set; }= 0;
///
/// 中文说明
///
public string CnExplain { get; set; }= "";
///
/// 英文说明
///
public string EnExplain { get; set; }= "";
///
/// AFR代码
///
public string AfrCode { get; set; }= "";
///
/// 默认限重
///
public decimal LimitWeight { get; set; } = 0;
///
/// TEU
///
public decimal TEU { get; set; }= 0;
}