Files
2026-05-15 23:22:48 +08:00

92 lines
2.5 KiB
C#
Raw Permalink Blame History

This file contains ambiguous Unicode characters
This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.
/*
*代码由框架生成,任何更改都可能导致被代码生成器覆盖
*如果数据库字段发生变化请在代码生器重新生成此Model
*/
using System;
using System.Collections.Generic;
using System.ComponentModel.DataAnnotations;
using System.ComponentModel.DataAnnotations.Schema;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
using SqlSugar;
using VolPro.Entity.SystemModels;
namespace VolPro.Entity.DomainModels
{
[Entity(TableCnName = "规则条件",TableName = "warehouse_rulecondition",DBServer = "ServiceDbContext")]
public partial class warehouse_rulecondition:ServiceEntity
{
/// <summary>
///条件编号
/// </summary>
[SugarColumn(IsPrimaryKey = true, IsIdentity = true)]
[Key]
[Display(Name ="条件编号")]
[Column(TypeName="int")]
[Editable(true)]
[Required(AllowEmptyStrings=false)]
public int id { get; set; }
/// <summary>
///设备
/// </summary>
[Display(Name ="设备")]
[Column(TypeName="int")]
[Editable(true)]
public int? DeviceId { get; set; }
/// <summary>
///变量
/// </summary>
[Display(Name ="变量")]
[Column(TypeName="int")]
[Editable(true)]
public int? ValueId { get; set; }
/// <summary>
///比对类型
/// </summary>
[Display(Name ="比对类型")]
[MaxLength(255)]
[Column(TypeName="nvarchar(255)")]
[Editable(true)]
public string Type { get; set; }
/// <summary>
///比较运算
/// </summary>
[Display(Name ="比较运算")]
[MaxLength(255)]
[Column(TypeName="nvarchar(255)")]
[Editable(true)]
public string CompareOperator { get; set; }
/// <summary>
///目标值开关状态
/// </summary>
[Display(Name ="目标值开关状态")]
[MaxLength(255)]
[Column(TypeName="nvarchar(255)")]
[Editable(true)]
public string TargetValue_Switch { get; set; }
/// <summary>
///目标值数值
/// </summary>
[Display(Name ="目标值数值")]
[Column(TypeName="int")]
[Editable(true)]
public int? TargetValue_Number { get; set; }
/// <summary>
///所属规则编号
/// </summary>
[Display(Name ="所属规则编号")]
[Column(TypeName="int")]
[Editable(true)]
public int? RuleID { get; set; }
}
}