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
842 B
C#
41 lines
842 B
C#
using DS.Module.Core;
|
|
using FluentValidation;
|
|
using SqlSugar;
|
|
|
|
namespace DS.WMS.ContainerManagement.Info.Dtos;
|
|
|
|
/// <summary>
|
|
/// 箱管_集装箱基本信息 请求实体
|
|
/// </summary>
|
|
public class CM_BaseInfoReq
|
|
{
|
|
/// <summary>
|
|
/// 主键Id
|
|
/// </summary>
|
|
public long Id { get; set; }
|
|
/// <summary>
|
|
/// Desc:集装箱号
|
|
/// </summary>
|
|
public string Cntrno { get; set; }
|
|
|
|
/// <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; }
|
|
}
|