You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
23 lines
431 B
23 lines
431 B
2 years ago
|
namespace Znyc.Admin.Commons.DataManager
|
||
|
{
|
||
|
/// <summary>
|
||
|
/// 数据库读、写操作枚举
|
||
|
/// </summary>
|
||
|
public enum WriteAndReadEnum
|
||
|
{
|
||
|
/// <summary>
|
||
|
/// 写操作
|
||
|
/// </summary>
|
||
|
Write,
|
||
|
|
||
|
/// <summary>
|
||
|
/// 读操作
|
||
|
/// </summary>
|
||
|
Read,
|
||
|
|
||
|
/// <summary>
|
||
|
/// 默认,不区分读写
|
||
|
/// </summary>
|
||
|
Default
|
||
|
}
|
||
|
}
|