mh_sms/APT.BaseData.Domain/Entities/FM/T_FM_RISK_LEVEL_PROPORTION.cs

22 lines
538 B
C#
Raw Normal View History

2024-04-12 16:50:28 +08:00
using APT.Infrastructure.Core;
using System;
using System.Collections.Generic;
using System.ComponentModel;
using System.Text;
namespace APT.BaseData.Domain.Entities.FM
{
[Description("风险等级占比")]
public partial class T_FM_RISK_LEVEL_PROPORTION : MesEntityBase
{
[Description("风险等级名称")]
public string RISK_LEVEL { get; set; }
[Description("总数量")]
public int COUNT { get; set; }
[Description("颜色")]
public string COLOR { get; set; }
}
}