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.
58 lines
1.4 KiB
58 lines
1.4 KiB
using System;
|
|
using System.ComponentModel.DataAnnotations;
|
|
using Win_in.Sfs.Label.Domain.Shared;
|
|
using Win_in.Sfs.Shared.Application.Contracts;
|
|
using IHasCode = Win_in.Sfs.Shared.Domain.IHasCode;
|
|
|
|
namespace Win_in.Sfs.Label.Application.Contracts;
|
|
|
|
public class PalletLabelDto : SfsBasicDTOBase, IHasCode
|
|
{
|
|
|
|
/// <summary>
|
|
/// 托标签号
|
|
/// </summary>
|
|
[Display(Name = "托标签号")]
|
|
public string Code { get; set; }
|
|
|
|
/// <summary>
|
|
/// 标签类型
|
|
/// </summary>
|
|
[Display(Name = "标签类型")]
|
|
public EnumLabelType LabelType { get; set; }
|
|
|
|
/// <summary>
|
|
/// 标签状态
|
|
/// </summary>
|
|
[Display(Name = "标签状态")]
|
|
public LabelStatus LabelStatus { get; set; }
|
|
|
|
/// <summary>
|
|
/// 是否承载物品
|
|
/// </summary>
|
|
[Display(Name = "是否承载物品")]
|
|
public bool HasItem { get; set; }
|
|
|
|
/// <summary>
|
|
/// 物品名称
|
|
/// </summary>
|
|
[Display(Name = "物品名称")]
|
|
public string ItemName { get; set; }
|
|
/// <summary>
|
|
/// 物品描述1
|
|
/// </summary>
|
|
[Display(Name = "物品描述1")]
|
|
public string ItemDesc1 { get; set; }
|
|
/// <summary>
|
|
/// 物品描述2
|
|
/// </summary>
|
|
[Display(Name = "物品描述2")]
|
|
public string ItemDesc2 { get; set; }
|
|
|
|
/// <summary>
|
|
/// 父托盘ID
|
|
/// </summary>
|
|
[Display(Name = "父托盘ID")]
|
|
public Guid ParentID { get; set; }
|
|
|
|
}
|
|
|