using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace DevicesService.Commen
{
public class Func
{
///
/// 读取身份证
///
public const int IDCardRead = 1;
///
/// 打印排队票据
///
public const int SendByPrint = 2;
///
/// 文字语音播报
///
public const int payleText = 3;
///
/// 发送短信
///
public const int SendSSM = 4;
///
/// 打开高拍仪并且进行快速扫描文件
///
public const int openCamera = 5;
///
/// 打开签字版数据
///
public const int OpenSign = 6;
///
/// 关闭签字版
///
public const int CloseSign = 7;
///
/// 获取签字版数据
///
public const int GetSignData = 8;
///
/// 根据文件地址在线打印
///
public const int PrintFile = 9;
///
/// 根据文件base64打印
///
public const int PrintBase64 = 10;
///
/// 开始录音、取消录音、结束录音
///
public const int SoundRecording = 11;
///
/// 音频文件播放与暂停
///
public const int Paly = 12;
///
/// 读取指纹
///
public const int Finger = 13;
}
}