Files
iMES_Net/iMES.Entity/DomainModels/Equip/Equip_SpotMaintPlanDevice.cs
2026-02-06 18:34:35 +08:00

146 lines
4.0 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 iMES.Entity.SystemModels;
namespace iMES.Entity.DomainModels
{
[Entity(TableCnName = "设备清单",TableName = "Equip_SpotMaintPlanDevice",DBServer = "SysDbContext")]
public partial class Equip_SpotMaintPlanDevice:SysEntity
{
/// <summary>
///点检保养计划设备清单主键
/// </summary>
[Key]
[Display(Name ="点检保养计划设备清单主键")]
[Column(TypeName="uniqueidentifier")]
[Editable(true)]
[Required(AllowEmptyStrings=false)]
public Guid SpotMaintPlanDeviceId { get; set; }
/// <summary>
///点检保养计划主键
/// </summary>
[Display(Name ="点检保养计划主键")]
[Column(TypeName="uniqueidentifier")]
[Editable(true)]
[Required(AllowEmptyStrings=false)]
public Guid SpotMaintPlanId { get; set; }
/// <summary>
///设备主键
/// </summary>
[Display(Name ="设备主键")]
[Column(TypeName="uniqueidentifier")]
[Editable(true)]
[Required(AllowEmptyStrings=false)]
public Guid DeviceId { get; set; }
/// <summary>
///设备名称
/// </summary>
[Display(Name ="设备名称")]
[MaxLength(100)]
[Column(TypeName="nvarchar(100)")]
[Editable(true)]
[Required(AllowEmptyStrings=false)]
public string DeviceName { get; set; }
/// <summary>
///设备编码
/// </summary>
[Display(Name ="设备编码")]
[MaxLength(100)]
[Column(TypeName="varchar(100)")]
[Editable(true)]
[Required(AllowEmptyStrings=false)]
public string DeviceCode { get; set; }
/// <summary>
///品牌
/// </summary>
[Display(Name ="品牌")]
[MaxLength(100)]
[Column(TypeName="nvarchar(100)")]
[Editable(true)]
public string DeviceBrand { get; set; }
/// <summary>
///规格型号
/// </summary>
[Display(Name ="规格型号")]
[MaxLength(100)]
[Column(TypeName="nvarchar(100)")]
[Editable(true)]
public string ModelType { get; set; }
/// <summary>
///备注
/// </summary>
[Display(Name ="备注")]
[MaxLength(1000)]
[Column(TypeName="nvarchar(1000)")]
[Editable(true)]
public string Remark { get; set; }
/// <summary>
///创建人编号
/// </summary>
[Display(Name ="创建人编号")]
[Column(TypeName="int")]
[Editable(true)]
public int? CreateID { get; set; }
/// <summary>
///创建人
/// </summary>
[Display(Name ="创建人")]
[MaxLength(30)]
[Column(TypeName="nvarchar(30)")]
[Editable(true)]
public string Creator { get; set; }
/// <summary>
///创建时间
/// </summary>
[Display(Name ="创建时间")]
[Column(TypeName="datetime")]
[Editable(true)]
public DateTime? CreateDate { get; set; }
/// <summary>
///修改人编号
/// </summary>
[Display(Name ="修改人编号")]
[Column(TypeName="int")]
[Editable(true)]
public int? ModifyID { get; set; }
/// <summary>
///修改人
/// </summary>
[Display(Name ="修改人")]
[MaxLength(30)]
[Column(TypeName="nvarchar(30)")]
[Editable(true)]
public string Modifier { get; set; }
/// <summary>
///修改时间
/// </summary>
[Display(Name ="修改时间")]
[Column(TypeName="datetime")]
[Editable(true)]
public DateTime? ModifyDate { get; set; }
}
}