46 lines
941 B
C#
46 lines
941 B
C#
|
|
|
|
|
|
|
|
|
|
using System;
|
|
using System.Collections.Generic;
|
|
using System.ComponentModel;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using System.Threading.Tasks;
|
|
using APT.Infrastructure.Core;
|
|
using APT.MS.Domain.Enums;
|
|
|
|
namespace APT.MS.Domain.Entities.HM
|
|
{
|
|
/// <summary>
|
|
/// 辨识设备
|
|
/// </summary>
|
|
[Description("辨识设备")]
|
|
public class T_HM_EQUIPMENT : MesEntityBase
|
|
{
|
|
/// <summary>
|
|
/// 设备名称
|
|
/// </summary>
|
|
[Description("设备名称")]
|
|
[FormFieldTable]
|
|
[FormFieldQuery]
|
|
[FormFieldEdit]
|
|
[DataFieldLength(100)]
|
|
[DataFieldIndex(true)]
|
|
public string NAME { get; set; }
|
|
/// <summary>
|
|
/// 状态
|
|
/// </summary>
|
|
[Description("状态")]
|
|
[FormFieldTable]
|
|
[FormFieldQuery]
|
|
[FormFieldEdit]
|
|
[EnumName("STATUSEnum")]
|
|
public STATUSEnum STATUS { get; set; }
|
|
|
|
|
|
|
|
}
|
|
} |