调整 音频合成

This commit is contained in:
spllzh
2025-10-06 12:17:34 +08:00
parent 725a5294d0
commit 20378e8115
43 changed files with 508 additions and 60 deletions

View File

@@ -23,10 +23,10 @@ public class FaceDetectLog implements Serializable {
private static final long serialVersionUID = 1L;
/**
* 主键ID
* 主键IDUUID
*/
@TableId(value = "id", type = IdType.AUTO)
private Long id;
@TableId(value = "id", type = IdType.ASSIGN_UUID)
private String id;
/**
* 请求ID
@@ -46,6 +46,24 @@ public class FaceDetectLog implements Serializable {
@TableField("image_url")
private String imageUrl;
/**
* 所属人姓名
*/
@TableField("owner_name")
private String ownerName;
/**
* 所属人电话
*/
@TableField("owner_phone")
private String ownerPhone;
/**
* 头像名称
*/
@TableField("avatar_name")
private String avatarName;
/**
* 请求时间
*/

View File

@@ -108,6 +108,12 @@ public class TtsRequestLog {
@TableField("minio_url")
private String minioUrl;
/**
* 音频文件名
*/
@TableField("audio_name")
private String audioName;
/**
* 短链临时访问URL
*/

View File

@@ -38,6 +38,10 @@ public class User implements Serializable {
@TableField("email")
private String email;
@Schema(description = "用户电话")
@TableField("phone")
private String phone;
@Schema(description = "密码")
@TableField("password")
private String password;

View File

@@ -6,11 +6,13 @@ CREATE TABLE `user` (
`user_id` int(11) NOT NULL AUTO_INCREMENT COMMENT '用户编号',
`user_name` varchar(255) DEFAULT NULL COMMENT '用户名称',
`email` varchar(255) DEFAULT NULL COMMENT '邮箱',
`phone` varchar(20) DEFAULT NULL COMMENT '用户电话',
`password` varchar(255) DEFAULT NULL COMMENT '密码',
`original_password` varchar(255) DEFAULT NULL COMMENT '原始密码',
`token` varchar(255) DEFAULT NULL COMMENT 'token令牌',
`avatar` varchar(255) DEFAULT NULL COMMENT '头像',
PRIMARY KEY (`user_id`)
PRIMARY KEY (`user_id`),
KEY `idx_phone` (`phone`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COMMENT='用户表';
-- 2. 角色表 (role)