家居大模型联调,分析sop执行分析

This commit is contained in:
ZLI263
2025-11-27 21:36:11 +08:00
parent e533d5128d
commit 9344846772
15 changed files with 520 additions and 29 deletions

View File

@@ -0,0 +1,33 @@
package com.rj.common;
/**
* 录音管理相关常量
*
* @author 系统生成
* @since 2025-01-03
*/
public class AudioManagementConstants {
/**
* 同步状态 - 服务中(默认值)
*/
public static final String SYNC_STATUS_IN_SERVICE = "服务中";
/**
* 同步状态 - 未同步
*/
public static final String SYNC_STATUS_NOT_SYNCED = "未同步";
/**
* 同步状态 - 已同步
*/
public static final String SYNC_STATUS_SYNCED = "已同步";
/**
* 私有构造函数,防止实例化
*/
private AudioManagementConstants() {
throw new UnsupportedOperationException("常量类不能被实例化");
}
}