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.

34 lines
814 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;
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_RentOneWayRes : CM_Rent_HeadBase
4 months ago
{
/// <summary>
/// Desc:租箱业务号
/// </summary>
public string Billno { get; set; }
/// <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
}