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