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.
41 lines
912 B
C#
41 lines
912 B
C#
using DS.Module.Core;
|
|
using DS.WMS.Core.Op.Entity;
|
|
using SqlSugar;
|
|
|
|
namespace DS.WMS.ContainerManagement.Info.Dtos;
|
|
|
|
/// <summary>
|
|
/// 箱管_租箱租入 返回实体
|
|
/// </summary>
|
|
public class CM_RentInRes
|
|
{
|
|
/// <summary>
|
|
/// 主键Id
|
|
/// </summary>
|
|
public long Id { get; set; }
|
|
/// <summary>
|
|
/// Desc:集装箱号
|
|
/// </summary>
|
|
public string Cntrno { get; set; }
|
|
|
|
public BusinessType BusinessType { get; set; } = BusinessType.CM_RentIn;
|
|
/// <summary>
|
|
/// Desc:箱型
|
|
/// </summary>
|
|
public string Ctnall { get; set; }
|
|
|
|
/// <summary>
|
|
/// Desc:箱皮重
|
|
/// </summary>
|
|
public decimal? CtnWeight { get; set; }
|
|
|
|
/// <summary>
|
|
/// Desc:箱生产时间
|
|
/// </summary>
|
|
public DateTime? ProductionDate { get; set; }
|
|
|
|
/// <summary>
|
|
/// Desc:箱初期成本
|
|
/// </summary>
|
|
public decimal? CtnValue_Base { get; set; }
|
|
} |