/**************************************************************** * 作者:liuzl * 版权:PCXBC * 框架版本:6.0 * 创建时间:2023/2/1 10:02:51 * 说明: * *****************************************************************/ namespace YB.DeviceV2.Domain.Shared { /// /// 消息订阅名称定义 /// public class CAPConst { /// /// 事件前缀 /// public const string Prefix = ""; /// /// 添加异常日志 /// public const string CreateExLog = Prefix + "Create:ExLog"; /// /// 添加操作日志 /// public const string CreateOpLog = Prefix + "Create:OpLog"; /// /// 添加访问日志 /// public const string CreateVisLog = Prefix + "Create:VisLog"; /// /// 添加日志 /// public const string InsertLogger = Prefix + "ybdevicev2.service.insertlogger"; /// /// 增加错误日志 /// public const string InsertErrorLogger = Prefix + "ybdevicev2.service.inserterrorlogger"; /// /// 添加通知日志 /// public const string InsertNoticeLogger = Prefix + "ybdevicev2.service.insertnoticelogger"; /// /// 更新粉丝数据 /// public const string UpdateFansData = Prefix + "ybdevicev2.service.updatewxfans"; /// /// 订阅消息发送 /// public const string SendSubscribeMessage = Prefix + "ybdevicev2.service.sendsubscribemessage"; /// /// 更新注册的客户数量 /// public const string UpdateBusinessReport = Prefix + "ybdevicev2.service.updatebusinessrcnt"; /// /// 更新设备激活统计 /// public const string UpdateDevActiveReport = Prefix + "ybdevicev2.service.updatedevactivecnt"; /// /// 更新设备数量 /// public const string UpdateDeviceReport = Prefix + "ybdevicev2.service.updatedevicecnt"; /// /// 更新注册用户数量 /// public const string UpdateRegUserCombind = Prefix + "ybdevicev2.service.updateregusercnt"; /// /// 增加测量记录 /// public const string Measure = Prefix + "ybdevicev2.service.measure"; /// /// 更新身高信息 /// public const string UpdateHeightInfo = Prefix + "ybdevicev2.service.updateheightinfo"; /// /// 增加测量记录,用于蓝牙传输,适用于F01PRO /// public const string MeasureData = Prefix + "ybdevicev2.service.measuredata"; /// /// 删除测量记录 /// public const string DeleteResult = Prefix + "ybdevicev2.service.deleteresult"; /// /// 更新家庭成员测量数据 /// public const string UpdateFamilyDataResult = Prefix + "ybdevicev2.service.updatefamilydataresult"; /// /// 添加消息 /// public const string InsertMessage = Prefix + "ybdevicev2.message.businesstag"; /// /// 消息推送 /// public const string SendThirdMessage = Prefix + "ybdevicev2.service.sendthirdmessage"; /// /// 自动打标签 /// public const string AutoSetTag = Prefix + "ybdevicev2.tag.autoset"; } }