1.新增典型源荷指标月统计算法
2.增加国网上送月统计定时任务
This commit is contained in:
@@ -40,5 +40,9 @@ public class SendQueryParam extends BaseParam {
|
||||
@NotNull(message="显示条数不能为空!")
|
||||
@ApiModelProperty(value = "显示条数",name = "pageSize",dataType ="Integer",required = true)
|
||||
private Integer pageSize;
|
||||
|
||||
@ApiModelProperty("时间维度")
|
||||
@NotBlank(message = "时间维度不可为空")
|
||||
private String dataType;
|
||||
}
|
||||
}
|
||||
|
||||
@@ -19,18 +19,24 @@ import java.math.BigDecimal;
|
||||
@Data
|
||||
@TableName(value = "pq_typical_source_create")
|
||||
public class PqTypicalSourceCreatePO {
|
||||
|
||||
private static final long serialVersionUID = 1L;
|
||||
|
||||
@TableId(value = "id", type = IdType.INPUT)
|
||||
private String id;
|
||||
|
||||
//统计日期
|
||||
@TableField(value = "statisticalDate")
|
||||
private String statisticalDate;
|
||||
|
||||
//统计层级
|
||||
@TableField(value = "statisticalLevel")
|
||||
private String statisticalLevel;
|
||||
|
||||
//统计类型 01年 02月 03日
|
||||
@TableField(value = "statisticalType")
|
||||
private String statisticalType;
|
||||
|
||||
//典型源荷用户
|
||||
@TableField(value = "indexType")
|
||||
private String indexType;
|
||||
|
||||
|
||||
Reference in New Issue
Block a user