1 changed files with 28 additions and 0 deletions
@ -0,0 +1,28 @@ |
|||||
|
using System; |
||||
|
using System.Collections.Generic; |
||||
|
using System.ComponentModel.DataAnnotations; |
||||
|
using System.Linq; |
||||
|
using System.Text; |
||||
|
using System.Threading.Tasks; |
||||
|
using System.Xml.Linq; |
||||
|
|
||||
|
namespace Win_in.Sfs.Shared.Domain.Shared; |
||||
|
public enum EnumBusinessType |
||||
|
{ |
||||
|
/// <summary>
|
||||
|
/// 空枚举
|
||||
|
/// </summary>
|
||||
|
[Display(Name = "空")] None = 0, |
||||
|
/// <summary>
|
||||
|
/// 空枚举
|
||||
|
/// </summary>
|
||||
|
[Display(Name = "注塑")] InjectionMolding = 1, |
||||
|
/// <summary>
|
||||
|
/// 空枚举
|
||||
|
/// </summary>
|
||||
|
[Display(Name = "喷涂")] Spray = 2, |
||||
|
/// <summary>
|
||||
|
/// 空枚举
|
||||
|
/// </summary>
|
||||
|
[Display(Name = "装配")] Assemble = 3, |
||||
|
} |
Loading…
Reference in new issue