28 lines
591 B
C#
28 lines
591 B
C#
using System.ComponentModel;
|
|
using System.ComponentModel.DataAnnotations;
|
|
|
|
namespace YLErp.Model.Enum
|
|
{
|
|
/// <summary>
|
|
/// 投资经验
|
|
/// </summary>
|
|
public enum InvestmentTermEnum
|
|
{
|
|
[Description("0年-1年")]
|
|
[Display(Name = "0年-1年")]
|
|
partone = 1,
|
|
|
|
[Description("1年-5年")]
|
|
[Display(Name = "1年-5年")]
|
|
parttwo = 2,
|
|
|
|
[Description("5年以上")]
|
|
[Display(Name = "5年以上")]
|
|
partthree = 3,
|
|
|
|
[Description("其他")]
|
|
[Display(Name = "其他")]
|
|
partfour = 4
|
|
}
|
|
}
|