You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
42 lines
941 B
42 lines
941 B
namespace WinIn.FasterZ.Wms.Z_Business.LabelPalletLabel;
|
|
|
|
using System;
|
|
|
|
using Volo.Abp.Domain.Entities.Auditing;
|
|
|
|
public class LabelPalletLabel : AuditedAggregateRoot<Guid>
|
|
{
|
|
public string Code { get; set; } = null!;
|
|
|
|
public string? ConcurrencyStamp { get; set; }
|
|
|
|
public DateTime CreationTime { get; set; }
|
|
|
|
public Guid? CreatorId { get; set; }
|
|
|
|
public string? Desc1 { get; set; }
|
|
|
|
public string? Desc2 { get; set; }
|
|
|
|
public string? ExtraProperties { get; set; }
|
|
|
|
public bool HasItem { get; set; }
|
|
|
|
public Guid Id { get; set; }
|
|
|
|
public string LabelStatus { get; set; } = null!;
|
|
|
|
public string LabelType { get; set; } = null!;
|
|
|
|
public DateTime? LastModificationTime { get; set; }
|
|
|
|
public Guid? LastModifierId { get; set; }
|
|
|
|
public string? Name { get; set; }
|
|
|
|
public Guid ParentId { get; set; }
|
|
|
|
public string? Remark { get; set; }
|
|
|
|
public Guid? TenantId { get; set; }
|
|
}
|