mh_sms/APT.MS.Domain/Entities/SC/PT/T_PT_COLLECT_REQUIREMENTS.cs
2024-01-22 09:17:01 +08:00

23 lines
529 B
C#

using APT.Infrastructure.Core;
using System;
using System.Collections.Generic;
using System.ComponentModel;
using System.Text;
namespace APT.MS.Domain.Entities.SC.PT
{
[Description("征集要求表")]
public class T_PT_COLLECT_REQUIREMENTS : MesEntityBase
{
[Description("编号")]
[FormFieldTable]
[FormFieldQuery]
public string CODE { get; set; }
[Description("名称")]
[FormFieldTable]
[FormFieldQuery]
public string NAME { get; set; }
}
}