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.

33 lines
781 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; }
/// <summary>
/// 未确认
/// </summary>
public bool UnConfirm { get; set; }
}
}