using DS.Module.Core; using DS.WMS.Core.Op.Entity; using SqlSugar; namespace DS.WMS.ContainerManagement.Info.Dtos; /// /// 箱管_租箱租入 返回实体 /// public class CM_RentInRes { /// /// 主键Id /// public long Id { get; set; } /// /// Desc:集装箱号 /// public string Cntrno { get; set; } public BusinessType BusinessType { get; set; } = BusinessType.CM_RentIn; /// /// 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; } }