|
|
|
@ -0,0 +1,46 @@
|
|
|
|
|
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
|
|
|
|
|
{
|
|
|
|
|
/// <summary>
|
|
|
|
|
///
|
|
|
|
|
/// </summary>
|
|
|
|
|
[SugarTable("booking_extendstate")]
|
|
|
|
|
[Description("扩展状态")]
|
|
|
|
|
public class BookingExtendState: PrimaryKeyEntity
|
|
|
|
|
{
|
|
|
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// 业务id
|
|
|
|
|
/// </summary>
|
|
|
|
|
public long bookingId { get; set; }
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// 提箱小票未申请
|
|
|
|
|
/// </summary>
|
|
|
|
|
public int noApply { get; set; }
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// 提箱小票已申请未打印
|
|
|
|
|
/// </summary>
|
|
|
|
|
public int applyNoPrint { get; set; }
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// 提箱小票已打印
|
|
|
|
|
/// </summary>
|
|
|
|
|
public int print { get; set; }
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
}
|
|
|
|
|
}
|