20 lines
385 B
C#
20 lines
385 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using System.Threading.Tasks;
|
|
|
|
namespace Learun.Application.TwoDevelopment.ZZDT_EC
|
|
{
|
|
public class GlobalEnum
|
|
{
|
|
public enum TagDataStatus
|
|
{
|
|
外部 = 00001,
|
|
待验证 = 00002,
|
|
有效 = 00003,
|
|
导入 = 00004
|
|
}
|
|
}
|
|
}
|