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/BookingServiceItem.cs

28 lines
677 B
C#

using System;
using SqlSugar;
using System.ComponentModel;
using Myshipping.Core.Entity;
namespace Myshipping.Application.Entity
{
/// <summary>
/// 服务项目
/// </summary>
[SugarTable("booking_serviceitem")]
[Description("订舱状态")]
public class BookingServiceItem : PrimaryKeyEntity
{
/// <summary>
/// 订舱id
/// </summary>
public long? BookingId { get; set; }
/// <summary>
/// 状态代码
/// </summary>
public string Code { get; set; }
/// <summary>
/// 状态名称
/// </summary>
public string Value { get; set; }
}
}