1234567891011121314151617181920212223242526272829303132 |
- 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
- }
- }
|