using Myshipping.Core.Entity;
using SqlSugar;
using System;
using System.Collections.Generic;
using System.ComponentModel;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace Myshipping.Application.Entity
{
///
///
///
[SugarTable("booking_extendstate")]
[Description("扩展状态")]
public class BookingExtendState: PrimaryKeyEntity
{
///
/// 业务id
///
public long bookingId { get; set; }
///
/// 提箱小票未申请
///
public int noApply { get; set; }
///
/// 提箱小票已申请未打印
///
public int applyNoPrint { get; set; }
///
/// 提箱小票已打印
///
public int print { get; set; }
///
/// 是否封账
///
public bool IsLockBooking { get; set; }
///
/// 提箱小票有效期起始时间
///
public DateTime? TxxpBeginTime { get; set; }
///
/// 提箱小票有效期终止时间
///
public DateTime? TxxpEndTime { get; set; }
///
/// 提箱小票pdf地址
///
public string TxxpPdfUrl { get; set; }
}
}