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.
|
using System.ComponentModel; |
|
|
|
namespace BrilliantSightClient.Model.GradeResult.Entity.Enums; |
|
|
|
public enum DiamondShape |
|
{ |
|
[Description("强制保留两位小数,向下取整(ZDZ1)")] |
|
Round = 0, |
|
[Description("强制保留一位小数,向下取整(ZD1)")] |
|
Oval = 1, |
|
[Description("将数值舍入到最近的 0.5 倍数(ZD5)")] |
|
Pear = 2, |
|
} |