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.

68 lines
2.1 KiB
C#

using DS.Module.Core.Data;
using SqlSugar;
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace DS.WMS.Core.Op.Entity
{
/// <summary>
/// 订单扩展状态
/// </summary>
[SqlSugar.SugarTable("op_booking_extend_state", "订单扩展状态")]
public class BookingExtendState : BaseModel<long>
{
/// <summary>
/// 业务id
/// </summary>
[SugarColumn(ColumnDescription = "业务id")]
public long BusinessId { get; set; }
/// <summary>
/// 提箱小票未申请
/// </summary>
[SugarColumn(ColumnDescription = "提箱小票未申请", IsNullable = true)]
public int noApply { get; set; }
/// <summary>
/// 提箱小票已申请未打印
/// </summary>
[SugarColumn(ColumnDescription = "提箱小票已申请未打印", IsNullable = true)]
public int applyNoPrint { get; set; }
/// <summary>
/// 提箱小票已打印
/// </summary>
[SugarColumn(ColumnDescription = "提箱小票已打印", IsNullable = true)]
public int print { get; set; }
/// <summary>
/// 是否封账
/// </summary>
[SugarColumn(ColumnDescription = "是否封账", IsNullable = true)]
public bool IsLockBooking { get; set; }
/// <summary>
/// 提箱小票有效期起始时间
/// </summary>
[SugarColumn(ColumnDescription = "提箱小票有效期起始时间", IsNullable = true)]
public DateTime? TxxpBeginTime { get; set; }
/// <summary>
/// 提箱小票有效期终止时间
/// </summary>
[SugarColumn(ColumnDescription = "提箱小票有效期终止时间", IsNullable = true)]
public DateTime? TxxpEndTime { get; set; }
/// <summary>
/// 提箱小票pdf地址
/// </summary>
[SugarColumn(ColumnDescription = "提箱小票pdf地址", Length = 200, IsNullable = true)]
public string TxxpPdfUrl { get; set; }
}
}