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