forked from luyan/epmet-cloud-lingshan
8 changed files with 103 additions and 0 deletions
@ -0,0 +1,30 @@ |
|||
package com.epmet.dto.result; |
|||
|
|||
import lombok.Data; |
|||
|
|||
import java.io.Serializable; |
|||
|
|||
/** |
|||
* @Author zxc |
|||
* @DateTime 2021/8/25 3:50 下午 |
|||
* @DESC |
|||
*/ |
|||
@Data |
|||
public class PatrolYuShanResultDTO implements Serializable { |
|||
|
|||
private static final long serialVersionUID = -54918706294182026L; |
|||
|
|||
private String staffId; |
|||
|
|||
private String gridId; |
|||
|
|||
/** |
|||
* 巡查时长 |
|||
*/ |
|||
private Integer patrolDuration; |
|||
|
|||
/** |
|||
* 巡查次数 |
|||
*/ |
|||
private Integer patrolCount; |
|||
} |
Loading…
Reference in new issue