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.
26 lines
516 B
C#
26 lines
516 B
C#
using System;
|
|
|
|
namespace Myshipping.Application
|
|
{
|
|
/// <summary>
|
|
/// 订舱货物状态输出参数
|
|
/// </summary>
|
|
public class BookingGoodsStatusConfigOutput
|
|
{
|
|
/// <summary>
|
|
/// 主键
|
|
/// </summary>
|
|
public long Id { get; set; }
|
|
|
|
/// <summary>
|
|
/// 状态名称
|
|
/// </summary>
|
|
public string StatusName { get; set; }
|
|
/// <summary>
|
|
/// 排序号
|
|
/// </summary>
|
|
public int Sort { get; set; }
|
|
|
|
}
|
|
}
|