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_PLAN_RESOURCES : MesEntityBase { [Description("编号")] [FormFieldTable] [FormFieldQuery] public string CODE { get; set; } [Description("名称")] [FormFieldTable] [FormFieldQuery] public string NAME { get; set; } } }