mh_sms/APT.MS.Domain/Entities/SC/PR/T_PR_AUDIT_REQUIREMENT.cs

18 lines
425 B
C#
Raw Normal View History

2024-01-22 09:17:01 +08:00
using APT.Infrastructure.Core;
using System;
using System.Collections.Generic;
using System.ComponentModel;
using System.Text;
namespace APT.MS.Domain.Entities.SC.PR
{
[Description("审核要求表")]
public class T_PR_AUDIT_REQUIREMENT : MesEntityBase
{
[Description("编号")]
public string CODE { get; set; }
[Description("名称")]
public string NAME { get; set; }
}
}