22 lines
520 B
C#
22 lines
520 B
C#
|
|
using APT.Infrastructure.Core;
|
|||
|
|
using System;
|
|||
|
|
using System.Collections.Generic;
|
|||
|
|
using System.ComponentModel;
|
|||
|
|
using System.Text;
|
|||
|
|
|
|||
|
|
namespace APT.MS.Domain.Entities.SC.PE
|
|||
|
|
{
|
|||
|
|
[Description("监测项目")]
|
|||
|
|
public class T_PE_MONITOR_PROJECT : MesEntityBase
|
|||
|
|
{
|
|||
|
|
[Description("编号")]
|
|||
|
|
[FormFieldTable]
|
|||
|
|
[FormFieldQuery]
|
|||
|
|
public string CODE { get; set; }
|
|||
|
|
[Description("名称")]
|
|||
|
|
[FormFieldTable]
|
|||
|
|
[FormFieldQuery]
|
|||
|
|
public string NAME { get; set; }
|
|||
|
|
}
|
|||
|
|
}
|