zs
2025-05-07 58497c4d028c306e98249ccdff2bf86dd3b4ee87
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
using System;
using System.Collections.Generic;
using System.ComponentModel;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
 
namespace CMS.Plugin.HIAWms.Domain.Shared.Enums
{
    /// <summary>
    /// 库存物料的检验状态
    /// </summary>
    [Description("库存物料的检验状态")]
    public enum MaterialCheckStatusEnum
    {
        /// <summary>
        /// 未检验
        /// </summary>
        [Description("未检验")]
        WEIJIANYAN = 1,
 
        /// <summary>
        /// 合格
        /// </summary>
        [Description("合格")]
        HEGE = 2,
 
        /// <summary>
        /// 不合格
        /// </summary>
        [Description("不合格")]
        BUHEGE = 3,
 
    }
}