forked from rongchao/epmet-cloud-rizhao
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
26 lines
502 B
26 lines
502 B
package com.epmet.dto;
|
|
|
|
import com.epmet.commons.tools.constant.NumConstant;
|
|
import lombok.Data;
|
|
|
|
import java.io.Serializable;
|
|
|
|
/**
|
|
* @Author zxc
|
|
* @DateTime 2022/1/17 3:27 下午
|
|
* @DESC
|
|
*/
|
|
@Data
|
|
public class PersonWarnLeftPieDTO implements Serializable {
|
|
|
|
private static final long serialVersionUID = 337571869959815613L;
|
|
|
|
private Integer count;
|
|
|
|
private String configId;
|
|
|
|
public PersonWarnLeftPieDTO() {
|
|
this.count = NumConstant.ZERO;
|
|
this.configId = "";
|
|
}
|
|
}
|
|
|