FlLabelPrintTaskDbEntity.cs 1.06 KB
using SqlSugar;

namespace FoodLabeling.Application.Services.DbModels;

/// <summary>
/// 标签打印任务(对应表:fl_label_print_task)
/// </summary>
[SugarTable("fl_label_print_task")]
public class FlLabelPrintTaskDbEntity
{
    [SugarColumn(IsPrimaryKey = true)]
    public string Id { get; set; } = string.Empty;

    public bool IsDeleted { get; set; }

    public DateTime CreationTime { get; set; }

    public string? CreatorId { get; set; }

    public string? LastModifierId { get; set; }

    public DateTime? LastModificationTime { get; set; }

    public string ConcurrencyStamp { get; set; } = string.Empty;

    public string? LocationId { get; set; }

    public string? LabelCode { get; set; }

    public string? ProductId { get; set; }

    public string? LabelTypeId { get; set; }

    public string? TemplateCode { get; set; }

    public int PrintQuantity { get; set; }

    public DateTime? BaseTime { get; set; }

    public string? PrinterId { get; set; }

    public string? PrinterMac { get; set; }

    public string? PrinterAddress { get; set; }
}