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
{
///
/// 批次属性规则明细
///
[Table("wms_batch_rule_detail")]
[Comment("批次属性规则明细")]
public class WmsBatchRuleDetail : DEntityBase
{
///
/// 规则编号Id
///
[Comment("规则编号Id")]
public long? BatchRuleId { get; set; }
///
/// 批次标签
///
[Comment("批次标签")]
[MaxLength(255)]
public string BatchTag { get; set; }
///
/// RF标签
///
[Comment("RF标签")]
[MaxLength(255)]
public string RFTag { get; set; }
///
/// RF显示
///
[Comment("RF显示")]
[MaxLength(255)]
public string RFShow { get; set; }
///
/// 输入控制
///
[Comment("输入控制")]
[MaxLength(255)]
public string InputControl { get; set; }
///
/// 属性格式
///
[Comment("属性格式")]
[MaxLength(255)]
public string AttrForamt { get; set; }
///
/// 属性选项
///
[Comment("属性选项")]
[MaxLength(255)]
public string AttrOption { get; set; }
///
/// 关键属性
///
[Comment("关键属性")]
[MaxLength(255)]
public string KeyAttr { get; set; }
///
/// 是否禁用
///
[Comment("是否禁用")]
[Required]
public bool IsDisabled { get; set; }
}
}