irc-netcore-api/IRaCIS.Core.Domain.Share/QC/CheckStateEnum.cs

22 lines
283 B
C#
Raw Blame History

This file contains ambiguous Unicode characters!

This file contains ambiguous Unicode characters that may be confused with others in your current locale. If your use case is intentional and legitimate, you can safely ignore this warning. Use the Escape button to highlight these characters.

namespace IRaCIS.Core.Domain.Share
{
public enum CheckStateEnum
{
//不可用
None = 0,
//待核查
ToCheck = 9,
//核查中
CVIng = 10,
// 通过CV等待转发 核查通过
CVPassed = 11,
}
}