using DS.Module.Core;
using FluentValidation;
using SqlSugar;
namespace DS.WMS.ContainerManagement.Info.Dtos;
///
/// 箱管_集装箱基本信息 请求实体
///
public class CM_BaseInfoReq
{
///
/// 主键Id
///
public long Id { get; set; }
///
/// Desc:集装箱号
///
public string Cntrno { get; set; }
///
/// 箱型代码
///
public string CtnCode { get; set; }
///
/// Desc:箱型
///
public string Ctnall { get; set; }
///
/// Desc:箱皮重
///
public decimal? CtnWeight { get; set; }
///
/// Desc:箱生产时间
///
public DateTime? ProductionDate { get; set; }
///
/// Desc:箱初期成本
///
public decimal? CtnValue_Base { get; set; }
}