28 lines
655 B
C#
28 lines
655 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;
|
|||
|
|
|
|||
|
|
namespace APT.MS.Domain.Entities.HM
|
|||
|
|
{
|
|||
|
|
/// <summary>
|
|||
|
|
/// 评价要求
|
|||
|
|
/// </summary>
|
|||
|
|
[Description("评价要求")]
|
|||
|
|
public class T_HM_EVALUATE_REQUIREMENT : MesEntityBase
|
|||
|
|
{
|
|||
|
|
/// <summary>
|
|||
|
|
/// 名称
|
|||
|
|
/// </summary>
|
|||
|
|
[Description("名称")]
|
|||
|
|
[DataFieldLength(100)]
|
|||
|
|
[FormFieldTable]
|
|||
|
|
[FormFieldQuery]
|
|||
|
|
[FormFieldEdit]
|
|||
|
|
[DataFieldIndex(true)]
|
|||
|
|
public string NAME { get; set; }
|
|||
|
|
}
|
|||
|
|
}
|