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.
32 lines
664 B
C#
32 lines
664 B
C#
using DS.Module.Core;
|
|
using DS.Module.Core.Enums;
|
|
using DS.WMS.Core.Op.Dtos;
|
|
using DS.WMS.Core.Op.Entity;
|
|
using FluentValidation;
|
|
using SqlSugar;
|
|
|
|
namespace DS.WMS.ContainerManagement.Info.Dtos;
|
|
|
|
/// <summary>
|
|
/// 箱管_卖箱 请求实体
|
|
/// </summary>
|
|
public class CM_SellCtnReq : CM_Rent_HeadBase
|
|
{
|
|
|
|
/// <summary>
|
|
/// Desc:购箱箱主Id
|
|
/// </summary>
|
|
public long? BuyContainerOwnerId { get; set; }
|
|
/// <summary>
|
|
/// Desc:购箱箱主
|
|
/// </summary>
|
|
public string BuyContainerOwner { get; set; }
|
|
|
|
|
|
/// <summary>
|
|
/// 卖箱明细信息
|
|
/// </summary>
|
|
public List<CM_SellCtn_DetailReq> BodyList { get; set; }
|
|
|
|
}
|