From e4fc307d58856a0b319c41f0930cd3b731cb0b24 Mon Sep 17 00:00:00 2001 From: zhangzengfei <zhangzengfei@smartai.com> Date: 星期二, 11 二月 2025 10:19:47 +0800 Subject: [PATCH] 修复规律分析bug --- models/common.go | 12 ++++++++++++ 1 files changed, 12 insertions(+), 0 deletions(-) diff --git a/models/common.go b/models/common.go index 879ea39..3ea65a4 100644 --- a/models/common.go +++ b/models/common.go @@ -1,5 +1,17 @@ package models +type PersonInfo struct { + DocumentNumber string `json:"document_number"` + CommunityId string `json:"community_id"` + OrgId string `json:"org_id"` + PersonName string `json:"person_name"` + IdCard string `json:"id_card"` + FrequentAddress string `json:"frequent_address"` + LastAppearanceTime int64 `json:"last_appearance_time"` + LastDirection string `json:"last_direction"` + LastLocation string `json:"last_location"` +} + func GetDomainFilters(orgIds, areaIds []interface{}) (filters []map[string]interface{}) { filters = make([]map[string]interface{}, 0) // 鏁版嵁鏉冮檺杩囨护 -- Gitblit v1.8.0