21 lines
429 B
C#
21 lines
429 B
C#
using System.ComponentModel;
|
|
using System.ComponentModel.DataAnnotations;
|
|
|
|
namespace YLErp.Model.Enum
|
|
{
|
|
public enum ExpectedReturnEnum
|
|
{
|
|
[Description("5%-10%")]
|
|
[Display(Name = "5%-10%")]
|
|
partone = 1,
|
|
|
|
[Description("10%-50%")]
|
|
[Display(Name = "10%-50%")]
|
|
parttwo = 2,
|
|
|
|
[Description("50%以上")]
|
|
[Display(Name = "10%-50%")]
|
|
partthree = 3
|
|
}
|
|
}
|