123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102 |
- using System;
- using System.Collections.Generic;
- using System.ComponentModel;
- using System.Linq;
- using System.Text;
- using System.Threading.Tasks;
- namespace OASystem.Domain.Enums
- {
-
-
-
- public enum GoodsAuditEnum :int
- {
-
-
-
-
- [Description("领用待确认")]
- Pending,
-
-
-
- [Description("已确认领用")]
- Approved,
-
-
-
- [Description("已拒绝领用")]
- UnApproved,
-
-
-
- [Description("出库待确认")]
- OutPending,
-
-
-
- [Description("出库确认中")]
- OutConfirming,
-
-
-
- [Description("已完成出库")]
- OutConfirmed,
-
-
-
- [Description("已拒绝出库")]
- OutRejected,
- }
-
-
-
- public enum GoodsConfirmEnum : int
- {
-
-
-
- [Description("待确认")]
- WaitConfirm,
-
-
-
- [Description("确认中")]
- PartConfirmed,
-
-
-
- [Description("已确认")]
- Confirmed,
-
-
-
- [Description("已拒绝")]
- UnApproved,
- }
-
-
-
- public enum GoodsAuditDepEnum : int
- {
-
-
-
- [Description("人事部")]
- Hr = 1,
-
-
-
- [Description("财务部")]
- Financial
- }
- }
|