parent
a2175951b7
commit
6384937986
@ -0,0 +1,26 @@
|
|||||||
|
package com.ruoyi.pt.entity.response;
|
||||||
|
|
||||||
|
import io.swagger.annotations.ApiModel;
|
||||||
|
import io.swagger.annotations.ApiModelProperty;
|
||||||
|
import lombok.Data;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* @author du
|
||||||
|
* @since 2024/9/14 15:02
|
||||||
|
*/
|
||||||
|
@Data
|
||||||
|
@ApiModel("五种事件待审核个数")
|
||||||
|
public class FiveEventCountResponse {
|
||||||
|
|
||||||
|
/**
|
||||||
|
* 事件类型编码
|
||||||
|
*/
|
||||||
|
@ApiModelProperty(value = "事件类型编码")
|
||||||
|
private String msgType;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* 个数
|
||||||
|
*/
|
||||||
|
@ApiModelProperty(value = "个数")
|
||||||
|
private Integer count;
|
||||||
|
}
|
Loading…
Reference in new issue