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.
23 lines
440 B
C#
23 lines
440 B
C#
3 months ago
|
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_CtnScrapReq : CM_Rent_HeadBase
|
||
|
{
|
||
|
|
||
|
|
||
|
/// <summary>
|
||
|
/// 租箱租入明细信息
|
||
|
/// </summary>
|
||
|
public List<CM_BuyCtn_DetailReq> BodyList { get; set; }
|
||
|
|
||
|
}
|