调整 音频合成
This commit is contained in:
@@ -23,10 +23,10 @@ public class FaceDetectLog implements Serializable {
|
||||
private static final long serialVersionUID = 1L;
|
||||
|
||||
/**
|
||||
* 主键ID
|
||||
* 主键ID(UUID)
|
||||
*/
|
||||
@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;
|
||||
|
||||
/**
|
||||
* 请求时间
|
||||
*/
|
||||
|
||||
Reference in New Issue
Block a user