You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
14 lines
495 B
14 lines
495 B
namespace BrilliantSightClient.Model.GradeLevel.Entity.DatabaseEntity; |
|
|
|
/// <summary> |
|
/// 综合评级设定表 |
|
/// </summary> |
|
public class GradeLevelTotalSet: BaseEntity |
|
{ |
|
public string Mst_Sign { get; set; } = string.Empty; |
|
public string Mst_Name { get; set; } = string.Empty; |
|
public int Set_Type { get; set; } = 0; |
|
public int Statistics { get; set; } = 0; |
|
public string DataNames { get; set; } = string.Empty; |
|
public string DataSigns { get; set; } = string.Empty; |
|
} |