1.国网上送代码调整
This commit is contained in:
@@ -0,0 +1,25 @@
|
||||
package com.njcn.event.pojo.param;
|
||||
|
||||
import io.swagger.annotations.ApiModelProperty;
|
||||
import lombok.Data;
|
||||
|
||||
import java.io.Serializable;
|
||||
import java.util.List;
|
||||
|
||||
/**
|
||||
* @author wr
|
||||
* @description
|
||||
* @date 2023/12/22 10:38
|
||||
*/
|
||||
@Data
|
||||
public class EventCountParam implements Serializable {
|
||||
|
||||
@ApiModelProperty(value = "ids")
|
||||
List<String> ids;
|
||||
|
||||
@ApiModelProperty(name="startTime",value="统计起始日期(yyyy-MM-dd)")
|
||||
private String startTime;
|
||||
|
||||
@ApiModelProperty(name="endTime",value="统计截止日期(yyyy-MM-dd)")
|
||||
private String endTime;
|
||||
}
|
||||
Reference in New Issue
Block a user