Browse Source
# Conflicts: # epmet-user/epmet-user-client/src/main/java/com/epmet/feign/EpmetUserOpenFeignClient.java # epmet-user/epmet-user-client/src/main/java/com/epmet/feign/fallback/EpmetUserOpenFeignClientFallback.javadev_shibei_match
11 changed files with 106 additions and 2 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