forked from rongchao/epmet-cloud-rizhao
10 changed files with 114 additions and 21 deletions
@ -1,4 +1,4 @@ |
|||
package com.epmet.user.form; |
|||
package com.epmet.dto.form; |
|||
|
|||
import lombok.Data; |
|||
|
@ -1,4 +1,4 @@ |
|||
package com.epmet.user.result; |
|||
package com.epmet.dto.result; |
|||
|
|||
import com.epmet.commons.tools.constant.NumConstant; |
|||
import lombok.Data; |
@ -0,0 +1,27 @@ |
|||
package com.epmet.dto.result; |
|||
|
|||
import com.epmet.commons.tools.constant.NumConstant; |
|||
import lombok.Data; |
|||
|
|||
import java.io.Serializable; |
|||
|
|||
/** |
|||
* @Author zxc |
|||
* @DateTime 2021/8/20 9:04 上午 |
|||
* @DESC |
|||
*/ |
|||
@Data |
|||
public class SelectPatrolCountResultDTO implements Serializable { |
|||
|
|||
private static final long serialVersionUID = -4944469520967374496L; |
|||
|
|||
/** |
|||
* 巡查状态 |
|||
*/ |
|||
private String status; |
|||
|
|||
/** |
|||
* 人数 |
|||
*/ |
|||
private Integer staffCount = NumConstant.ZERO; |
|||
} |
Loading…
Reference in new issue