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
905 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
/// </summary>
3 months ago
public class CM_RentOneWayReq : CM_Rent_HeadBase
4 months ago
{
3 months ago
///// <summary>
///// Desc:原箱主Id
///// </summary>
//public long? OldContainerOwnerId { get; set; }
///// <summary>
///// Desc:原箱主
///// </summary>
//public string OldContainerOwner { get; set; }
4 months ago
3 months ago
///// <summary>
///// Desc:租箱客户Id
///// </summary>
//public long RentCustomerId { get; set; }
///// <summary>
///// Desc:租箱客户
///// </summary>
//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>
3 months ago
public List<CM_RentOneWay_DetailReq>? BodyList { get; set; }
4 months ago
}