feat(dto): 添加位置信息字段支持

- 在 ZTSourceMessage DTO 中新增 posJson 字段
- 更新数据库插入语句以支持 posJson 字段存储
- 调整日志输出内容,突出关键业务标识
- 在数据服务层增加对 posJson 的处理逻辑
This commit is contained in:
2025-09-27 23:09:44 +08:00
parent 9bc34fcfdb
commit f4a16b5b09
4 changed files with 10 additions and 5 deletions

View File

@@ -45,6 +45,9 @@ public class ZTSourceMessage {
@JsonProperty("faceSampleId")
private Long faceSampleId;
@JsonProperty("posJson")
private String posJson;
/**
* 判断是否为视频片段
*/