22 lines
301 B
C#
22 lines
301 B
C#
|
|
using System;
|
|||
|
|
using System.Collections.Generic;
|
|||
|
|
using System.Text;
|
|||
|
|
|
|||
|
|
namespace APT.Infrastructure.Utility
|
|||
|
|
{
|
|||
|
|
public enum RedisHanddle
|
|||
|
|
{
|
|||
|
|
Query,
|
|||
|
|
Add,
|
|||
|
|
Update,
|
|||
|
|
Delete
|
|||
|
|
}
|
|||
|
|
public enum RedisTypeEnum
|
|||
|
|
{
|
|||
|
|
String,
|
|||
|
|
SortSet,
|
|||
|
|
Set,
|
|||
|
|
}
|
|||
|
|
|
|||
|
|
}
|