BSP 脚本调整-1
parent
7361dfca50
commit
f82b161f78
@ -0,0 +1,24 @@
|
||||
package cn.estsh.i3plus.pojo.bsp.server.bean.vo;
|
||||
|
||||
import io.swagger.annotations.ApiModel;
|
||||
import io.swagger.annotations.ApiModelProperty;
|
||||
import lombok.Data;
|
||||
|
||||
/**
|
||||
* @Description :
|
||||
* @Reference :
|
||||
* @Author : Castle
|
||||
* @CreateDate : 2022/2/7 14:21
|
||||
* @Modify:
|
||||
**/
|
||||
@Data
|
||||
@ApiModel(value = "按应用类型统计调用次数")
|
||||
public class AppSummaryVo {
|
||||
|
||||
@ApiModelProperty(value = "开始时间")
|
||||
private String startDate;
|
||||
|
||||
@ApiModelProperty(value = "结束时间")
|
||||
private String endDate;
|
||||
|
||||
}
|
Loading…
Reference in New Issue