Commit a1053091 authored by 吴春's avatar 吴春

提交代码

parent cf313656
using System;
using System.Collections.Generic;
using System.Text;
using Mall.Common.Plugin;
namespace Mall.Common.Enum.MiAi
{
public enum YearMoneyTypeEnum
{
/// <summary>
/// 10万以下
/// </summary>
[EnumField("10万以下")]
Ten = 1,
/// <summary>
/// 10-20万
/// </summary>
[EnumField("10-20万")]
Twenty = 2,
/// <summary>
/// 30-40万
/// </summary>
[EnumField("30-40万")]
Thirty = 3,
/// <summary>
/// 40-50万
/// </summary>
[EnumField("40-50万")]
Forty = 4,
/// <summary>
/// 50-100万
/// </summary>
[EnumField("50-100万")]
Fifty = 5,
/// <summary>
/// 100万以上
/// </summary>
[EnumField("100万以上")]
OneHundred = 6,
}
}
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment