20 lines
466 B
C#
20 lines
466 B
C#
using APT.Infrastructure.Core;
|
|
using System;
|
|
using System.Collections.Generic;
|
|
using System.ComponentModel;
|
|
using System.Text;
|
|
|
|
namespace APT.MS.Domain.Entities.SK
|
|
{
|
|
[Description("监管部门")]
|
|
public class T_SK_MONITOR_DEPART : MesEntityBase
|
|
{
|
|
[Description("名称")]
|
|
[FormFieldTable]
|
|
[FormFieldEdit]
|
|
[FormFieldQuery]
|
|
[DataFieldLength(50)]
|
|
public string NAME { get; set; }
|
|
}
|
|
}
|