| | |
| | | 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) |
| | | // 数据权限过滤 |