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.
35 lines
726 B
C#
35 lines
726 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using System.Threading.Tasks;
|
|
|
|
namespace DS.WMS.Core.Op.Dtos
|
|
{
|
|
/// <summary>
|
|
/// 舱位用途
|
|
/// </summary>
|
|
public class BookingSlotUseToDto
|
|
{
|
|
/// <summary>
|
|
/// 用途代码
|
|
/// </summary>
|
|
public string UseTo { get; set; }
|
|
|
|
/// <summary>
|
|
/// 用途名称
|
|
/// </summary>
|
|
public string UseToName { get; set; }
|
|
|
|
/// <summary>
|
|
/// 用途值
|
|
/// </summary>
|
|
public string UseToVal { get; set; }
|
|
|
|
/// <summary>
|
|
/// 用途显示值
|
|
/// </summary>
|
|
public string UseToValShow { get; set; }
|
|
}
|
|
}
|