Documentation ¶
Index ¶
Constants ¶
This section is empty.
Variables ¶
This section is empty.
Functions ¶
Types ¶
type ArgsCreate ¶
type ArgsCreate struct { //所属用户 UserID int64 `db:"user_id" json:"userID" check:"id"` //所属国家 国家代码 // eg: china => 86 Country int `db:"country" json:"country" check:"country"` //所属城市 City int `db:"city" json:"city" check:"city"` //地图制式 // 0 / 1 / 2 // WGS-84 / GCJ-02 / BD-09 MapType int `db:"map_type" json:"mapType"` //坐标位置 Longitude float64 `db:"longitude" json:"longitude"` Latitude float64 `db:"latitude" json:"latitude"` }
ArgsCreate 添加新的定位参数
type ArgsDeleteByUser ¶
type ArgsDeleteByUser struct { //用户ID UserID int64 `db:"user_id" json:"userID" check:"id"` }
ArgsDeleteByUser 删除指定用户的所有定位参数
type ArgsGetLast ¶
type ArgsGetLast struct { //用户ID UserID int64 `db:"user_id" json:"userID" check:"id"` }
ArgsGetLast 获取最新的定位参数
type ArgsGetLastByTime ¶
type ArgsGetLastByTime struct { //用户ID UserID int64 `db:"user_id" json:"userID" check:"id"` //时间 TimeAt time.Time `db:"time_at" json:"timeAt" check:"isoTime"` }
ArgsGetLastByTime 获取指定时间之前最新的数据参数
type ArgsGetList ¶
type ArgsGetList struct { //分页 Pages CoreSQLPages.ArgsDataList `json:"pages"` //所属用户 UserID int64 `db:"user_id" json:"userID" check:"id" empty:"true"` //所属国家 国家代码 // eg: china => 86 Country int `db:"country" json:"country" check:"country" empty:"true"` //所属城市 City int `db:"city" json:"city" check:"city" empty:"true"` //地图制式 // 0 / 1 / 2 // WGS-84 / GCJ-02 / BD-09 MapType int `db:"map_type" json:"mapType"` }
ArgsGetList 获取定位追踪列表参数
type ArgsGetMore ¶
type ArgsGetMore struct { //用户IDs UserIDs pq.Int64Array `db:"user_ids" json:"userIDs" check:"ids"` }
ArgsGetMore 获取多人的最新订单参数
type FieldsGPS ¶
type FieldsGPS struct { //ID ID int64 `db:"id" json:"id"` //创建时间 CreateAt time.Time `db:"create_at" json:"createAt"` //所属用户 UserID int64 `db:"user_id" json:"userID"` //所属国家 国家代码 // eg: china => 86 Country int `db:"country" json:"country"` //所属城市 City int `db:"city" json:"city"` //地图制式 // 0 / 1 / 2 // WGS-84 / GCJ-02 / BD-09 MapType int `db:"map_type" json:"mapType"` //坐标位置 Longitude float64 `db:"longitude" json:"longitude"` Latitude float64 `db:"latitude" json:"latitude"` }
FieldsGPS GPS表
func GetLastByTime ¶
func GetLastByTime(args *ArgsGetLastByTime) (data FieldsGPS, err error)
GetLastByTime 获取指定时间之前最新的数据
Click to show internal directories.
Click to hide internal directories.