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

67 lines
1.4 KiB
C#

1 year ago
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; }
1 year ago
/// <summary>
/// 是否封账
/// </summary>
public bool IsLockBooking { get; set; }
12 months ago
/// <summary>
/// 提箱小票有效期起始时间
/// </summary>
public DateTime? TxxpBeginTime { get; set; }
/// <summary>
/// 提箱小票有效期终止时间
/// </summary>
public DateTime? TxxpEndTime { get; set; }
/// <summary>
/// 提箱小票pdf地址
/// </summary>
public string TxxpPdfUrl { get; set; }
1 year ago
}
}