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.
39 lines
872 B
C#
39 lines
872 B
C#
using DS.Module.Core;
|
|
using DS.Module.Core.Enums;
|
|
using DS.WMS.Core.Op.Entity;
|
|
using FluentValidation;
|
|
using SqlSugar;
|
|
|
|
namespace DS.WMS.ContainerManagement.Info.Dtos;
|
|
|
|
/// <summary>
|
|
/// 箱管_租箱租出 请求实体
|
|
/// </summary>
|
|
public class CM_RentOneWayReq : CM_Rent_HeadBase
|
|
{
|
|
/// <summary>
|
|
/// Desc:原箱主Id
|
|
/// </summary>
|
|
public long? OldContainerOwnerId { get; set; }
|
|
/// <summary>
|
|
/// Desc:原箱主
|
|
/// </summary>
|
|
public string OldContainerOwner { get; set; }
|
|
|
|
/// <summary>
|
|
/// Desc:租箱客户Id
|
|
/// </summary>
|
|
public long RentCustomerId { get; set; }
|
|
/// <summary>
|
|
/// Desc:租箱客户
|
|
/// </summary>
|
|
public string RentCustomerName { get; set; }
|
|
|
|
|
|
|
|
/// <summary>
|
|
/// 单程业务 明细信息
|
|
/// </summary>
|
|
public List<CM_RentOneWay_DetailReq> BodyList { get; set; }
|
|
}
|