24 changed files with 117 additions and 0 deletions
@ -0,0 +1,17 @@ |
|||||
|
using System; |
||||
|
using System.Collections.Generic; |
||||
|
using System.ComponentModel.DataAnnotations; |
||||
|
using System.Linq; |
||||
|
using System.Text; |
||||
|
using System.Threading.Tasks; |
||||
|
|
||||
|
namespace Win_in.Sfs.Shared.Domain.Shared.Enums.Store; |
||||
|
public enum EnumUnplannedIssueType |
||||
|
{ |
||||
|
[Display(Name = "无")] |
||||
|
None =0, |
||||
|
[Display(Name = "原料 非生产领料")] |
||||
|
Raw = 1,//原料 非生产领料
|
||||
|
[Display(Name = "线边 非生产领料")] |
||||
|
Wip =2,//线边 非生产领料
|
||||
|
} |
@ -0,0 +1,17 @@ |
|||||
|
using System; |
||||
|
using System.Collections.Generic; |
||||
|
using System.ComponentModel.DataAnnotations; |
||||
|
using System.Linq; |
||||
|
using System.Text; |
||||
|
using System.Threading.Tasks; |
||||
|
|
||||
|
namespace Win_in.Sfs.Shared.Domain.Shared.Enums.Store; |
||||
|
public enum EnumUnplannedReceiptType |
||||
|
{ |
||||
|
[Display(Name = "无")] |
||||
|
None =0, |
||||
|
[Display(Name = "原料 非生产退料")] |
||||
|
Raw = 1,//原料 非生产退料
|
||||
|
[Display(Name = "线边 非生产退料")] |
||||
|
Wip =2,//线边 非生产退料
|
||||
|
} |
Loading…
Reference in new issue