2 changed files with 34 additions and 18 deletions
@ -0,0 +1,31 @@ |
|||||
|
package com.elink.esua.epdc.dto.police.result; |
||||
|
|
||||
|
import lombok.Data; |
||||
|
|
||||
|
import java.io.Serializable; |
||||
|
|
||||
|
@Data |
||||
|
public class PoliceInfoResultDTO implements Serializable { |
||||
|
|
||||
|
private static final long serialVersionUID = -4978924751646345443L; |
||||
|
|
||||
|
/** |
||||
|
* 民警头像地址 |
||||
|
*/ |
||||
|
private String policeAvatar; |
||||
|
|
||||
|
/** |
||||
|
* 民警id |
||||
|
*/ |
||||
|
private String policeId; |
||||
|
|
||||
|
/** |
||||
|
* 民警名称 |
||||
|
*/ |
||||
|
private String policeName; |
||||
|
|
||||
|
/** |
||||
|
* 民警电话 |
||||
|
*/ |
||||
|
private String policeTel; |
||||
|
} |
Loading…
Reference in new issue