mahao
1 year ago
6 changed files with 53 additions and 5 deletions
@ -0,0 +1,20 @@ |
|||
using System.ComponentModel.DataAnnotations; |
|||
|
|||
namespace Win.Sfs.SettleAccount.Enums; |
|||
|
|||
/// <summary>
|
|||
/// 匹配类型
|
|||
/// </summary>
|
|||
public enum EnumMappingType |
|||
{ |
|||
/// <summary>
|
|||
/// 未定义
|
|||
/// </summary>
|
|||
[Display(Name = "未定义")] |
|||
None = 0, |
|||
/// <summary>
|
|||
/// 完全匹配
|
|||
/// </summary>
|
|||
[Display(Name = "完全匹配")] |
|||
PerfectMatch = 1 |
|||
} |
Loading…
Reference in new issue