5 changed files with 146 additions and 1 deletions
@ -0,0 +1,94 @@ |
|||||
|
package com.epmet.user.result; |
||||
|
|
||||
|
import com.epmet.commons.tools.constant.NumConstant; |
||||
|
import com.fasterxml.jackson.annotation.JsonIgnore; |
||||
|
import lombok.Data; |
||||
|
|
||||
|
import java.io.Serializable; |
||||
|
|
||||
|
/** |
||||
|
* @Author zxc |
||||
|
* @DateTime 2021/6/7 2:57 下午 |
||||
|
* @DESC |
||||
|
*/ |
||||
|
@Data |
||||
|
public class GridManagerListYuShanResultDTO implements Serializable { |
||||
|
|
||||
|
private static final long serialVersionUID = -2770911125810373090L; |
||||
|
|
||||
|
/** |
||||
|
* 工作人员id |
||||
|
*/ |
||||
|
private String staffId; |
||||
|
|
||||
|
/** |
||||
|
* 工作人员手机号 |
||||
|
*/ |
||||
|
private String mobile; |
||||
|
|
||||
|
/** |
||||
|
* 经度 |
||||
|
*/ |
||||
|
private String longitude; |
||||
|
|
||||
|
/** |
||||
|
* 纬度 |
||||
|
*/ |
||||
|
private String latitude; |
||||
|
|
||||
|
/** |
||||
|
* 网格ID |
||||
|
*/ |
||||
|
private String gridId; |
||||
|
|
||||
|
/** |
||||
|
* 正在巡查:patrolling;否则返回空字符串 |
||||
|
*/ |
||||
|
private String status; |
||||
|
|
||||
|
/** |
||||
|
* 网格名称,最多显示上两级 |
||||
|
*/ |
||||
|
private String gridName; |
||||
|
|
||||
|
/** |
||||
|
* 姓名 |
||||
|
*/ |
||||
|
private String staffName; |
||||
|
|
||||
|
/** |
||||
|
* 巡查时长 |
||||
|
*/ |
||||
|
private Integer patrolDuration; |
||||
|
|
||||
|
/** |
||||
|
* 巡查次数 |
||||
|
*/ |
||||
|
private Integer patrolCount; |
||||
|
|
||||
|
/** |
||||
|
* 中心点位 |
||||
|
*/ |
||||
|
@JsonIgnore |
||||
|
private String centerMark; |
||||
|
|
||||
|
/** |
||||
|
* 经纬度赋值状态 |
||||
|
*/ |
||||
|
@JsonIgnore |
||||
|
private Boolean llStatus; |
||||
|
|
||||
|
public GridManagerListYuShanResultDTO() { |
||||
|
this.staffId = ""; |
||||
|
this.longitude = ""; |
||||
|
this.latitude = ""; |
||||
|
this.gridId = ""; |
||||
|
this.status = ""; |
||||
|
this.gridName = ""; |
||||
|
this.staffName = ""; |
||||
|
this.centerMark = ""; |
||||
|
this.llStatus = false; |
||||
|
this.patrolDuration = NumConstant.ZERO; |
||||
|
this.patrolCount = NumConstant.ZERO; |
||||
|
} |
||||
|
} |
Loading…
Reference in new issue