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.
19 lines
662 B
19 lines
662 B
using System.ComponentModel; |
|
|
|
namespace BrilliantSightClient.Model.GradeResult.Entity.Enums; |
|
|
|
public enum Accuracy |
|
{ |
|
[Description("强制保留两位小数,向下取整(ZDZ1)")] |
|
ForceTwoDecimals = 1, |
|
[Description("强制保留一位小数,向下取整(ZD1)")] |
|
ForceOneDecimal = 2, |
|
[Description("将数值舍入到最近的 0.5 倍数(ZD5)")] |
|
HalfStepRounding = 3, |
|
[Description("将数值舍入到最近的 5 的整数倍(Z5)")] |
|
MultipleOfFive = 4, |
|
[Description("将数值舍入到最近的0.2倍数(ZD2)")] |
|
DecimalTwoStepRounding = 5, |
|
[Description("强制向下取整为整数(Floor)")] |
|
IntegerFloor = 6 |
|
} |