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.
BookingHeChuan/Myshipping.Application/Entity/BookingGoodsStatusConfig.cs

28 lines
710 B
C#

using System;
using SqlSugar;
using System.ComponentModel;
using Myshipping.Core.Entity;
namespace Myshipping.Application.Entity
{
/// <summary>
/// 订舱货物状态管理
/// </summary>
[SugarTable("booking_goods_status_config")]
[Description("订舱货物状态管理")]
public class BookingGoodsStatusConfig : DBEntityTenant
{
/// <summary>
/// 状态名称
/// </summary>
public string StatusName { get; set; }
/// <summary>
/// 排序号
/// </summary>
public int Sort { get; set; }
/// <summary>
/// 系统编码
/// </summary>
public string SystemCode { get; set; }
}
}