Files
shanghaigangxiangtuzhuangMES/Infrastructure/Enums/BusinessType.cs

65 lines
948 B
C#
Raw Normal View History

2021-08-23 16:57:25 +08:00
using System;
using System.Collections.Generic;
using System.Text;
namespace Infrastructure.Enums
{
/**
*
* 0=,1=,2=,3=,4=,5=,6=,7=退,8=,9=
* @author zrry
*/
public enum BusinessType
{
/**
*
*/
OTHER = 0,
/**
*
*/
INSERT = 1,
/**
*
*/
UPDATE = 2,
/**
*
*/
DELETE = 3,
/**
*
*/
GRANT = 4,
/**
*
*/
EXPORT = 5,
/**
*
*/
IMPORT = 6,
/**
* 退
*/
FORCE = 7,
/**
*
*/
GENCODE = 8,
/**
*
*/
CLEAN = 9,
}
}