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.

28 lines
671 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;
using SqlSugar;
namespace DS.WMS.ContainerManagement.Info.Dtos;
/// <summary>
/// 箱管_租箱租出 请求实体
/// </summary>
3 months ago
public class CM_RentOutReq:CM_Rent_HeadBase
4 months ago
{
/// <summary>
4 months ago
/// Desc:租箱客户Id
4 months ago
/// </summary>
4 months ago
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
/// <summary>
/// 租箱租出明细信息
/// </summary>
public List<CM_RentOut_DetailReq> BodyList { get; set; }=new List<CM_RentOut_DetailReq>();
4 months ago
}