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.
34 lines
763 B
34 lines
763 B
3 years ago
|
namespace EC.Utils.ZMQ
|
||
|
{
|
||
|
public class DBMethod
|
||
|
{
|
||
|
public const string Success = "success";
|
||
|
public const string Error = "error";
|
||
|
public const string Net_Error = "neterror";
|
||
|
|
||
|
/// <summary>
|
||
|
/// 获取录像机和 相机列表
|
||
|
/// </summary>
|
||
|
public const string GetGroupAndCameraList = "getgroupandcameralist";
|
||
|
|
||
|
/// <summary>
|
||
|
/// 获取相机列表
|
||
|
/// </summary>
|
||
|
public const string GetCameraList = "getcameralist";
|
||
|
|
||
|
/// <summary>
|
||
|
/// 获取单个相机
|
||
|
/// </summary>
|
||
|
public const string GetCamera = "getcamera";
|
||
|
|
||
|
/// <summary>
|
||
|
/// 保存画图
|
||
|
/// </summary>
|
||
|
public const string SaveDrawShape = "savedrawshape";
|
||
|
|
||
|
/// <summary>
|
||
|
/// 获取画图
|
||
|
/// </summary>
|
||
|
public const string GetDrawShape = "getdrawshape";
|
||
|
}
|
||
|
}
|