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#

4 months ago
using DS.Module.Core;
3 months ago
using DS.Module.Core.Enums;
4 months ago
using DS.WMS.Core.Op.Entity;
using FluentValidation;
4 months ago
using SqlSugar;
4 months ago
namespace DS.WMS.ContainerManagement.Info.Dtos;
4 months ago
/// <summary>
4 months ago
/// 箱管_租箱租出 请求实体
4 months ago
/// </summary>
3 months ago
public class CM_RentOneWayReq : CM_Rent_HeadBase
4 months ago
{
4 months ago
/// <summary>
3 months ago
/// Desc:原箱主Id
4 months ago
/// </summary>
3 months ago
public long? OldContainerOwnerId { get; set; }
4 months ago
/// <summary>
3 months ago
/// Desc:原箱主
4 months ago
/// </summary>
3 months ago
public string OldContainerOwner { get; set; }
4 months ago
4 months ago
/// <summary>
/// Desc:租箱客户Id
/// </summary>
public long RentCustomerId { get; set; }
4 months ago
/// <summary>
/// Desc:租箱客户
/// </summary>
4 months ago
public string RentCustomerName { get; set; }
4 months ago
4 months ago
4 months ago
4 months ago
/// <summary>
3 months ago
/// 单程业务 明细信息
4 months ago
/// </summary>
public List<CM_RentOneWay_DetailReq> BodyList { get; set; }
}