You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
60 lines
586 B
60 lines
586 B
<?php
|
|
|
|
/**
|
|
* data
|
|
* @author auto create
|
|
*/
|
|
class Data
|
|
{
|
|
|
|
/**
|
|
* 头像url
|
|
**/
|
|
public $avatar;
|
|
|
|
/**
|
|
* 签到详细地址
|
|
**/
|
|
public $detail_place;
|
|
|
|
/**
|
|
* 签到照片url列表
|
|
**/
|
|
public $image_list;
|
|
|
|
/**
|
|
* 纬度
|
|
**/
|
|
public $latitude;
|
|
|
|
/**
|
|
* 经度
|
|
**/
|
|
public $longitude;
|
|
|
|
/**
|
|
* 成员名称
|
|
**/
|
|
public $name;
|
|
|
|
/**
|
|
* 签到地址
|
|
**/
|
|
public $place;
|
|
|
|
/**
|
|
* 签到备注
|
|
**/
|
|
public $remark;
|
|
|
|
/**
|
|
* 签到时间
|
|
**/
|
|
public $timestamp;
|
|
|
|
/**
|
|
* 员工唯一标识ID(不可修改)
|
|
**/
|
|
public $user_id;
|
|
}
|
|
?>
|