From 3fe00ae3171ac30deef9ec9c020192fde36e2271 Mon Sep 17 00:00:00 2001
From: zhangzengfei <zhangzengfei@smartai.com>
Date: 星期二, 11 二月 2025 15:15:41 +0800
Subject: [PATCH] 修复托管条件
---
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