using Microsoft.EntityFrameworkCore;
|
using System.ComponentModel.DataAnnotations;
|
using System.ComponentModel.DataAnnotations.Schema;
|
|
/*
|
* @author : 刘文奇
|
* @date : 2024/4/23下午5:02:29
|
* @desc : 批次属性规则明细
|
*/
|
namespace Admin.NET.Core
|
{
|
/// <summary>
|
/// 批次属性规则明细
|
/// </summary>
|
[Table("wms_batch_rule_detail")]
|
[Comment("批次属性规则明细")]
|
public class WmsBatchRuleDetail : DEntityBase
|
{
|
|
|
/// <summary>
|
/// 规则编号Id
|
/// </summary>
|
[Comment("规则编号Id")]
|
|
public long? BatchRuleId { get; set; }
|
|
|
/// <summary>
|
/// 批次标签
|
/// </summary>
|
[Comment("批次标签")]
|
[MaxLength(255)]
|
public string BatchTag { get; set; }
|
|
|
/// <summary>
|
/// RF标签
|
/// </summary>
|
[Comment("RF标签")]
|
[MaxLength(255)]
|
public string RFTag { get; set; }
|
|
|
/// <summary>
|
/// RF显示
|
/// </summary>
|
[Comment("RF显示")]
|
[MaxLength(255)]
|
public string RFShow { get; set; }
|
|
|
/// <summary>
|
/// 输入控制
|
/// </summary>
|
[Comment("输入控制")]
|
[MaxLength(255)]
|
public string InputControl { get; set; }
|
|
|
/// <summary>
|
/// 属性格式
|
/// </summary>
|
[Comment("属性格式")]
|
[MaxLength(255)]
|
public string AttrForamt { get; set; }
|
|
|
/// <summary>
|
/// 属性选项
|
/// </summary>
|
[Comment("属性选项")]
|
[MaxLength(255)]
|
public string AttrOption { get; set; }
|
|
|
/// <summary>
|
/// 关键属性
|
/// </summary>
|
[Comment("关键属性")]
|
[MaxLength(255)]
|
public string KeyAttr { get; set; }
|
|
|
/// <summary>
|
/// 是否禁用
|
/// </summary>
|
[Comment("是否禁用")]
|
[Required]
|
|
public bool IsDisabled { get; set; }
|
|
|
|
|
|
|
|
|
|
}
|
}
|