6 changed files with 46 additions and 30 deletions
@ -0,0 +1,36 @@ |
|||||
|
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; |
||||
|
/// <summary>
|
||||
|
/// 位置码类型
|
||||
|
/// </summary>
|
||||
|
public enum EnumPositionCodeType |
||||
|
{ |
||||
|
/// <summary>
|
||||
|
/// 注塑区
|
||||
|
/// </summary>
|
||||
|
[Display(Name = "注塑区")] |
||||
|
InjectionIssue = 1, |
||||
|
|
||||
|
/// <summary>
|
||||
|
/// 喷涂区
|
||||
|
/// </summary>
|
||||
|
[Display(Name = "喷涂区")] |
||||
|
CoatingIssue = 2, |
||||
|
/// <summary>
|
||||
|
/// 装配区
|
||||
|
/// </summary>
|
||||
|
[Display(Name = "装配区")] |
||||
|
AssembleIssue = 3, |
||||
|
/// <summary>
|
||||
|
/// kitting区
|
||||
|
/// </summary>
|
||||
|
[Display(Name = "Kitting区")] |
||||
|
KITTING = 4 |
||||
|
} |
Loading…
Reference in new issue