18 lines
422 B
C#
18 lines
422 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_EVALUATION_METHOD : MesEntityBase
|
|
{
|
|
[Description("编号")]
|
|
public string CODE { get; set; }
|
|
[Description("名称")]
|
|
public string NAME { get; set; }
|
|
}
|
|
}
|