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.
22 lines
465 B
22 lines
465 B
using Win_in.Sfs.Shared.Domain;
|
|
using Win_in.Sfs.Shared.Domain.Entities;
|
|
|
|
namespace Win_in.Sfs.Label.Domain;
|
|
|
|
/// <summary>
|
|
/// 托盘代码生成
|
|
/// </summary>
|
|
public class PalletCode : SfsAggregateRootBase
|
|
{
|
|
/// <summary>
|
|
/// 生成规则 起始字符
|
|
/// </summary>
|
|
[IgnoreUpdate]
|
|
public string RuleCode { get; set; }
|
|
|
|
/// <summary>
|
|
/// 起始数字
|
|
/// </summary>
|
|
[IgnoreUpdate]
|
|
public int PalletlNumber { get; set; }
|
|
}
|
|
|